Browse Trading

Binomial Option Pricing Model

Tree-based option valuation model that prices contracts by working backward through possible up and down price paths.

The binomial option pricing model values an option by building a tree of possible underlying prices and then working backward from expiration to today.

The model is intuitive because each step allows the underlying asset to move up or down. With enough steps, the tree can approximate continuous price behavior while still handling features such as early exercise.

Binomial Tree Intuition

The diagram shows a two-step tree. The underlying price branches upward or downward at each period, and the option value is calculated backward from the final payoff nodes.

SVG diagram of a two-step binomial option pricing tree.

At each step, the underlying price can move:

$$ S_u = S \times u $$

or:

$$ S_d = S \times d $$

where \(u\) is the up factor and \(d\) is the down factor.

Risk-Neutral Probability

In a simple one-period model, the risk-neutral probability is often written as:

$$ p = \frac{e^{r\Delta t} - d}{u - d} $$

The option value is then the discounted risk-neutral expected payoff:

$$ C = e^{-r\Delta t}\left[pC_u + (1-p)C_d\right] $$

where \(C_u\) and \(C_d\) are the option values at the up and down nodes.

Backward Induction

The binomial model works backward:

  1. Build the possible underlying prices at expiration.
  2. Compute option payoffs at terminal nodes.
  3. Discount expected values backward one step at a time.
  4. For American-style options, compare continuation value with exercise value at each node.

That early-exercise check is one of the main reasons the binomial model remains useful.

Example

Suppose a stock is 100, the strike is 100, the one-period up factor is 1.10, the down factor is 0.90, and the risk-free growth factor for the period is 1.02.

The risk-neutral probability is:

$$ p = \frac{1.02 - 0.90}{1.10 - 0.90} = 0.60 $$

For a call, terminal payoffs are 10 in the up state and 0 in the down state. The current theoretical value is the discounted expected payoff, before transaction costs and model limitations.

Binomial vs. Black-Scholes

FeatureBinomial modelBlack-Scholes model
Time structureDiscrete stepsContinuous-time closed form
Early exerciseCan model directlyBasic version cannot
DividendsCan handle discrete dividendsNeeds adjustments
IntuitionVisual treeFormula-based
ComputationMore steps improve precisionFaster closed-form calculation

Public Source Checks

Common Confusion

Do not confuse the risk-neutral probability with a real-world forecast probability. It is a pricing tool that makes the discounted expected payoff consistent with no-arbitrage assumptions.

FAQs

Why use a binomial model instead of Black-Scholes?

A binomial model can handle early exercise, discrete dividends, and contract features that are awkward for a simple closed-form model.

Does more tree steps always mean a better price?

More steps often improve approximation, but input quality, model design, exercise logic, and market assumptions still matter.

Can a binomial model value American options?

Yes. At each node, the model can compare immediate exercise value with continuation value.
Revised on Sunday, June 21, 2026