Pareto distribution
Encyclopedia : P : PA : PAR : Pareto distribution
\!]| cdf =[1-\left(\frac}\right)^k\!]| mean =[\frac}\!] for [k>1]| median =[x_\mathrm \sqrt[k]]| mode =[x_\mathrm\,]| variance =[\frac^2k}\!] for [k>2]| skewness =[\frac\,\sqrt}\!] for [k>3]| kurtosis =[\frac\!] for [k>4]| entropy =[\ln\left(\frac}\right) - \frac - 1\!]| mgf =undefined; see text for raw moments| char =[k(-ix_\mathrmt)^k\Gamma(-k,-ix_\mathrmt)\,]| }} The Pareto distribution, named after the Italian economist Vilfredo Pareto, is a power law probability distribution found in a large number of real-world situations. Outside the field of economics it is at times referred to as the Bradford distribution.
Pareto originally used this distribution to describe the allocation of wealth among individuals since it seemed to show rather well the way that a larger portion of the wealth of any society is owned by a smaller percentage of the people in that society. This idea is sometimes expressed more simply as the Pareto principle or the "80-20 rule" which says that 20% of the population owns 80% of the wealth. It can be seen from the probability density function (PDF) graph on the right, that the "probability" or fraction of the population [f(x)] that owns a small amount of wealth per person (x) is rather high, and then decreases steadily as wealth increases. This distribution is not limited to describing wealth or income distribution, but to many situations in which an equilibrium is found in the distribution of the "small" to the "large". The following examples are sometimes seen as approximately Pareto-distributed:
- Frequencies of words in longer texts
- The sizes of human settlements (few cities, many hamlets/villages)
- File size distribution of Internet traffic which uses the TCP protocol (many smaller files, few larger ones)
- Clusters of Bose-Einstein condensate near absolute zero
- The values of oil reserves in oil fields (a few large fields, many small fields)
- The length distribution in jobs assigned supercomputers (a few large ones, many small ones)
- The standardized price returns on individual stocks
- Sizes of sand particles
- Sizes of meteorites
- Numbers of species per genus (There is subjectivity involved: The tendency to divide a genus into two or more increases with the number of species in it)
- Areas burnt in forest fires
Properties
If X is a random variable with a Pareto distribution, then the probability that X is greater than some number x is given by
- [\Pr(X>x)=\left(\frac}\right)^]
It follows that the probability density function is
- [f(x;k,x_\mathrm) = k\,\frac^k}}\ \mbox\ x \ge x_\mathrm. \, ]
The expected value of a random variable following a Pareto distribution is
- [E(X)=\frac} \,]
- [\mathrm(X)=\left(\frac}\right)^2 \frac.]
- [\mu_n'=\frac^n}, \,]
- [\varphi(t;k,x_\mathrm)=k(-ix_\mathrm t)^k\Gamma(-k,-ix_\mathrm t),]
- [f(x;k,x_\mathrm)=\mathrm(\ln(x/x_\mathrm);k).\,]
- [\lim_ f(x;k,x_\mathrm)=\delta(x-x_\mathrm). \, ]
Pareto, Lorenz, and Gini
The Lorenz curve is often used to characterize income and wealth distributions. For any distribution, the Lorenz curve L(F) is written in terms of the PDF [(f(x))] or the CDF [(F(x))] as
- [L(F)=\frac}^xf(x)\,dx}}^\infty xf(x)\,dx}=\frac]
- [x(F)=\frac}}]
- [L(F) = 1-(1-F)^,\,]
The Gini coefficient is a measure of the deviation of the Lorenz curve from the equidistribution line which is a line connecting [0,0] and [1,1], which is shown in black (k = ∞) in the Lorenz plot on the right. Specifically, the Gini coefficient is twice the area between the Lorenz curve and the equidistribution line. The Gini coefficient for the Pareto distribution is then calculated to be
- [G = 1-2\int_0^1L(F)\,dF = \frac]
Parameter estimation
The likelihood function for the Pareto distribution parameters k and [x_\mathrm], given a sample [x = (x_1, x_2, \dots, x_n)], is
- [L(k, x_\mathrm) = \prod _ ^n ^k} }} = k^n x_\mathrm^ \prod _ ^n }}. \!]
- [\ell(k, x_\mathrm) = n \ln k + nk \ln x_\mathrm - (k + 1) \sum _ ^n . \!]
- [\widehat x_\mathrm = \min _i .]
- [\frac = \frac + n \ln x_\mathrm - \sum _ ^n = 0.]
- [\widehat k = \frac n \right)}}.]
Generating a random sample from Pareto distribution
Pareto distribution is not yet recognized by many programming languages. In actuarial field, Pareto distribution in widely used to estimate portfolio costs. As a matter of fact, it can be quite demanding to get data from this particular probability distribution. One can easily generate a random sample from Pareto distribution by mixing two random variables, which are usually built-in in many Statistical tools. The process is quite simple; one has to generate numbers from an exponential distribution with its lambda equal to randomly generated sample from a gamma distribution, with alpha and lambda respectively equal to the arguments of the initial Pareto distribution. Data generated from this process won't be translated from the origin to [x_\mathrm].
Example using
This code will generate n numbers from a Pareto distribution, with parameters [x_\mathrm] = lambda and [k] = alpha.
In this very specific example, these values will be set to
- n = 10
- alpha = 20
- lambda = 10
These are arbitrary values, used to show working R code
n <- 10 # number of randomly generated numbers
alpha <- 20 # Shape parameter of Pareto distribution
lambda <- 10 # Location parameter of Pareto distribution
X <- rexp(n,rgamma(n,shape=alpha,rate=lambda))
References
- Lorenz, M. O. (1905). Methods of measuring the concentration of wealth. Publications of the American Statistical Association. 9: 209-219.
See also
External links
- The Pareto, Zipf and other power laws / William J. Reed -- [PDF]
- Gini's Nuclear Family / Rolf Aabergé. -- In: [International Conference to Honor Two Eminent Social Scientists], May, 2005 -- [PDF]
n <- 10 # number of randomly generated numbers
alpha <- 20 # Shape parameter of Pareto distribution
lambda <- 10 # Location parameter of Pareto distribution
X <- rexp(n,rgamma(n,shape=alpha,rate=lambda))
From Wikipedia, the Free Encyclopedia. Original article here. Support Wikipedia by contributing or donating.
All text is available under the terms of the GNU Free Documentation License See Wikipedia Copyrights for details.
