Week 5.3: Bivariate Normal Distribution
367 words
2 min read
Visual companion
Python
Type and operator map
Python Week 1: the first filter for runtime behavior
View
Revision summary
What this note is really saying
Short form
# Week 5.3: Bivariate Normal Distribution > **Prerequisites:** Joint Continuous ([Week 5.1: Joint Continuous Distributions](/notes/01-foundation-bsma1004-stats-2-week05-15-joint-continuous-distributions)), Normal ([Week 4.2: Common Continuous Distributions](/notes/01-foundation-bsma1004-stats-2-week04-13-common-cont...

Week 5.3: Bivariate Normal Distribution
Prerequisites: Joint Continuous (Week 5.1: Joint Continuous Distributions), Normal (Week 4.2: Common Continuous Distributions) Cross-links: BSMA3012 (Linear Stat Models) — multivariate normal Core question: What is the most important joint continuous distribution?
1. Intuition: The "Correlated Normal"
The bivariate normal is the natural joint distribution for two normally-distributed variables that may be correlated. Examples:
- Height and weight of individuals
- Exam scores in two subjects
- Stock returns on consecutive days
2. Definition
(X,Y)∼N(μX,μY,σX2,σY2,ρ) has PDF:
where
3. Key Properties
- Marginals are normal: X∼N(μX,σX2), Y∼N(μY,σY2).
- ρ is the correlation coefficient between X and Y.
- If ρ=0, X and Y are independent (unique to normal!).
- Conditional distributions are normal:
The conditional mean is linear in x — this is the foundation of linear regression.
4. Visualising the Bivariate Normal
(Diagram)
5. Practice Questions
Q1 (Easy)
(X,Y) bivariate normal with μX=50, μY=60, σX=10, σY=12, ρ=0.6. Find E[Y∣X=70].
Full SolutionE[Y∣X=70]=60+0.6⋅1012(70−50)=60+0.6⋅1.2⋅20=60+14.4=74.4.
Q2 (Medium)
For the same distribution, find Var(Y∣X=70).
Full SolutionVar(Y∣X=70)=σY2(1−ρ2)=144(1−0.36)=144⋅0.64=92.16.
Q3 (Hard)
If X and Y are bivariate normal with ρ=0, show they are independent.
Full SolutionIf ρ=0, then Q(x,y)=σX2(x−μX)2+σY2(y−μY)2, and 1−ρ2=1.fXY(x,y)=2πσXσY1exp(−2σX2(x−μX)2−2σY2(y−μY)2)=fX(x)⋅fY(y).Thus X and Y are independent.
Next topic: Week 6.1: Moment Generating Functions — Moment Generating Functions. Join Discord PreviousWeek 5.2: Law of Large Numbers & Central Limit TheoremNextWeek 6.1: Moment Generating Functions