You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to propose a stochastic simulation tutorial that teaches using random variables generated from NumPy to simulate various situations and solve problems. The general outline for this tutorial is below.
Primer on generating random variables in NumPy
Birthday problem (https://en.wikipedia.org/wiki/Birthday_problem) – determine the probability of two students in an elementary class of 20 having the same birthday by repeatedly generating random collections of 20 birthdays and seeing how often there is a match
These sound like great topics to me, though I suspect this is enough material to be split into multiple notebooks!
One important thing to keep in mind is how best to highlight the numpy-specific features within the problem, for example tutorial material should use the random.Generator interface. Aside from that, a hearty 👍 for these topic proposals!
Added tutorial-stochastic-simulation.ipynb file which demonstrates using random numbers to perform stochastic simulations of various processes. This tutorial was proposed in issue numpy#184.
weisscharlesj
added a commit
to weisscharlesj/numpy-tutorials
that referenced
this issue
Jun 24, 2023
Added tutorial-stochastic-simulation.ipynb file which contains a tutorial demonstrating using NumPy random number generators to stochastically simulate a variety of processes. This tutorial was proposed in issue numpy#184.
I would like to propose a stochastic simulation tutorial that teaches using random variables generated from NumPy to simulate various situations and solve problems. The general outline for this tutorial is below.
The text was updated successfully, but these errors were encountered: