Lesson 2.1: The Superpower of the Normal Distribution
This lesson reveals the most elegant and powerful property of the Normal distribution: its 'closure' under addition. We'll prove that if you add independent Normal variables together, the result is always another Normal variable. This single theorem is the theoretical engine that powers both Modern Portfolio Theory and the statistical inference of the OLS estimator.
Part 1: The Practical Problem - Portfolio Returns
Let's consider a simple portfolio with two assets, A and B. We assume their daily returns are independent and Normally distributed:
- Return of A:
- Return of B:
We build a portfolio with 60% in Asset A and 40% in Asset B. The portfolio's return, , is a **linear combination** of the asset returns:
The crucial question for any risk manager is: What is the probability distribution of ? Is it Normal? And what are its mean and variance?
The Linear Combination Theorem
If are independent random variables and , then any linear combination is also Normally distributed.
This "closure" property is unique and incredibly powerful. It guarantees that our portfolio return will have a predictable bell shape, allowing us to model its risk perfectly.
Part 2: Finding the Parameters of the New Distribution
Knowing that the result is Normal is half the battle. Now we need to find its mean and variance. Let .
Using the linearity of expectation, the derivation is straightforward:
For the variance of a sum, we must account for the covariance. But because we assume and are independent, their covariance is zero.
Since :
Solving our Portfolio Problem: The return of our portfolio is Normally distributed with:
- Mean:
- Variance:
Part 3: The Rigorous Proof (Using MGFs)
Proof: Why is the sum of independent Normals also Normal?
This is a classic and elegant proof that uses the Moment Generating Functions we mastered in Module 1.
Step 1: Recall the MGF for a Normal variable. If , its MGF is:
Step 2: Use the key property of MGFs for sums of independent variables. If , where and are independent, then the MGF of Y is the product of the individual MGFs:
Step 3: Substitute the Normal MGFs.
Step 4: Combine the exponents by adding them.
Step 5: Recognize the result. Look at this final formula! It is the MGF of a new Normal distribution with a mean of and a variance of .
Because the resulting MGF is the MGF of a Normal distribution, the distribution of Y *must* be Normal. This completes the proof.
- Quantitative Finance (Modern Portfolio Theory): This theorem is the mathematical foundation of MPT. It assumes individual asset returns are (Multivariate) Normal. The theorem then guarantees that the overall portfolio return—a weighted sum of asset returns—is also Normal. This allows managers to use the simple and well-understood properties of the Normal distribution to model the risk and return of their entire portfolio.
- Econometrics (The OLS Estimator): The OLS estimator is a linear combination of the response variable (or the error terms ). If we assume that the error terms are independent and Normally distributed, this theorem guarantees that the sampling distribution of will also be Normal. This is the critical assumption that allows us to perform t-tests and construct confidence intervals for our regression coefficients. Without it, the entire framework of inference in OLS would break down.
What's Next? Handling Dependencies
We've proven this powerful result under the convenient assumption of independence. But in the real world, asset returns are rarely independent—they have correlations.
To handle this, we must upgrade our tools to the matrix world. The next lesson introduces the **Multivariate Normal Distribution**, which replaces single variance numbers () with a full Covariance Matrix () to model these complex dependencies.