πŸ”– Background Information

Diffusion is the process by which particles move from a region of high concentration to a region of low concentration. The evolution of a diffusing system can be complicated to study, but one way to model it simply is by using a β€œrandom walk”.

In a one-dimensional random walk, a particle starts at some initial position. From this position, it has a 50% chance of taking one step to the right or a 50% chance of taking one step to the left. This process repeats over and over again for some number of steps until the particle reaches some final position. You might think that the particle will just end up right back where it started, but it turns out that the particle has a large probability of ending up away from its starting point.

In this lab, we are going to simulate a one-dimensional random walk for a single particle and analyze the algorithm.

🎯 Problem Statement

Your goal is to simulate a one-dimensional random walk for a particle using either C++ or Java. You can use any techniques or language features available to you for this simulation. Here is a short rundown of how you can make this work:

  1. Determine the number of steps () you want your particle to take. I would recommend starting with and then increasing it from there.
  2. Determine the number of trials () you want want to repeat for each value of . I would recommend starting with and then increasing it from there.
  3. Start a particle at position zero. This might be as simple as creating a variable called int currentPosition = 0.
  4. Flip a coin (i.e. generate one of two random numbers with a 50-50 chance). If the coin comes up heads, the particle moves one space to the right (i.e. currentPosition++). If the coin comes up tails, the particle moves one space to the left (i.e. currentPosition--).
  5. Repeat the process of flipping the coin and updating the position times.
  6. Record , , and the final position of the particle (). This is one data point for one trial.
  7. Clear your simulation and start it over at position zero. Repeat this entire process for trials and a few different values of .

βœ… Acceptance Criteria

  • Simulate random walk data using the algorithm described in the Problem Statement. It is up to you how you want to store and display the final values.
  • At a minimum run your simulation with five different values for and . Feel free to try out more values for or a greater number of trials if you are curious!
  • Use the data to answer the Thought-Provoking Questions.

πŸ“‹ Dev Notes

  • You can use whatever language features you want to write this simulation (i.e. classes, functions, etc).
  • Automate everything! You don’t need to manually update and record values for and . Instead, set up the simulation to run all of your trials () for all of your step numbers (). Might I suggest some nested for loops?
  • Don’t worry about trying to optimize the algorithm just yet. We are just going to analyze how well it performed.

πŸ–₯️ Example Output

As you run your simulation, your data might look something like this.

Number of Steps (N)Trial Number (M)Final Position (D)
1011
1023
103-2
1046
100115
1002-6
100328
10042

And so on…

πŸ“ Thought Provoking Questions

  1. Create a nice plot of your results and attach it to your discussion post (Excel or some other graphing software is totally fine). You get to decide the best way to represent your data. Be sure to label your axes and give your plot a title!
  2. As you increase the value of , did the distance tend to go up, go down, or stay the same? You don’t need to explain why - this is not a physics class 😊
  3. What parameters / variables affect the runtime of the simulation?
  4. How big can you make and before your simulation starts taking longer than 10 seconds to run?
  5. How did you choose to store your output? Why did you pick this method?
  6. How might the performance of your simulation change if you had to simulate three dimensions instead of one?

πŸ’Ό Add-Ons For the Portfolio

N/A

πŸ“˜ Works Cited

N/A