数学期望shùxué qīwàng
Core Concept
The expected value (or mathematical expectation) of a random variable is the weighted average of all possible values, where the weights are the probabilities.
Discrete Random Variable
For a discrete random variable taking values with probabilities :
Notation
- - Expected value of
- (mu) - Often used to denote expected value
- - Sample mean (estimate of )
Interpretation
The expected value represents:
- The long-run average of many independent trials
- The center of mass of the probability distribution
- The fair value in gambling/finance contexts
Important: The expected value may not be an actually possible outcome.
Properties of Expected Value
1. Linearity
where and are constants.
2. Sum of Random Variables
This holds even if and are NOT independent.
3. Product of Independent Variables
If and are independent:
4. Expected Value of a Constant
Common Distributions
| Distribution | Expected Value |
|---|---|
| Bernoulli() | |
| Binomial() | |
| Uniform() | |
| Geometric() |
CSCA Practice Problems
💡 Note: The following practice problems are designed based on the CSCA exam syllabus.
Example 1: Basic (Difficulty ★★☆☆☆)
A random variable has the following distribution:
| 1 | 2 | 3 | |
|---|---|---|---|
| 0.2 | 0.5 | 0.3 |
Find .
Solution:
Answer:
Example 2: Intermediate (Difficulty ★★★☆☆)
If , find .
Solution:
Using linearity:
Answer:
Example 3: Intermediate (Difficulty ★★★☆☆)
A fair coin is tossed 100 times. Let be the number of heads. Find .
Solution:
follows Binomial distribution with , .
Answer:
Example 4: Advanced (Difficulty ★★★★☆)
A box contains 3 red and 2 white balls. Two balls are drawn without replacement. Let be the number of red balls drawn. Find .
Solution:
Find the distribution of :
(both white)
(one red, one white)
(both red)
Answer:
Example 5: Advanced (Difficulty ★★★★★)
If and , find .
Solution:
Expand:
Answer:
Real-World Applications
1. Fair Games
A game is "fair" if .
Example: You pay ¥2 to flip a coin. Heads: win ¥4. Tails: win nothing. This is a fair game.
2. Insurance
Insurance companies use expected value to set premiums.
3. Investment Analysis
Expected return helps compare investment options.
Common Mistakes
❌ Mistake 1: Confusing E(X) with Most Likely Value
Wrong: is the value that occurs most often ✗
Correct: is the weighted average; mode is the most frequent value ✓
❌ Mistake 2: Forgetting Probabilities Must Sum to 1
Before calculating, verify:
❌ Mistake 3: Wrong Linearity Application
Wrong: ✗
Correct: Generally . The difference is the variance! ✓
Relationship with Variance
Or equivalently:
Study Tips
- ✅ Remember the formula:
- ✅ Master linearity:
- ✅ Know common distributions: Binomial expected value is
- ✅ Don't confuse with variance:
💡 Exam Tip: When given a probability distribution table, first verify probabilities sum to 1, then apply the definition directly!