A comprehensive guide on using multi-period binomial trees to value American-style options, focusing on early exercise decisions and practical applications.
Have you ever wondered how to handle an option that you can exercise at any point up until expiration? That’s precisely the challenge with American-style options. While European-style options permit exercise only at expiration, American-style options add a little twist (and a bit of complexity) because early exercise might be optimal under certain circumstances. If you’ve ever thought, “Well, how do we account for that added flexibility?” you’re in the right place.
Let’s start by recalling that earlier in this chapter, you learned how to price options using a simple one-period binomial model (refer back to Section 10.3 for a refresher). The multi-period binomial approach just extends that idea over multiple steps. But with American-style options, we have to incorporate the possibility of early exercise at each node in that tree. In other words, at each step, we check whether the intrinsic value of immediately exercising actually beats the “hold and continue” value. That’s the gist of it, but let’s dig in deeper.
• European-Style: Exercise allowed only at maturity.
• American-Style: Exercise allowed any time up to (and including) the expiration date.
For American options, you can exercise when it’s profitable to do so, perhaps if there’s a large dividend that’s about to be paid on the underlying security and you hold a call, or if you have a put and the underlying’s price takes a steep nosedive earlier than your expiration date. The presence of that early exercise right creates an “early exercise premium,” which is extra value beyond what a purely European option might have under the same parameters.
You can think of a multi-period binomial tree as an iterative extension of the single up/down step approach from the one-period binomial model. Over multiple steps:
By the final step, we arrive at a tree of possible asset prices as well as a corresponding tree of option payoffs. Then, we use backward induction to discount these payoffs and check for early exercise possibilities.
Let’s get a little more practical. Suppose you want to model a three-period binomial tree, each period being, say, one month long (so total life is three months). You’ll specify:
• The current price of the underlying (S₀).
• The up factor (u) and down factor (d).
• The risk-free rate (r) for each period.
• Possibly a dividend yield (q) if the underlying is a dividend-paying stock.
Imagine the stock is at $100 today. For each one-month step:
So, if the stock goes up during the first period, at the next node it’s at $105. If it goes down, it’s at $95. Then from $105, it can go up to $110.25 or down to $99.75, and so on.
Let’s illustrate a two-period version of this tree for simplicity. A three-period tree is similar—just one more step.
Below is a sample Mermaid diagram showing a two-period binomial price tree for the underlying:
graph LR A["S₀ = 100"] --> B["S₀u = 105"] A["S₀ = 100"] --> C["S₀d = 95"] B["S₀u = 105"] --> D["S₀uu = 110.25"] B["S₀u = 105"] --> E["S₀ud = 99.75"] C["S₀d = 95"] --> F["S₀du = 99.75"] C["S₀d = 95"] --> G["S₀dd = 90.25"]
Notice how the middle nodes E and F both end up at the same price 99.75. That’s the “recombining” part.
Within each step, we typically assume risk-neutral probabilities because that approach (developed by Cox, Ross, and Rubinstein in their 1979 paper) simplifies pricing. The idea is that, under the risk-neutral measure, the expected growth rate of the asset is the risk-free rate.
If we let Δt be the length of each period, the risk-neutral probability p is usually:
where:
If you’re ignoring dividends, you’d just set \( q = 0 \). Then, the expected (risk-neutral) value of the option at each node is:
where \( V_\text{up} \) is the option payoff in the up state at the next step, and \( V_\text{down} \) is the payoff in the down state.
Here’s the fundamental difference for an American-style option: After you compute that “hold” value from the risk-neutral approach, you must compare it to the immediate exercise payoff (a.k.a. intrinsic value). The node’s final value is:
For a call, the intrinsic value at any point is \(\max(S - K, 0)\), where S is the underlying price at that node, and K is the strike price. For a put, it’s \(\max(K - S, 0)\).
Construct the Tree for the Underlying
Start with the current price \( S_0 \). Multiply by \( u \) or \( d \) to get the next-step prices. Continue outward until you reach the final step (expiration).
Compute Payoffs at Expiration
For a call, payoff at final nodes = \(\max(S_T - K, 0)\). For a put, payoff at final nodes = \(\max(K - S_T, 0)\).
Work Backwards
For each node in the penultimate step (and all prior steps), compute the “hold” value by discounting the next-step’s up/down payoffs with the risk-neutral probabilities.
Compare With Intrinsic Value
At each node, set node value = \(\max(\text{Hold}, \text{Intrinsic})\).
Arrive at the Present
The value at \( S_0 \) (the root node) is the price of the American-style option.
Imagine you hold an American put on a stock that pays a significant dividend in the middle of the option’s life. The presence of that dividend can cause the stock price to drop ex-dividend, which might trigger an earlier optimal exercise for the put. Let’s do a quick numeric illustration—just at a high level.
• Current stock price: $50
• Strike: $52
• Dividend: $1 (expected halfway to expiration)
• Up-factor: u = 1.05, down-factor: d = 0.95, risk-free rate is 2% per period.
In the node just before the dividend is paid, if you anticipate the stock’s price will drop by $1 on the ex-dividend date, you might find that the immediate exercise (i.e., collect $52 - stock price right now) is more profitable than waiting. This is especially true if the probability-weighted payoff after the price drop is smaller. The multi-period binomial tree helps you see precisely at which node early exercise becomes optimal.
If you have a call on a high dividend-paying stock, typically you might consider early exercise just before a big dividend if the call’s time value is less than the dividend you would gain by owning the stock. Using the binomial tree, at the node immediately preceding the ex-dividend date, you compare the “hold” value to the value if you exercise right away (which means you’d own the stock and capture the dividend). If that dividend is large enough, the early exercise might be worthwhile.
Let’s illustrate a simple two-period American put tree with some actual numbers. Assume:
We’ll ignore dividends here, but the process is the same if a dividend is present (just adjust your risk-neutral probability and be extra vigilant about the ex-dividend node).
Compute risk-neutral probability:
Stock price evolution over two periods:
graph LR A["100"] --> B["110 (up)"] A["100"] --> C["90 (down)"] B["110"] --> D["121 (uu)"] B["110"] --> E["99 (ud)"] C["90"] --> F["99 (du)"] C["90"] --> G["81 (dd)"]
At expiration (the second period), your put payoff is \(\max(K - S_2, 0)\):
Now step back to the first period:
Finally, compute at node A (the root, S=100).
Hence, the two-period American put is valued at around $1.417. Notice how we had an early exercise at node C, because the intrinsic value (10) was greater than the hold value (5.238). That’s the key difference from a European option.
If you’re comfortable with Python, here’s a small snippet that outlines how you might compute a multi-period binomial tree for an American put:
1import math
2
3def american_put_binomial(S0, K, r, u, d, periods):
4 # Risk-neutral probability
5 p = (1 + r - d) / (u - d)
6 discount = 1 / (1 + r)
7
8 # Initialize asset prices at maturity
9 stock_prices = [S0 * (u**(periods - i)) * (d**i) for i in range(periods + 1)]
10
11 # Option payoffs at maturity
12 option_values = [max(K - price, 0) for price in stock_prices]
13
14 # Step backward
15 for step in range(periods - 1, -1, -1):
16 for i in range(step + 1):
17 hold = discount * (p * option_values[i] + (1 - p) * option_values[i + 1])
18 current_price = S0 * (u**(step - i)) * (d**i)
19 exercise = max(K - current_price, 0)
20 option_values[i] = max(hold, exercise)
21
22 return option_values[0]
23
24value = american_put_binomial(S0=100, K=100, r=0.05, u=1.10, d=0.90, periods=2)
25print("Two-period American put value:", value)
This snippet is just a demonstration; you can adapt it for continuous compounding, incorporate dividends, or refine the numeric approach.
Recall back in Section 10.1, we discussed the main determinants of option value (underlying price, strike, volatility, etc.). In multi-period binomial models, those same factors come into play but in a more granular way. Also, connecting to “4.5 Option Strategies and Payoff Diagrams,” you could use the binomial approach to track the payoff paths of advanced strategies (like straddles or collars) if you break them down into calls and puts.
Important Notice: FinancialAnalystGuide.com provides supplemental CFA study materials, including mock exams, sample exam questions, and other practice resources to aid your exam preparation. These resources are not affiliated with or endorsed by the CFA Institute. CFA® and Chartered Financial Analyst® are registered trademarks owned exclusively by CFA Institute. Our content is independent, and we do not guarantee exam success. CFA Institute does not endorse, promote, or warrant the accuracy or quality of our products.