Lesson 11 of 15
Binomial Tree (N-Step)
N-Step Binomial Tree
The 1-step model is too coarse. With n steps, we subdivide T into n intervals of length Δt = T/n, giving a much more accurate approximation of the continuous Black-Scholes model.
CRR Parameters for N Steps
Tree Structure
At step n, the stock can be at any of n+1 values:
Backward Induction Algorithm
- Compute terminal payoffs at time n for all n+1 nodes
- Work backwards: at each step, the value at node j is:
- Repeat until you reach the root node (t=0)
Convergence
As n → ∞, the binomial price converges to the Black-Scholes price. With n = 100 steps, the error is typically less than 0.05%.
The key insight: more steps = finer time grid = better approximation of continuous-time Brownian motion.
Python runtime loading...
Loading...
Click "Run" to execute your code.