RM Notes
Essential statistical formulas and calculations for research methodology including sample size, correlation, and hypothesis testing
export const frontmatter = { title: "Important Research Formulas", description: "Essential statistical formulas and calculations for research methodology including sample size, correlation, and hypothesis testing", keywords: ["research formulas", "statistical calculations", "sample size formula", "research methodology"] };
Statistical formulas are the mathematical backbone of quantitative research. Rather than presenting them as abstract equations, this guide explains each formula in context—when you need it, what each component means, and how to apply it to real research scenarios. Think of this as your research calculator companion that also teaches you why you are calculating what you are calculating.
Sample Size Determination Formulas
For Estimating a Population Mean
When your research aims to estimate an average (mean income, mean satisfaction score, mean test performance):
Formula: n = (Z² × σ²) / E²
Where:
- n = required sample size
- Z = Z-score for your confidence level (1.96 for 95%, 2.576 for 99%)
- σ = population standard deviation (estimated from pilot study or literature)
- E = margin of error (maximum acceptable difference from true mean)
Example: You want to estimate average monthly spending of college students within ±₹500 accuracy at 95% confidence. Previous research suggests σ = ₹3,000.
n = (1.96² × 3000²) / 500² = (3.8416 × 9,000,000) / 250,000 = 138.3 ≈ 139 students
For Estimating a Population Proportion
When your research measures percentages (proportion who prefer X, percentage who agree with Y):
Formula: n = (Z² × p × q) / E²
Where:
- p = estimated proportion (use 0.5 if unknown—gives maximum sample size)
- q = 1 - p
- E = margin of error in proportion (e.g., 0.05 for ±5%)
Example: You want to know what proportion of employees support flexible working, within ±4% accuracy at 95% confidence. Unknown proportion, so p = 0.5.
n = (1.96² × 0.5 × 0.5) / 0.04² = (3.8416 × 0.25) / 0.0016 = 600.25 ≈ 601 employees
Finite Population Correction
When your population is small (under 10,000), the required sample size decreases:
Adjusted formula: n_adjusted = n / (1 + (n-1)/N)
Where N = total population size.
Example: If your calculated n = 384 but the total population is only 2,000: n_adjusted = 384 / (1 + 383/2000) = 384 / 1.1915 = 322 participants
Slovin's Formula (Simple Approximation)
Formula: n = N / (1 + N × e²)
Where N = population size, e = margin of error.
Example: Population of 5,000 employees, 5% margin of error: n = 5000 / (1 + 5000 × 0.05²) = 5000 / 13.5 = 370 participants
*Note: Slovin's formula is simpler but less precise than the Z-based formulas. Use it only as a rough guide.*
Measures of Central Tendency
Arithmetic Mean
Formula: x̄ = Σxᵢ / n
Sum all values and divide by the number of observations. Sensitive to outliers.
Weighted Mean
Formula: x̄_w = Σ(wᵢ × xᵢ) / Σwᵢ
Used when observations have different importance (e.g., courses with different credit hours).
Example: Student scores: 85 (4 credits), 72 (3 credits), 91 (2 credits) Weighted mean = (85×4 + 72×3 + 91×2) / (4+3+2) = (340 + 216 + 182) / 9 = 82.0
Median
Middle value when data is ordered. For even n: average of two middle values. Robust to outliers.
Mode
Most frequently occurring value. Can be used with nominal data.
Measures of Dispersion
Variance
Population: σ² = Σ(xᵢ - μ)² / N Sample: s² = Σ(xᵢ - x̄)² / (n-1)
The (n-1) denominator in sample variance is Bessel's correction—it provides an unbiased estimate of population variance.
Standard Deviation
Formula: s = √[Σ(xᵢ - x̄)² / (n-1)]
The most commonly reported measure of spread. Same units as the original data.
Example: Test scores: 65, 72, 78, 81, 84
- Mean = 76
- Deviations: -11, -4, 2, 5, 8
- Squared deviations: 121, 16, 4, 25, 64
- Sum = 230
- Variance = 230/4 = 57.5
- SD = √57.5 = 7.58
Coefficient of Variation
Formula: CV = (s / x̄) × 100%
Allows comparison of variability between variables with different units or scales.
Standard Error of the Mean
Formula: SE = s / √n
Measures precision of your sample mean as an estimate of the population mean. Decreases as sample size increases.
Correlation Formulas
Pearson's Correlation Coefficient (r)
Formula: r = [nΣxy - (Σx)(Σy)] / √{[nΣx² - (Σx)²][nΣy² - (Σy)²]}
Range: -1 to +1
Interpretation:
| r | Value | Strength | |
|---|---|---|---|
| 0.00 – 0.19 | Negligible | ||
| 0.20 – 0.39 | Weak | ||
| 0.40 – 0.59 | Moderate | ||
| 0.60 – 0.79 | Strong | ||
| 0.80 – 1.00 | Very strong |
Spearman's Rank Correlation (ρ)
Formula: ρ = 1 - [6Σd² / n(n²-1)]
Where d = difference between ranks of paired observations.
Use when: data is ordinal, relationship is non-linear, or normality assumption is violated.
Hypothesis Testing Formulas
Z-Test (Large Samples, σ Known)
Formula: Z = (x̄ - μ₀) / (σ/√n)
t-Test (Small Samples, σ Unknown)
One-sample: t = (x̄ - μ₀) / (s/√n), df = n-1
Independent samples: t = (x̄₁ - x̄₂) / √(s₁²/n₁ + s₂²/n₂)
Paired samples: t = d̄ / (s_d/√n), where d̄ = mean difference
Chi-Square Test
Formula: χ² = Σ[(O - E)² / E]
Where O = observed frequency, E = expected frequency.
Expected frequency: E = (Row total × Column total) / Grand total
Example: Testing whether gender is associated with career preference:
| Science | Arts | Total | |
|---|---|---|---|
| Male | 45 (O) | 30 (O) | 75 |
| Female | 35 (O) | 40 (O) | 75 |
| Total | 80 | 70 | 150 |
Expected for Male-Science: (75 × 80) / 150 = 40 χ² = (45-40)²/40 + (30-35)²/35 + (35-40)²/40 + (40-35)²/35 = 0.625 + 0.714 + 0.625 + 0.714 = 2.678
F-Test (ANOVA)
Formula: F = MS_between / MS_within
Where:
- MS_between = SS_between / df_between
- MS_within = SS_within / df_within
- df_between = k - 1 (k = number of groups)
- df_within = N - k (N = total observations)
Effect Size Formulas
Cohen's d (for t-tests)
Formula: d = (x̄₁ - x̄₂) / s_pooled
Where s_pooled = √[(s₁²(n₁-1) + s₂²(n₂-1)) / (n₁+n₂-2)]
Interpretation: Small = 0.2, Medium = 0.5, Large = 0.8
Eta-Squared (for ANOVA)
Formula: η² = SS_between / SS_total
Interpretation: Small = 0.01, Medium = 0.06, Large = 0.14
Odds Ratio
Formula: OR = (a × d) / (b × c)
From a 2×2 contingency table where a, b, c, d are cell frequencies.
Regression Formulas
Simple Linear Regression (y = a + bx)
Slope: b = [nΣxy - (Σx)(Σy)] / [nΣx² - (Σx)²]
Intercept: a = ȳ - bx̄
R-squared: R² = [Σ(ŷᵢ - ȳ)²] / [Σ(yᵢ - ȳ)²]
R² tells you the proportion of variance in y explained by x. If R² = 0.64, your independent variable explains 64% of the variation in the dependent variable.
Reliability Formulas
Cronbach's Alpha
Formula: α = (k / (k-1)) × [1 - (Σsᵢ² / s_total²)]
Where k = number of items, sᵢ² = variance of item i, s_total² = variance of total scores.
Interpretation: α ≥ 0.70 is acceptable for research; α ≥ 0.80 is good; α ≥ 0.90 is excellent.
Example: A 10-item satisfaction questionnaire with sum of item variances = 8.5 and total scale variance = 42.3: α = (10/9) × [1 - (8.5/42.3)] = 1.111 × 0.799 = 0.888 (good reliability)
Practical Tips for Using Formulas
- Always check units — Ensure your margin of error is in the same units as your standard deviation
- Use software for complex calculations — Formulas help understanding; software ensures accuracy
- Report precision — Round final results to 2-3 decimal places, not intermediate calculations
- Verify with examples — Before applying to your data, test the formula with a textbook example where you know the correct answer
- Understand, don't just memorize — Know why each component exists, not just what to plug in
Conclusion
These formulas represent the quantitative tools every researcher needs. Understanding what each formula does and when to apply it matters more than memorization—modern software handles computation. Your job is to select the right formula for your research question, verify that your data meets the required assumptions, and interpret results correctly in context.
Exam Focus
Revise definitions, diagrams, examples, and short-answer points for Important Research Formulas.
Interview Use
Prepare one clear explanation, one practical example, and one common mistake for this Research Methodology topic.
Search Terms
research-methodology, research methodology, research, methodology, resources, important, formulas, important research formulas
Related Research Methodology Topics