Paper Explained
Just Roll the Dice: Boyle Brings Monte Carlo to Option Pricing
Boyle's insight was almost embarrassingly simple: if an option's price is an average over possible futures, simulate a lot of futures and take the average.
July 13, 2026
Some of the best ideas in quantitative finance are the ones that make you feel slightly foolish for not having thought of them. Phelim Boyle's 1977 paper is the outstanding example.
By 1977 the field had a formula for the simplest kind of option and a growing suspicion that closed-form solutions were going to run out fast. What happens when the option depends on the path the stock takes, not just where it ends up? What if it depends on several stocks at once? What if the stock's volatility changes over time? For each new wrinkle, someone had to find and solve a new differential equation, and for most wrinkles nobody could.
Boyle's response was to ignore the equations entirely and just simulate the future, thousands of times, and average the results.
The problem: the equations run out before the products do
Cox and Ross had shown that an option's price is an expected payoff computed in a risk-neutral world. An expectation is an average. That means the answer to any option pricing question is, in principle, "the average of what this thing pays across all possible futures, discounted."
The trouble is computing that average. If the payoff is simple and the stock's motion is simple, you can do the integral by hand and get Black-Scholes. Make the payoff depend on the average price over the option's life, or on whether the stock ever touched a barrier, or on the maximum of three correlated stocks, and the integral becomes something no human is going to solve on paper. Binomial trees help, but they become unusable when several assets are involved, because the number of nodes explodes.
Meanwhile, physicists had been solving exactly this class of problem, high-dimensional integrals with no analytic solution, for thirty years, using a technique developed at Los Alamos: Monte Carlo simulation. Boyle's contribution was to notice the connection and do it properly for finance.
The key idea via analogy: measuring a lake with a raincloud
Suppose you want to know the area of an oddly shaped lake. You could try to describe its boundary with an equation and integrate. Good luck. Or you could draw a rectangle around the lake, scatter ten thousand raindrops randomly and uniformly inside the rectangle, and count what fraction land in the water. Multiply that fraction by the rectangle's area. You now have the lake's area, to a precision that improves as you scatter more drops. You never needed to know anything about the lake's shape.
Option pricing works the same way. You want an average over all possible futures. So:
- Simulate one future. Using the risk-neutral version of your model, generate a random path for the stock from today to expiry, one random draw at a time.
- Compute what the option pays on that path. This is trivial, no matter how baroque the payoff is. You have the whole path in front of you. Did it touch the barrier? Look. What was the average price? Add it up.
- Do that a hundred thousand times.
- Average the payoffs and discount at the risk-free rate. That is the price.
The beauty is in step 2. The complexity of the payoff has become irrelevant. Whether the option is a plain call or a monstrous path-dependent structured note with five underlyings and a knock-out clause, the work in step 2 is the same: read the simulated path and calculate the payout. Monte Carlo is indifferent to how complicated your contract is.
The variance problem, and Boyle's answer
There is a catch, and Boyle was careful to deal with it. Random sampling is noisy. Your estimate of the price is itself a random number, and its error shrinks only in proportion to the square root of the number of simulations. To halve your error you need four times as many paths. To get one more decimal place you need a hundred times as many. That is brutal.
So the paper is not just "simulate it." A large part of Boyle's contribution is a set of techniques for making the noise smaller without brute force, what are now called variance reduction methods:
- Antithetic variates. For every random path you generate, also generate its mirror image, the path you would get by flipping the sign of every random shock. Pairing a path with its opposite cancels a lot of the sampling noise, because when one is unluckily high the other tends to be unluckily low.
- Control variates. Suppose you are pricing a complicated option and there is a similar, simpler option whose exact price you already know from a formula. Simulate both on the same random paths. Look at how much your simulation's estimate of the simple option's price is off by, and apply the same correction to your estimate of the complicated one. You are using a known answer to calibrate the error in an unknown one. This is often astonishingly effective.
These are not footnotes. In practice they are what makes Monte Carlo viable, and they came in the original paper.
Why it mattered
- It decoupled complexity from tractability. Before Boyle, a new derivative product could only be priced if someone could solve its equation. After Boyle, any product that can be described can be priced. This is a large part of why the exotic derivatives industry could exist at all: the payoff engineers were freed from the constraints of the mathematicians.
- It scales to many assets, where trees do not. A binomial tree on ten correlated assets is hopeless. A Monte Carlo on ten assets is barely harder than on one. Monte Carlo's error rate does not care about the number of dimensions, which is its single greatest advantage and the reason it dominates in portfolio-level risk calculations.
- It became the backbone of risk management. Value at Risk, expected shortfall, counterparty exposure, stress testing, regulatory capital: essentially all of it is Monte Carlo. The entire industrial risk apparatus of modern banking is a descendant of this paper.
- It is honest about what it does not know. A simulation gives you not just a price but a standard error, an explicit statement of how uncertain that price is. Closed-form formulas give you a number with false confidence. There is something quietly virtuous about a method that reports its own error bar.
The honest limitations
- It is slow, and the slowness is fundamental. The square-root error rate is not a bug you can engineer away, it is a law. High-precision Monte Carlo prices are expensive to compute, which matters when a desk needs to reprice a book of a hundred thousand trades in real time.
- Greeks are awkward. A trader needs not just the price but its sensitivities: delta, gamma, vega. Getting those from a simulation means either bumping an input and re-running (noisy, and the noise can swamp the signal, especially for gamma) or using cleverer techniques that were developed much later. This is a real practical pain.
- Early exercise is genuinely hard. Plain Monte Carlo runs forwards in time. American options require you to reason backwards, deciding at each moment whether to exercise. Those two directions fight each other. Boyle's method could not price American options, and it took more than two decades before Broadie-Glasserman and then Longstaff-Schwartz cracked the problem.
- Garbage in, garbage out, at scale. Monte Carlo will faithfully simulate whatever model you give it. It offers no protection against the model being wrong, and the confident-looking narrowness of the standard error can create a dangerous illusion of accuracy. Your price is precise; it may still be nowhere near right.
- Random number quality matters more than people expect. Poor pseudo-random generators introduce subtle correlations that quietly bias results, an issue that has caused real problems in practice.
The one-line takeaway
Boyle pointed out that since an option's price is just an average payoff across possible futures, you can price almost anything by simulating enough futures and averaging, an idea so general that it freed derivatives from the tyranny of closed-form solutions and now underpins essentially every risk system in finance, at the price of being slow, noisy and awkward about early exercise.