← Back to Paradoxes

📊 Benford's Law

The mysterious pattern in the first digits of natural numbers

THE LAW

In naturally occurring datasets, the digit 1 appears as the first digit 30.1% of the time, while 9 appears only 4.6%! This pattern is so reliable it's used to detect fraud in financial data.

Benford's Law (Expected)
Observed Data

Select a Dataset

Choose a dataset from the right panel to see how well it follows Benford's Law.

📁 Choose Dataset
Benford's Formula
P(d) = log₁₀(1 + 1/d)
Conformity Score
-
Digit 123456789
Expected 30.1%17.6%12.5%9.7%7.9%6.7%5.8%5.1%4.6%

💡 Why Does This Happen?

Numbers that grow exponentially spend more "time" with leading digit 1. To go from 1→2 requires 100% growth, but 8→9 only needs 12.5% growth. On a logarithmic scale, 1 occupies the largest range!

📜 The Worn Logarithm Pages (1881)

Astronomer Simon Newcomb noticed that logarithm tables had pages starting with 1 much more worn than pages starting with 8 or 9.

He deduced that scientists looked up numbers beginning with 1 far more often—because such numbers are far more common in nature!

The law was rediscovered by physicist Frank Benford in 1938, who tested it across 20 different domains.

📐 The Logarithmic Scale Explanation

On a logarithmic scale, intervals are proportional to ratios, not differences.

1
2
3
4
5
6
7
8
9

The segment from 1 to 2 (log₁₀2 ≈ 0.301) is much larger than 9 to 10 (log₁₀(10/9) ≈ 0.046)!

🔍 Fraud Detection

When humans fabricate numbers, they don't naturally follow Benford's Law. They tend to:

  • Use too many 5s, 6s, 7s (seems "random")
  • Avoid 1s (seems "too small")
  • Create suspiciously uniform distributions
🚔 Real Case: Bernie Madoff

Analysis showed his reported returns deviated significantly from Benford's Law—a red flag that went unnoticed for years.

✅ When Benford's Law Applies

The law works when data:

  • Spans several orders of magnitude
  • Arises from multiplicative processes
  • Has no artificial min/max constraints
  • Is measured, not assigned

Applies: Populations, stock prices, river lengths, physical constants, tax data

Doesn't apply: Phone numbers, ZIP codes, IQ scores, dice rolls

⚖️ Legal Acceptance

Benford's Law analysis is admissible as evidence in U.S. courts at federal, state, and local levels.

Notable cases:

  • Wesley Rhodes: Convicted of fraud using Benford analysis
  • Enron: Financial irregularities detected
  • Greece EU application: Suspicious economic data flagged

🎯 The Mathematical Formula

The probability that d is the first digit:

P(d) = log₁₀(1 + 1/d)

For d = 1: log₁₀(2) ≈ 0.301 = 30.1%

For d = 9: log₁₀(10/9) ≈ 0.046 = 4.6%