CONTENTS

Exercise: Log-Returns as an Additive Random Walk

Problem

Consider a multiplicative random walk for a stock price: Sn=Sn1ZnS_n = S_{n-1} Z_n with

Zn={u=1.02with probability p=0.55d=1/u0.9804with probability q=0.45Z_n = \begin{cases} u = 1.02 & \text{with probability } p = 0.55 \\ d = 1/u \approx 0.9804 & \text{with probability } q = 0.45 \end{cases}

and S0=100S_0 = 100.

  1. Show that Rn:=ln(Sn/Sn1)R_n := \ln(S_n / S_{n-1}) is a random variable taking only two values, and compute its mean E[Rn]\mathbb{E}[R_n] and variance Var(Rn)\operatorname{Var}(R_n).
  2. Show that the log-price lnSn\ln S_n is an additive random walk. Write lnSn\ln S_n in terms of lnS0\ln S_0 and the RiR_i.
  3. Compute E[lnS250]\mathbb{E}[\ln S_{250}] and Var(lnS250)\operatorname{Var}(\ln S_{250}) for one trading year.
  4. Even though E[Rn]>0\mathbb{E}[R_n] > 0 (positive expected log-return), show that the expected price E[Sn]\mathbb{E}[S_n] grows at a different rate than enE[Rn]e^{n\mathbb{E}[R_n]}. Compute both rates and interpret the gap financially.

Hint

For part 4, use the fact that E[Sn]=S0(E[Zn])n\mathbb{E}[S_n] = S_0 (\mathbb{E}[Z_n])^n by independence, and compare to S0enE[lnZn]S_0 e^{n\mathbb{E}[\ln Z_n]}. Jensen's inequality guarantees they are different.

Jump to the solution when you're ready.