Skip to content
C.W.K.
Stream
Lesson 05 of 06 · published

Pareto Wealth: The Power Law That Runs the World

~11 min · pareto, wealth, inequality, power-law, real-world

Level 0Stats Novice
0 XP0/55 lessons0/14 achievements
0/100 XP to next level100 XP to go0% complete
"Wealth is strongly right-skewed, and its upper tail is often modeled as Pareto-like. Read the mean together with the median, percentiles, population, year, and data source."

Pareto's Original Observation

The Italian economist Vilfredo Pareto observed in the late 1800s that in Italy, roughly 20% of the population owned roughly 80% of the land. The '80/20 rule' got popularized far beyond its origins, but the upper tail of wealth is often modeled with a Pareto distribution. The full distribution is not one universal power law, and estimates vary with country, year, unit of analysis, and data source.

What This Means in Plain Numbers

Wealth shares vary substantially across countries, years, datasets, and units of analysis. A defensible report should provide a named source rather than treating the following rough ranges as universal:

  • The top 1% typically holds 30-45% of total household wealth.
  • The top 0.1% typically holds 10-25%.
  • The top 0.01% (the genuine ultra-wealthy) holds a meaningful share that varies more by country.
  • The bottom 50% typically holds 1-5% of total wealth.

Wealth data are typically right-skewed, so mean and median answer different questions. For Korea or any other country, compare a named dataset, year, household definition, and percentile table instead of assuming one universal ratio.

Why the Power Law Persists

Several mechanisms can contribute to persistent wealth concentration:

  1. Preferential attachment: wealth earns returns (interest, dividends, capital appreciation); having more wealth produces proportionally more new wealth.
  2. Inheritance: wealth concentration persists across generations because it transfers across them.
  3. Network effects: high-net-worth individuals access investment opportunities, tax structures, and risk-mitigation tools unavailable to the median household.

Returns to wealth, inheritance, networks, taxation, institutions, housing, debt, and policy all influence concentration. These mechanisms do not prove that one fixed power-law shape is a natural or inevitable attractor.

The Citizen Lens

For skewed income, wealth, or asset data, report the mean, median, and selected percentiles with their population and year. The mean is a real aggregate—not a dishonest number—but it should not be mislabeled as typical. The next time a headline cites a national average, inspect the empirical distribution rather than forcing it into a normal-versus-power-law binary.

Code

Synthetic Pareto wealth: mean vs median vs top-percentile·python
import numpy as np
rng = np.random.default_rng(220)

# Synthetic 'household wealth' for a country, drawn from a Pareto-like distribution.
N = 1_000_000     # one million synthetic households
alpha = 1.2       # power-law tail exponent
xmin = 10_000     # minimum household wealth
wealth = xmin * (1 + rng.pareto(alpha, size=N))

print(f"Synthetic country: {N:,} households")
print(f"\nMean wealth:    {wealth.mean():>15,.0f}")
print(f"Median wealth:  {np.median(wealth):>15,.0f}")
print(f"Top 10% threshold: {np.quantile(wealth, 0.90):>13,.0f}")
print(f"Top 1% threshold:  {np.quantile(wealth, 0.99):>13,.0f}")
print(f"Top 0.1% threshold: {np.quantile(wealth, 0.999):>12,.0f}")
print()
sorted_wealth = np.sort(wealth)[::-1]
for pct in (0.001, 0.01, 0.10, 0.50, 0.90):
    k = max(int(N * pct), 1)
    share = sorted_wealth[:k].sum() / wealth.sum()
    print(f"Top {pct*100:>5.1f}% hold {share*100:>5.1f}% of total wealth")

# Notice the gap between mean and median. A headline citing the mean as
# 'typical wealth' would be off by an order of magnitude. The honest reporting
# would name the median AND the top-percentile concentration.

External links

Exercise

Find a recent national income or wealth statistic. Record its source, year, unit of analysis, mean, median, and selected percentiles. Explain what each summary answers and whether weights, missing top wealth, debt, or household definitions affect the comparison.
Hint
A mean/median ratio is evidence of skew, not a universal cutoff proving a power law or making the mean dishonest.

Progress

Progress is local-only — sign in to sync across devices.
Spotted a bug or have feedback on this page?Report an Issue
💛 by Ttoriwarm

Comments 0

🔔 Reply notifications (sign in)
Sign inPlease sign in to comment.

No comments yet — be the first.