In
finance
Finance refers to monetary resources and to the study and Academic discipline, discipline of money, currency, assets and Liability (financial accounting), liabilities. As a subject of study, is a field of Business administration, Business Admin ...
, the binomial options pricing model (BOPM) provides a generalizable
numerical method
In numerical analysis, a numerical method is a mathematical tool designed to solve numerical problems. The implementation of a numerical method with an appropriate convergence check in a programming language is called a numerical algorithm.
Mathem ...
for the valuation of
options. Essentially, the model uses a "discrete-time" (
lattice based) model of the varying price over time of the
underlying
In finance, a derivative is a contract between a buyer and a seller. The derivative can take various forms, depending on the transaction, but every derivative has the following four elements:
# an item (the "underlier") that can or must be bou ...
financial instrument, addressing cases where the
closed-form Black–Scholes formula is wanting, which in general does not exist for the BOPM.
The binomial model was first proposed by
William Sharpe in the 1978 edition of ''Investments'' (), and formalized by
Cox,
Ross and
Rubinstein in 1979 and by Rendleman and Bartter in that same year.
For binomial trees as applied to
fixed income
Fixed income refers to any type of investment under which the borrower or issuer is obliged to make payments of a fixed amount on a fixed schedule. For example, the borrower may have to pay interest at a fixed rate once a year and repay the pr ...
and
interest rate derivatives see .
Use of the model
The Binomial options pricing model approach has been widely used since it is able to handle a variety of conditions for which other models cannot easily be applied. This is largely because the BOPM is based on the description of an
underlying instrument over a period of time rather than a single point. As a consequence, it is used to value
American options that are exercisable at any time in a given interval as well as
Bermudan options that are exercisable at specific instances of time. Being relatively simple, the model is readily implementable in computer
software
Software consists of computer programs that instruct the Execution (computing), execution of a computer. Software also includes design documents and specifications.
The history of software is closely tied to the development of digital comput ...
(including a
spreadsheet
A spreadsheet is a computer application for computation, organization, analysis and storage of data in tabular form. Spreadsheets were developed as computerized analogs of paper accounting worksheets. The program operates on data entered in c ...
).
Although higher in computational complexity and computationally slower than the
Black–Scholes formula, it is more accurate, particularly for longer-dated options on securities with
dividend
A dividend is a distribution of profits by a corporation to its shareholders, after which the stock exchange decreases the price of the stock by the dividend to remove volatility. The market has no control over the stock price on open on the ex ...
payments. For these reasons, various versions of the binomial model are widely used by practitioners in the options markets.
For options with several sources of uncertainty (e.g.,
real options) and for options with complicated features (e.g.,
Asian option
An Asian option (or ''average value'' option) is a special type of option contract. For Asian options, the payoff is determined by the average underlying price over some pre-set period of time. This is different from the case of the usual European ...
s), binomial methods are less practical due to several difficulties, and
Monte Carlo option models are commonly used instead. When simulating a small number of time steps
Monte Carlo simulation will be more computationally time-consuming than BOPM (cf.
Monte Carlo methods in finance). However, the worst-case runtime of BOPM will be
O(2n), where n is the number of time steps in the simulation. Monte Carlo simulations will generally have a
polynomial time complexity, and will be faster for large numbers of simulation steps.
Monte Carlo simulations are also less susceptible to sampling errors, since binomial techniques use discrete time units. This becomes more true the smaller the discrete units become.
Method

The binomial pricing model traces the evolution of the option's key underlying variables in discrete-time. This is done by means of a binomial lattice (Tree), for a number of time steps between the valuation and expiration dates. Each node in the lattice represents a possible price of the underlying at a given point in time.
Valuation is performed iteratively, starting at each of the final nodes (those that may be reached at the time of expiration), and then
working backwards through the tree towards the first node (valuation date). The value computed at each stage is the value of the option at that point in time.
Option valuation using this method is, as described, a three-step process:
# Price tree generation,
# Calculation of option value at each final node,
# Sequential calculation of the option value at each preceding node.
Step 1: Create the binomial price tree
The tree of prices is produced by working forward from valuation date to expiration.
At each step, it is assumed that the
underlying instrument will move up or down by a specific factor (
or
) per step of the tree (where, by definition,
and
). So, if
is the current price, then in the next period the price will either be
or
.
The up and down factors are calculated using the underlying (fixed)
volatility,
, and the time duration of a step,
, measured in years (using the
day count convention of the underlying instrument). From the condition that the
variance
In probability theory and statistics, variance is the expected value of the squared deviation from the mean of a random variable. The standard deviation (SD) is obtained as the square root of the variance. Variance is a measure of dispersion ...
of the log of the price is
, we have:
:
:
Above is the original Cox, Ross, & Rubinstein (CRR) method; there are various other techniques for generating the lattice, such as "the equal probabilities" tree, see.
[Mark s. Joshi (2008)]
The Convergence of Binomial Trees for Pricing the American Put
/ref>
The CRR method ensures that the tree is recombinant, i.e. if the underlying asset moves up and then down (u,d), the price will be the same as if it had moved down and then up (d,u)—here the two paths merge or recombine. This property reduces the number of tree nodes, and thus accelerates the computation of the option price.
This property also allows the value of the underlying asset at each node to be calculated directly via formula, and does not require that the tree be built first. The node-value will be:
:
Where is the number of up ticks and is the number of down ticks.
Step 2: Find option value at each final node
At each final node of the tree—i.e. at expiration of the option—the option value is simply its intrinsic, or exercise, value:
:, for a call option
In finance, a call option, often simply labeled a "call", is a contract between the buyer and the seller of the call Option (finance), option to exchange a Security (finance), security at a set price. The buyer of the call option has the righ ...
:, for a put option
In finance, a put or put option is a derivative instrument in financial markets that gives the holder (i.e. the purchaser of the put option) the right to sell an asset (the ''underlying''), at a specified price (the ''strike''), by (or on) a ...
,
Where is the strike price and is the spot price of the underlying asset at the period.
Step 3: Find option value at earlier nodes
Once the above step is complete, the option value is then found for each node, starting at the penultimate time step, and working back to the first node of the tree (the valuation date) where the calculated result is the value of the option.
In overview: the "binomial value" is found at each node, using the risk neutrality assumption; see Risk neutral valuation. If exercise is permitted at the node, then the model takes the greater of binomial and exercise value at the node.
The steps are as follows:
In calculating the value at the next time step calculated—i.e. one step closer to valuation—the model must use the value selected here, for "Option up"/"Option down" as appropriate, in the formula at the node.
The aside algorithm
In mathematics and computer science, an algorithm () is a finite sequence of Rigour#Mathematics, mathematically rigorous instructions, typically used to solve a class of specific Computational problem, problems or to perform a computation. Algo ...
demonstrates the approach computing the price of an American put option, although is easily generalized for calls and for European and Bermudan options:
Relationship with Black–Scholes
Similar assumptions underpin both the binomial model and the Black–Scholes model
The Black–Scholes or Black–Scholes–Merton model is a mathematical model for the dynamics of a financial market containing Derivative (finance), derivative investment instruments. From the parabolic partial differential equation in the model, ...
, and the binomial model thus provides a discrete time approximation to the continuous process underlying the Black–Scholes model. The binomial model assumes that movements in the price follow a binomial distribution
In probability theory and statistics, the binomial distribution with parameters and is the discrete probability distribution of the number of successes in a sequence of statistical independence, independent experiment (probability theory) ...
; for many trials, this binomial distribution approaches the log-normal distribution assumed by Black–Scholes. In this case then, for European option
In finance, the style or family of an option is the class into which the option falls, usually defined by the dates on which the option may be exercised. The vast majority of options are either European or American (style) options. These options ...
s without dividends, the binomial model value converges on the Black–Scholes formula value as the number of time steps increases.[Chance, Don M. March 200]
''A Synthesis of Binomial Option Pricing Models for Lognormally Distributed Assets''
. Journal of Applied Finance, Vol. 18
In addition, when analyzed as a numerical procedure, the CRR binomial method can be viewed as a special case of the explicit finite difference method for the Black–Scholes PDE; see finite difference methods for option pricing Finite difference methods for option pricing are Numerical analysis, numerical methods used in mathematical finance for the valuation of Option (finance), options. Finite difference methods were first applied to Valuation of options, option pricing ...
.
See also
* Trinomial tree
The trinomial tree is a Lattice model (finance), lattice-based computational model used in financial mathematics to price option (finance), options. It was developed by Phelim Boyle in 1986. It is an extension of the binomial options pricing model, ...
, a similar model with three possible paths per node.
* Tree (data structure)
In computer science, a tree is a widely used abstract data type that represents a hierarchical tree structure with a set of connected nodes. Each node in the tree can be connected to many children (depending on the type of tree), but must be co ...
* Lattice model (finance)
In quantitative finance, a lattice model is a numerical approach to the valuation of derivatives in situations requiring a discrete time model. For dividend paying equity options, a typical application would correspond to the pricing of an ...
, for more general discussion and application to other underlyings
* Black–Scholes: binomial lattices are able to handle a variety of conditions for which Black–Scholes cannot be applied.
* Monte Carlo option model, used in the valuation of options with complicated features that make them difficult to value through other methods.
* Real options analysis, where the BOPM is widely used.
* Quantum finance, quantum binomial pricing model.
* Mathematical finance
Mathematical finance, also known as quantitative finance and financial mathematics, is a field of applied mathematics, concerned with mathematical modeling in the financial field.
In general, there exist two separate branches of finance that req ...
, which has a list of related articles.
* , where the BOPM is widely used.
* Implied binomial tree
* Edgeworth binomial tree
References
External links
The Binomial Model for Pricing Options
Prof. Thayer Watkins
Binomial Option Pricing
(PDF
Portable document format (PDF), standardized as ISO 32000, is a file format developed by Adobe Inc., Adobe in 1992 to present documents, including text formatting and images, in a manner independent of application software, computer hardware, ...
), Prof. Robert M. Conroy
Binomial Option Pricing Model
by Fiona Maclachlan, The Wolfram Demonstrations Project
The Wolfram Demonstrations Project is an open-source collection of interactive programmes called Demonstrations. It is hosted by Wolfram Research. At its launch, it contained 1300 demonstrations but has grown to over 10,000. The site won a Pa ...
On the Irrelevance of Expected Stock Returns in the Pricing of Options in the Binomial Model: A Pedagogical Note
by Valeri Zakamouline
A Simple Derivation of Risk-Neutral Probability in the Binomial Option Pricing Model
by Greg Orosi
{{Derivatives market
Financial models
Options (finance)
Mathematical finance
Models of computation
Trees (data structures)
Articles with example code