PFE Chapter 23: Facts about option prices page 13
1
2
3
4
5
6
7
8
9
10
ABC
FACT 5: Lower bound on
European
put price
Microsoft stock price, 15 August 2001, S
0
63
Option exercise price, X 70
Option exercise time, T (in years) 1
Interest rate, r 10%
Lower bound on call price
Lower bound of American put: Max[X - S
0
, 0]
7 <-- =MAX(B4-B3,0)
Fact 4: put price > Max[PV(X) - S
0
,0]
0.6364 <-- =MAX(B4/(1+B6)^B5-B3,0)
This fact says that the price of a European put can actually be much lower than the price
of an American put. Look at the example above, in which we look at the price of a put option on
Microsoft stock with T = 1 and X = 70. If our put was an American put, then it couldn’t sell for
less than $7. On the other hand, a European put, which cannot be exercised until date T, can sell
for anything more than $0.6364.
Meaning: An arbitrage with European puts will exist only when the put price goes below
$0.6364. Here’s an example of an arbitrage when the put price is $0.5:
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
ABC
Arbitrage proof
Put price at time 0 (today) 0.5
Actions at time 0 (today)
Buy the stock -63 <-- =-B3
Borrow PV(X) 63.64 <-- =B4/(1+B6)^B5
Buy a put -0.5 <-- =-B15
Total cash flow at time 0 0.14 <-- =SUM(B18:B20)
Cash flow at time T
S
T
, stock price at time T
50
Sell the stock 50 <-- =B24
Repay the loan -70 <-- =-B4
Put cash flow 20 <-- =MAX(B4-B24,0)
Total 0 <-- =SUM(B26:B28)