Kerry Back
A call option is the right to buy an asset at a pre-specified price.
A put option is the right to sell an asset at a pre-specified price.
The pre-specified price is called the exercise price or strike price.
\[\begin{cases} 0 & \text{if stock price < strike}\\ \text{stock price} - \text{strike} & \text{if stock price > strike} \end{cases} \]
\[\max(\text{stock price}-\text{strike}, 0)\]
With strike = 50,
\[\begin{cases} \text{strike} - \text{stock price} & \text{if stock price < strike}\\ 0 & \text{if stock price > strike} \end{cases} \]
\[\max(\text{strike}-\text{stock price}, 0)\]
With strike = 50,