Fatskills
Practice. Master. Repeat.
Study Guide: **Business Management 101 - Average vs. Median: A Practical Guide**
Source: https://www.fatskills.com/management-101/chapter/average-vs-median-a-practical-guide

**Business Management 101 - Average vs. Median: A Practical Guide**

By Fatskills Exam Guides Team — the exam nerds behind 28,500+ quizzes and 2.1M practice questions across 500+ global exams.

⏱️ ~6 min read

Average vs. Median: A Practical Guide


What Is This?

Average (mean) and median are two fundamental measures of central tendency. You use them to summarize data, detect trends, or make decisions when raw numbers are too noisy or numerous.

Why use them today?
- Business: Compare salaries, customer spending, or product performance.
- Data Science: Clean datasets, detect outliers, or build fair models.
- Everyday Life: Decide where to live (cost of living), evaluate test scores, or assess investment returns.


Why It Matters

Numbers lie when misinterpreted. Averages hide extremes (e.g., billionaires skew income data), while medians reveal the true middle. Misusing them leads to bad decisions: - A company pays "average" salaries but ignores that half the team earns below poverty wages.
- A city advertises "affordable" housing based on mean prices, masking sky-high rents for most residents.
- A product manager optimizes for "average" user behavior, alienating 50% of customers.


Core Concepts


1. Average (Mean)

  • Definition: Sum of all values divided by the count.
  • Formula:
    Mean = (Sum of values) / (Number of values)
  • When to use:
  • Data is symmetrically distributed (e.g., heights, test scores).
  • You need to account for all values (e.g., total revenue per customer).
  • Weakness: Sensitive to outliers (e.g., one billionaire in a room of 100 people skews the "average" income).

2. Median

  • Definition: The middle value when data is ordered. If even count, average the two middle numbers.
  • When to use:
  • Data is skewed (e.g., salaries, home prices, response times).
  • You care about the "typical" experience (e.g., median household income).
  • Weakness: Ignores extreme values, which may matter (e.g., ignoring high-value customers in marketing).

3. Mode (Bonus)

  • Definition: The most frequent value(s).
  • When to use:
  • Categorical data (e.g., most popular product color).
  • Identifying common patterns (e.g., peak website traffic hours).

4. Skewness

  • Right-skewed (positive skew): Mean > Median (e.g., wealth distribution).
  • Left-skewed (negative skew): Mean < Median (e.g., retirement ages).
  • Symmetric: Mean ≈ Median (e.g., IQ scores).


How It Works


Step-by-Step Calculation

Example Dataset: [5, 7, 8, 12, 100]


  1. Mean:
  2. Sum: 5 + 7 + 8 + 12 + 100 = 132
  3. Count: 5
  4. Mean: 132 / 5 = 26.4

  5. Median:

  6. Ordered data: [5, 7, 8, 12, 100]
  7. Middle value: 8 (odd count → 3rd value)

  8. Comparison:

  9. Mean (26.4) is pulled up by the outlier (100).
  10. Median (8) better represents the "typical" value.

Visualizing Skew

Right-skewed (e.g., income):
^
| *
| * *
| * *
+----------------> Left-skewed (e.g., test scores):
^
* |
* | * | +---------------->


Hands-On / Getting Started


Prerequisites

  • Basic math (addition, division).
  • A calculator or spreadsheet (Excel, Google Sheets, Python).

Step-by-Step Example (Python)

import numpy as np

data = [5, 7, 8, 12, 100]

# Calculate mean and median
mean = np.mean(data)
median = np.median(data)

print(f"Mean: {mean}")    # Output: Mean: 26.4
print(f"Median: {median}") # Output: Median: 8.0

Expected Outcome

  • Understand how outliers distort the mean.
  • Learn when to prefer median for skewed data.


Common Pitfalls & Mistakes

  1. Using mean for skewed data.
  2. Mistake: Reporting "average" income in a city with billionaires.
  3. Fix: Use median for skewed distributions.

  4. Ignoring sample size.

  5. Mistake: Calculating mean/median for tiny datasets (e.g., 3 users).
  6. Fix: Ensure sample size is representative (n > 30 is a rule of thumb).

  7. Confusing median with mode.

  8. Mistake: Saying "median" when you mean "most common value."
  9. Fix: Remember: median = middle, mode = most frequent.

  10. Assuming symmetry.

  11. Mistake: Treating all data as normally distributed.
  12. Fix: Plot a histogram to check skewness.

  13. Overlooking missing data.

  14. Mistake: Calculating mean/median without handling NaN values.
  15. Fix: Clean data first (e.g., df.dropna() in Pandas).

Best Practices

  1. Always plot your data.
  2. Use histograms or box plots to spot skewness before choosing mean/median.

  3. Pair mean and median.

  4. Report both to highlight outliers (e.g., "Mean: $50k, Median: $35k").

  5. Use weighted averages when needed.

  6. Example: Calculating a course grade where exams count more than quizzes.

  7. Document your choice.

  8. Explain why you used mean or median in reports (e.g., "Median used due to right skew in housing prices").

  9. Test robustness.

  10. Remove top/bottom 5% of data and recalculate to see if results change drastically.

Tools & Frameworks

Tool Use Case Example Command/Function
Excel/Sheets Quick calculations =AVERAGE(A1:A10), =MEDIAN(A1:A10)
Python (NumPy) Data analysis np.mean(data), np.median(data)
Python (Pandas) Handling large datasets df['column'].mean(), df['column'].median()
R Statistical analysis mean(data), median(data)
SQL Database queries AVG(column), PERCENTILE_CONT(0.5) WITHIN GROUP (ORDER BY column)


Real-World Use Cases


1. Salary Negotiations

  • Problem: A job ad says "average salary: $120k," but most employees earn $80k.
  • Solution: Request the median salary to understand typical compensation.
  • Industry: HR, Recruiting.

2. Real Estate Pricing

  • Problem: A neighborhood’s "average" home price is $500k, but 60% of homes cost $300k–$400k.
  • Solution: Use median price to set realistic expectations.
  • Industry: Property development, mortgage lending.

3. A/B Testing

  • Problem: A website change increases "average" session duration from 2:00 to 2:30, but most users still leave in <1 minute.
  • Solution: Compare median session duration to see if the change helped the majority.
  • Industry: Product management, UX design.


Check Your Understanding (MCQs)


Question 1

A company’s 5 employees earn: $30k, $35k, $40k, $45k, and $150k. What’s the best measure to describe "typical" salary? - A) Mean - B) Median - C) Mode - D) Range

Correct Answer: B) Median Explanation: The median ($40k) better represents the typical salary because the $150k outlier skews the mean upward.
Why the Distractors Are Tempting:
- A) Mean is commonly used but misleading here due to the outlier.
- C) Mode is irrelevant (no repeated values).
- D) Range describes spread, not central tendency.


Question 2

You’re analyzing customer spending. The data is right-skewed (a few high spenders). Which measure should you use to report "average" spending? - A) Mean - B) Median - C) Standard deviation - D) Maximum value

Correct Answer: B) Median Explanation: Right-skewed data has a mean higher than the median. The median better reflects typical spending.
Why the Distractors Are Tempting:
- A) Mean is often the default but overestimates typical spending.
- C) Standard deviation measures spread, not central tendency.
- D) Maximum value is an extreme, not an average.


Question 3

A dataset has 100 values. The mean is 50, and the median is 45. What does this tell you about the data? - A) The data is symmetric.
- B) The data is left-skewed.
- C) The data is right-skewed.
- D) There are no outliers.

Correct Answer: C) The data is right-skewed.
Explanation: When mean > median, the data is right-skewed (a few large values pull the mean up).
Why the Distractors Are Tempting:
- A) Symmetric data has mean ≈ median.
- B) Left-skewed data has mean < median.
- D) Outliers are likely present but not guaranteed.


Learning Path

  1. Beginner:
  2. Learn to calculate mean/median manually.
  3. Practice with small datasets (e.g., 5–10 numbers).

  4. Intermediate:

  5. Use Python/Excel to analyze real-world data (e.g., salaries, housing prices).
  6. Plot histograms to visualize skewness.

  7. Advanced:

  8. Study robust statistics (e.g., trimmed mean, IQR).
  9. Apply to machine learning (e.g., outlier detection, feature engineering).

Further Resources


Books

  • Naked Statistics by Charles Wheelan (approachable intro).
  • OpenIntro Statistics (free PDF, practical examples).

Courses

Tools

  • Python: numpy, pandas, matplotlib (for plotting).
  • Excel: AVERAGE(), MEDIAN(), QUARTILE().
  • SQL: AVG(), PERCENTILE_CONT().

Communities

  • r/statistics (Reddit)
  • Cross Validated (Stack Exchange)


30-Second Cheat Sheet

  1. Mean = Sum / Count (sensitive to outliers).
  2. Median = Middle value (robust to outliers).
  3. Mean > Median → Right-skewed data.
  4. Mean < Median → Left-skewed data.
  5. Always plot your data before choosing mean/median.

Related Topics

  1. Standard Deviation & Variance: Measure data spread.
  2. Percentiles & Quartiles: Divide data into equal parts.
  3. Outlier Detection: Identify and handle extreme values.


ADVERTISEMENT