Statistics Formulas and Problem-Solving Guide
Statistics Formulas and Problem-Solving Guide
PROBLEM-SOLVING GUIDE
Complete Reference with Pattern Recognition
FPT University Statistics Course
Contents
1 PROBABILITY BASICS 3
1.1 Independent vs Disjoint Events . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
1.2 Conditional Probability . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
1.3 Bayes’ Theorem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
3 CONTINUOUS DISTRIBUTIONS 11
3.1 Uniform Distribution . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
3.2 Exponential Distribution . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
3.3 Normal Distribution . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
3.4 Finding Percentiles . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
5 CONFIDENCE INTERVALS 17
5.1 CI for Population Mean . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
5.2 CI for Proportion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18
6 HYPOTHESIS TESTING 20
6.1 Understanding Hypothesis Tests . . . . . . . . . . . . . . . . . . . . . . . . . . . 20
6.2 Test for One Mean . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
6.3 Test for One Proportion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
6.4 Two-Sample Tests . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
1
Statistics Formulas & Problem-Solving Guide 2
9 DESCRIPTIVE STATISTICS 27
9.1 Quartiles . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
9.2 Stem-and-Leaf Diagram . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28
12 EXAM STRATEGY 32
12.1 Step-by-Step Problem Solving . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32
12.2 Time Management . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32
12.3 Common Sense Checks . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32
Statistics Formulas & Problem-Solving Guide 3
1 PROBABILITY BASICS
1.1 Independent vs Disjoint Events
How to Identify This Problem Type
Key phrases in problem:
1. Check if P (A ∩ B) = 0 → Disjoint
Worked Example
Common scenarios:
Formula
P (A ∩ B)
P (A|B) =
P (B)
Rearranged: P (A ∩ B) = P (A|B) × P (B)
Worked Example
”If a randomly selected [outcome] has [property], what is the probability it came
from [group]?”
Structure:
Formula
P (B|A) × P (A)
P (A|B) =
P (B)
P
Where: P (B) = P (B|Ai ) × P (Ai )
Find: P (Out-of-state|passed)
Step 1: Calculate total pass probability
Common scenarios:
Formulas
n k
P (X = k) = p (1 − p)n−k
k
E(X) = np
Var(X) = np(1 − p)
p
σ = np(1 − p)
Statistics Formulas & Problem-Solving Guide 7
Worked Example
Structure:
Example scenarios:
Formula
k−1 r
P (r-th success on trial k) = p (1 − p)k−r
r−1
Logic: Need r − 1 successes in first k − 1 trials, then success on k-th trial
Worked Example
Problem: ”Probability of success = 0.7. Find P(2nd success on exactly 4th trial)”
Identify: r = 2, k = 4, p = 0.7 → Negative Binomial!
Solution:
3
P = (0.7)1 (0.3)2 × 0.7 = 3 × 0.7 × 0.09 × 0.7 = 0.1323
1
Statistics Formulas & Problem-Solving Guide 8
Common scenarios:
Committee selection
Lottery problems
Formula
K N −K
k n−k
P (X = k) = N
n
Where:
N = total population
n = sample size
k = successes in sample
Statistics Formulas & Problem-Solving Guide 9
Worked Example
Problem: ”36 bacteria cells: 12 capable, 24 not. Select 7 without replacement. Find
P(exactly 3 capable)”
Identify: N = 36, K = 12, n = 7, k = 3, no replacement → Hypergeometric!
Solution:
12
× 24
3 4 220 × 10626
P (X = 3) = 36
= ≈ 0.28
7
8347680
Characteristics:
Common scenarios:
Typical questions:
Formula
e−λ λk
P (X = k) =
k!
Where λ = average rate per interval
Worked Example
Problem: ”Power company has mean 0.12 failures per day. Find P(exactly 2 failures in
a day)”
Identify: λ = 0.12, want P (X = 2) → Poisson!
Solution:
e−0.12 × (0.12)2 0.887 × 0.0144
P (X = 2) = = ≈ 0.006
2! 2
Statistics Formulas & Problem-Solving Guide 11
3 CONTINUOUS DISTRIBUTIONS
3.1 Uniform Distribution
How to Identify Uniform Problems
Key phrases in problem:
Characteristics:
Common scenarios:
Formula
For X ∼ Uniform(a, b):
1
f (x) = , a≤x≤b
b−a
d−c
P (c < X < d) =
b−a
b−c
P (X > c) =
b−a
d−a
P (X < d) =
b−a
Worked Example
Problem: ”Machine pumps uniformly between 9.75 and 11.25 gallons. Find P(pump ¿
10.65)”
Identify: Uniform on [9.75, 11.25] → Uniform!
Solution:
11.25 − 10.65 0.6
P (X > 10.65) = = = 0.4
11.25 − 9.75 1.5
Statistics Formulas & Problem-Solving Guide 12
Characteristics:
Memoryless property
Common scenarios:
Relationship to Poisson:
Formula
For mean µ:
P (X > x) = e−x/µ
P (X ≤ x) = 1 − e−x/µ
Worked Example
Problem: ”Wait time is exponential with mean 4.2 minutes. Find P(wait ¿ 1.8 minutes)”
Identify: µ = 4.2, want P (X > 1.8) → Exponential!
Solution:
P (X > 1.8) = e−1.8/4.2 = e−0.4286 ≈ 0.651
Statistics Formulas & Problem-Solving Guide 13
”bell-shaped distribution”
Question types:
Common scenarios:
Measurement errors
Manufacturing specifications
Natural phenomena
Formula
Convert to Z-score:
X −µ
Z=
σ
X̄−µ
For sample mean: Z = σ/ √
n
Then use Z-table or calculator
Worked Example
Problem: ”Beer bottles: µ = 16 oz, σ = 1.2 oz. Find P(12.5 < X < 14.5)”
Identify: Normal distribution given → Normal!
Solution:
12.5 − 16 14.5 − 16
Z1 = = −2.917, Z2 = = −1.25
1.2 1.2
P = Φ(−1.25) − Φ(−2.917) = 0.1056 − 0.0018 = 0.1039
Statistics Formulas & Problem-Solving Guide 14
Direction:
Formula
x=µ+Z ×σ
Where Z = invNorm(cumulative probability)
Common percentiles:
Worked Example
”average of n observations”
Critical distinction:
Common scenarios:
Formula
For sample mean X̄ from population with µ and σ:
σ
X̄ ∼ N µ, √
n
Standard Error: SE = √σ
n
X̄ − µ
Z= √
σ/ n
σ2
Variance of sample mean: Var(X̄) = n
Statistics Formulas & Problem-Solving Guide 16
Worked Example
Problem: ”Golfer scores: µ = 80, σ = 3. For 100 golfers, find P(X̄ > 80.5)”
Identify: Asking about average of 100 → CLT!
Solution:
3
SE = √ = 0.3
100
80.5 − 80
Z= = 1.667
0.3
P (Z > 1.667) ≈ 0.0478
Statistics Formulas & Problem-Solving Guide 17
5 CONFIDENCE INTERVALS
5.1 CI for Population Mean
How to Identify CI Problems
Key phrases in problem:
Decision tree:
1. Is σ known?
2. Sample size?
Formulas
Z-interval (known σ):
σ
x̄ ± zα/2 × √
n
t-interval (unknown σ):
s
x̄ ± tα/2,df × √
n
where df = n − 1
Common z-values:
Worked Example
”proportion of population”
”percentage who...”
Data format:
Sample proportion: p̂ = x
n
Formulas
One proportion: r
p̂(1 − p̂)
p̂ ± zα/2 ×
n
Two proportions:
s
p̂1 (1 − p̂1 ) p̂2 (1 − p̂2 )
(p̂1 − p̂2 ) ± zα/2 × +
n1 n2
Statistics Formulas & Problem-Solving Guide 19
Worked Example
Problem: ”Democrats: 92/205 voted yes. Republicans: 120/230 voted yes. Find 95%
CI for difference”
Identify: Two proportions → Two-proportion CI!
Solution:
p̂1 = 0.45, p̂2 = 0.52
r
0.45(0.55) 0.52(0.48)
SE = + = 0.0479
205 230
CI = (0.45 − 0.52) ± 1.96(0.0479) = (−0.16, 0.02)
Statistics Formulas & Problem-Solving Guide 20
6 HYPOTHESIS TESTING
6.1 Understanding Hypothesis Tests
How to Identify Hypothesis Test
Key phrases in problem:
”test H0 : µ = µ0 ”
Structure:
Types by parameter:
One mean: H0 : µ = µ0
One proportion: H0 : p = p0
Two means: H0 : µ1 = µ2
Two proportions: H0 : p1 = p2
False positive
False negative
”claim: µ = µ0 ”
Known σ → Z-test
Unknown σ → t-test
Formulas
Z-test (known σ):
x̄ − µ0
Z= √
σ/ n
t-test (unknown σ):
x̄ − µ0
t= √ , df = n − 1
s/ n
Critical values (α = 0.05):
Common scenarios:
Formula
p̂ − p0
Z=p
p0 (1 − p0 )/n
Where: p̂ = nx , p0 = claimed proportion
Worked Example
Types:
df = n1 + n2 − 2
Statistics Formulas & Problem-Solving Guide 24
Information needed:
2. Margin of error E
Formulas
Sample size for mean: 2
zα/2 × σ
n=
E
Sample size for proportion:
2
zα/2 × p(1 − p)
n=
E2
If p unknown: Use p = 0.5 (most conservative)
Always round UP to next integer
Worked Example
”correlation coefficient r”
”linear correlation”
Types of questions:
Common scenarios:
Properties of Correlation
−1 ≤ r ≤ 1
Interpretation:
r = 0: No linear correlation
”predict Y from X”
Question types:
1. Find equation: ŷ = a + bx
ŷ = a + bx
Slope: P
(xi − x̄)(yi − ȳ)
b= P
(xi − x̄)2
Intercept:
a = ȳ − bx̄
Worked Example
9 DESCRIPTIVE STATISTICS
9.1 Quartiles
How to Identify Quartile Problems
Key phrases in problem:
”median” or ”Q2”
Quartile Formulas
Position formulas:
n+1
Q1 position =
4
n+1
Q2 position =
2
3(n + 1)
Q3 position =
4
If position is not integer: Interpolate between adjacent values
Worked Example
Purpose:
How to Create
Steps:
1. Separate each number into stem (leading digits) and leaf (last digit)
2. One-tailed vs Two-tailed
Ha : µ ̸= µ0 → Two-tailed
Ha : µ > µ0 or µ < µ0 → One-tailed
Known σ → Z-test
Unknown σ → t-test
Statistics Formulas & Problem-Solving Guide 31
Larger n → Narrower CI
Higher confidence → Wider CI
2. Interpretation
12 EXAM STRATEGY
12.1 Step-by-Step Problem Solving
General Approach:
Study Tips: