Descriptive statistics summarize and organize data so it can be easily understood.
Probability is the mathematical framework for quantifying uncertainty.
| Distribution | Type | Use Case | Key Parameters |
|---|---|---|---|
| Normal | Continuous | Natural phenomena, CLT | μ (mean), σ (std dev) |
| Binomial | Discrete | Successes in n trials | n (trials), p (prob) |
| Poisson | Discrete | Events per interval | λ (rate) |
| t-distribution | Continuous | Small samples, unknown σ | df |
| Chi-Square | Continuous | Goodness of fit | df |
Making conclusions about populations based on sample data.
| H₀ True | H₀ False | |
|---|---|---|
| Reject H₀ | Type I Error (α) | ✅ Correct (Power) |
| Fail to Reject | ✅ Correct | Type II Error (β) |
| Method | Description |
|---|---|
| Simple Random | Equal chance of selection |
| Stratified | Sample from subgroups |
| Cluster | Select entire groups |
| Systematic | Every kth member |
| Convenience | Whoever is available (biased!) |
Loading...
Answer
👆 Click the card to flip it
Mean: x̄ = Σxᵢ / n
Median: Middle value (sorted)
Mode: Most frequent value
Right-skewed: Mean > Median
Left-skewed: Mean < Median
Variance: s² = Σ(xᵢ−x̄)²/(n−1)
Std Dev: s = √s²
IQR: Q3 − Q1
Range: Max − Min
SE: σ/√n
Addition: P(A∪B) = P(A)+P(B)−P(A∩B)
Multiplication: P(A∩B) = P(A)·P(B|A)
Complement: P(A') = 1−P(A)
Bayes: P(A|B) = P(B|A)·P(A)/P(B)
Z-score: z = (x−μ)/σ
68% within ±1σ
95% within ±2σ
99.7% within ±3σ
z-test: z = (x̄−μ₀)/(σ/√n)
t-test: t = (x̄−μ₀)/(s/√n)
p ≤ α: Reject H₀
Type I (α): False positive
Type II (β): False negative
Power: 1 − β
ŷ = b₀ + b₁x
R²: % variance explained
r: Correlation (−1 to +1)
Assumptions: LINE
CI = x̄ ± z*(σ/√n)
90%: z* = 1.645
95%: z* = 1.96
99%: z* = 2.576
Wider CI = more confidence, less precision
Observational: Association only
Experimental: Can show causation
Random sampling → Generalizability
Random assignment → Causation
• Correlation ≠ Causation
• Never "accept" H₀
• Statistical ≠ Practical significance
• p-value ≠ P(H₀ is true)
• CI is about the method, not one interval