Brownian-Motion

The Distribution of Future Stock Price

  • June 25, 2015

In Hull, we are presented that

$$ \frac{\Delta S}{S_{0}}=\mu \Delta t+\sigma\sqrt{\Delta t}\cdot \varepsilon. $$ Following some algebra,

$$ \begin{align*} \frac{\Delta S}{S_{0}} &=\mu \Delta t+\sigma\sqrt{\Delta t} \cdot \varepsilon \ \frac{S-S_{0}}{S_{0}} &= \mu \Delta t+\sigma\sqrt{\Delta t} \cdot \varepsilon \S &= \left(S_{0} + \mu S_{0} \Delta t\right) + \sigma S_{0} \sqrt{\Delta t} \cdot \varepsilon \end{align*} $$ Therefore the distribution of future stock price is given by

$$ S \sim \phi\left(S_{0} + \mu S_{0} \Delta t,\left(\sigma S_{0} \sqrt{\Delta t}\right)^{2}\right). $$ That is, the future stock price follows a normal distribution.

We are then introduced to Itô’s Lemma. By letting $ G = \ln(S_{0}) $ , we derive that

$$ dG = \left(\mu - \frac{1}{2}\sigma^{2}\right)dt+\sigma dz. $$ Since $ G = \ln{S_{0}} $ , in a discrete sense, it can be said that

$$ dG = \ln{S_{T}} - \ln{S_{0}}. $$ Therefore,

$$ \ln{S_{T}} - \ln{S_{0}} = \left(\mu - \frac{1}{2}\sigma^{2}\right)dt+\sigma dz \ \implies \ln{S_{T}} = \ln{S_{0}} + \left(\mu - \frac{1}{2}\sigma^{2}\right)dt+\sigma dz. $$ It then follows that since $ \ln{S_{T}} $ follows a normal distribution, the future stock price must follow a lognormal distribution

I am now confused, which process do I use to answer questions about the probabilistic nature of future stock prices?

I have one other question. Why does

$$ \mathcal{P}(\ln{S_{T}} > \ln{X}) = \mathcal{P}(S_{T} > X)? $$ The context for my last question can be found here.

You ask 2 questions and I try to answer:

  1. Why do we use geometric Brownian motion ( $ \ln S_t-\ln S_0 $ is normally distributed)? In this case you have

$$ S_t = S_0 \exp( (\mu-\sigma^2/2) t + \sigma B_t), $$ which means that you model positive prices. Furthermore the log-return $$ \ln(S_t/S_0) = (\mu-\sigma^2/2) t + \sigma B_t, $$ is normally distributed. As log returns can cover the whole real line $ (-\infty,\infty) $ this is a nice model. Keep in mind that simple returns $ S_t/S_0-1 $ can only take values from $ [-1,\infty) $ . The best place to model a normal distribution is the whole real line.

If you use a model (the Bachelier model)

$$ S_t = S_0 + \mu t + \sigma B_t, $$ then your returns $ S_t-S_0 $ are normally distributed. But there is the chance that prices get negative (if $ B_t $ becomes very negative). You probably don’t want this in your model. Some people use this model nevertheless to price options that are close to maturity as you don’t need such large $ \sigma $ to match (relatively high) prices of OTM options.

For 2) Why is $ P(\ln S>\ln X)=P(S > X) $ ? because the logarithm is a monotonous transformation. We speak of the same events. If $ S>X $ then always $ \ln S > \ln X $ . Thus the same events have the same probability. Another example

$$ P ( S > X ) = P ( S+4 > X + 4). $$ Just the same events.

引用自:https://quant.stackexchange.com/questions/18443