• TIME TO 2024 UK RANKINGS

  • C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

Brownian Motion Statistics

Joined
8/24/14
Messages
6
Points
13
If I am to consider the following Brownian motion,

X(t)=∮L(t)(μdt+σdWt) from 0 to T


where, L(t) is a constant, what would be the expected value and variance of X(T) at time T?

Will expected value of dWt be zero?
 
Since \(L(t)\) is a constant it can be brought outside the integrand and the integral can be separated into a sum of integrals. Thus we're left with

\(X(t)=L(t)\large(\int_0^T\mu dt+\int_0^T\sigma dW_t\right)=L(t)\large(\mu T+\sigma\int_0^TdW_t\right)\)

Then, taking the expected value of this gives

\(E[X(t)]=L(t)\large(E[\mu T]+\sigma E\left[\int_0^TdW_t\right]\right)\)

Since \(L(t),\;\mu,\;T,\;\sigma\) are all constants they can be brought outside the expected value and all we're left with is the expected value of the integral of \(dW_t\), which is just 0 because the Ito integral is a Martingale. Thus we're left with

\(E[X(T)]=L(t)\mu T\)


We then need to calculate the second (non-central) moment to get the variance. I'm going to skip a couple of algebraic details.

\(E[X(t)^2]=L(t)^2\large(E\left[\large(\int_0^T\mu dt\right)^2\right]+E\left[\large(\int_0^T\sigma dW_t\right)^2\right]\right)\\E[X(t)^2]=L(t)^2\large(\mu^2T^2+\sigma^2\int_0^Tdt\right)\\E[X(t)^2]=L(t)^2(\mu^2T^2+\sigma^2T)\)

The first integral is evaluated going from line 1 to 2 above because it is deterministic just like in the first moment, and the second integral comes from Ito Isometry (since a constant is a square integrable function). Then the deterministic integral is just evaluated.


So we already know what the expected value is, and the variance is simply \(L(T)^2(\mu^2T^2+\sigma^2T)-(L(T)\mu T)^2=L(T)^2\sigma^2T\)
 
Back
Top