What Monte-Carlo Does
Many trials, one spread
Northwind Trading cannot name one exact cost for a build, only a range. It runs many random trials drawn from a triangular distribution with an optimistic $800,000, a most-likely $1,000,000, and a pessimistic $1,500,000. The simulated spread clusters around the mean of (800,000 + 1,000,000 + 1,500,000)/3 = $1,100,000, showing both the average and how wide the outcomes can run.
From a single guess to a spread
Point estimates hide uncertainty. A Monte-Carlo simulation replaces a single guess with a distribution of possible values, then draws many random trials from it. Plotting the outcomes shows the full spread -- how wide the results can run -- and where the average lands. A common shape is the triangular distribution, defined by three points: an optimistic minimum, a most-likely mode, and a pessimistic maximum.
Reading the formula
The triangular distribution has a clean theoretical mean: add the three points and divide by three. For Northwind's build, min = $800,000, mode = $1,000,000, max = $1,500,000, so mean = (800,000 + 1,000,000 + 1,500,000) / 3 = 3,300,000 / 3 = $1,100,000. Run enough random trials and their average settles around $1,100,000, while the spread shows outcomes clustering near the mode with a longer tail toward the high end.
Monte-Carlo shows a range of outcomes around an average. It does not forecast a specific result or any real-world value. Here the inputs are illustrative teaching values; the lesson is the method -- how a distribution becomes a spread you can reason about.
- 1. mean = (min + mode + max) / 3.
- 2. = (800,000 + 1,000,000 + 1,500,000) / 3 = 3,300,000 / 3.
- 3. = $1,100,000.
💡 Hint
- 1. mean = (600,000 + 900,000 + 1,200,000) / 3.
- 2. = 2,700,000 / 3 = $900,000.
Check your understanding
- Monte-Carlo runs many random trials from a distribution to show the spread of outcomes.
- For a triangular distribution the mean is (min + mode + max) / 3.
- The spread shows how wide outcomes run around the average.