EasyDeepLearn

What is a power-law distribution and how do you spot one?

medium

Answer

  • P(X > x) ∝ x^(-α) for large x.
  • Very heavy right tail — a few extreme observations dominate the mean.
  • Examples: word frequencies, city sizes, wealth, network degree distributions (Zipf's / Pareto's law).
  • Spot them by plotting log(rank)\operatorname{log}(\operatorname{rank}) vs log(size)\operatorname{log}(\mathrm{size}) — a straight line indicates power law.
  • Consequences: sample means are unstable, need heavy-tailed methods (median, quantile regression, robust stats).
Check yourself — multiple choice
  • Very light tail
  • P(X>x) ∝ x^(-α); heavy right tail; identified via log-log plot; median/robust stats needed
  • Symmetric
  • Same as normal

Power law: heavy tail; log-log linear; needs robust stats.

#distributions

Practise Statistics Fundamentals

215 interview questions in this topic.

Related questions