Black Scholes $ ( \;)^+$ Notation Question

174 Views Asked by At

Came across an exercise involving the Black Scholes formula which uses:

$E[(S_{T}-K)^{+}|F_{t}]$

What is the $\;(\;)^{+}\;$ in the expression? Is this some kind of operator?

Thanks.

2

There are 2 best solutions below

0
On BEST ANSWER

$x^+$ is the "positive part" of $x$: $x^+ = \max\{0, x\}$. That is, $x^+ = x$ when $x$ is positive, and $x^+ = 0$ when $x$ is negative.

The reason why it appears here is this: suppose you hold a call option on a stock with strike price $K$, and at expiration the stock price is $S_T$. If $S_T \ge K$ (i.e. $S_T - K \ge 0$) then you can exercise the option, buy a share at the strike price $K$ and immediately sell it at the market price $S_T$, for a profit of $S_T - K$. But if $S_T < K$ (i.e. $S_T - K < 0$) then it would be stupid to exercise the option because you would lose money. So you should instead let it expire, and your profit is 0. Thus we can combine these two cases and write the profit as $(S_T - K)^+$.

0
On

The expression $(x)^+$ is defined as $(\bullet)^+ : x \mapsto \max(0,x)$ for $x\in\mathbb{R}$.