Dice Roll Histogram¶
Run the Dice Roll Histogram MicroSim Fullscreen
About This MicroSim¶
A single random.randint(1, 6) call looks like pure chaos; the pattern only
emerges over many trials. This experiment runner lets students roll in
batches of 1, 100, or 1000 and watch the histogram settle toward a flat,
uniform skyline. Switching to the sum of two dice produces the genuinely
surprising triangle peaked at 7 — the moment students discover that
randomness has a shape.
Learning objective: The student will be able to analyze how the distribution of random rolls flattens as the number of trials grows, and contrast one die with the sum of two dice.
- Bloom's Taxonomy (2001): Analyze — organize, compare, attribute
- Interaction pattern: experiment runner with student-triggered batches
- Library: Chart.js (bar chart with live updates and percentage tooltips)
How to Use¶
- Predict: after 1000 rolls, will the six bars be even or uneven?
- Click Roll 1 several times (chaos), then Roll 100 (a rough skyline), then Roll 1000 (nearly flat). Hover any bar for its percentage.
- Switch to Sum of two dice, roll 1000, and explain the mountain: why are there more ways to make 7 than 2?
- Reset and repeat — the exact bars differ every time, but the shape comes back.
Iframe Embed Code¶
You can add this MicroSim to any web page by adding this to your HTML:
1 2 3 4 | |
Lesson Plan¶
Grade Level¶
Upper elementary and middle school (ages 10-14), Chapter 17 (Modules and Random Numbers)
Duration¶
10-15 minutes
Prerequisites¶
- random.randint() (Chapter 17)
Activities¶
- Predict and roll (4 min): Students vote on whether the 1000-roll histogram will be even. Roll and discuss the small wobbles.
- Two-dice mystery (6 min): Switch modes, roll 1000, and challenge students to list all the ways to roll 7 (six ways) versus 2 (one way).
- Percent check (3 min): Hover the bars — each face should sit near 16.7%. Why that number? (1 out of 6.)
Assessment¶
- Student can explain why more rolls make the one-die bars more even
- Student can explain why 7 is the most common two-dice sum
- Student can state the expected percentage for each face of one die
References¶
- Python Documentation — random module — official documentation
- Chart.js Documentation — the charting library used