n. Statistics
- See probability density.
- A function of a discrete random variable yielding the probability that the variable will have a given value.
| Dictionary: probability distribution |
| 5min Related Video: probability distribution |
| Statistics Dictionary: probability distribution |
A description of the possible values of a random variable, and of the probabilities of occurrence of these values. For a discrete random variable, see probability function. For a continuous random variable, see probability density function.
| Investment Dictionary: Probability Distribution |
A statistical function that describes all the possible values and likelihoods that a random variable can take within a given range. This range will be between the minimum and maximum statistically possible values, but where the possible value is likely to be plotted on the probability distribution depends on a number of factors, including the distributions mean, standard deviation, skewness and kurtosis.
Investopedia Says:
Academics and fund managers alike may determine a particular stock's probability distribution to determine the possible returns that the stock may yield in the future. The stock's history of returns, which can be measured on any time interval, will likely be comprised of only a fraction of the stock's returns, which will subject the analysis to sampling error. By increasing the sample size, this error can be dramatically reduced.
There are many different classifications of probability distributions, including the chi square, and normal and binomial distributions.
Related Links:
Learn how to illustrate an asset return's sensitivity. Find The Right Fit With Probability Distributions
This technique can reduce uncertainty in estimating future outcomes. Introduction To Monte Carlo Simulation
Volatility is not the only way to measure risk. Learn about the "new science of risk management". Introduction to Value at Risk (VAR) - Part 1
| Insurance Dictionary: Probability Distribution |
Outcomes of an experiment and their probabilities of occurrence. If the experiment were to be repeated any number of times, the same probabilities should also repeat. For example, the probability distribution for the possible number of heads from two tosses of a fair coin having both a head and a tail would be as follows:
Number of Heads Tosses Probability of Event
0 (tail, tail) .25
1 (head, tail) +
(tail, head) .50
2 (head, head) .25
| Wikipedia: Probability distribution |
| This article relies largely or entirely upon a single source. Please help improve this article by introducing appropriate citations of additional sources. (November 2008) |
In probability theory and statistics, a probability distribution identifies either the probability of each value of an unidentified random variable (when the variable is discrete), or the probability of the value falling within a particular interval (when the variable is continuous).[1] The probability distribution describes the range of possible values that a random variable can attain and the probability that the value of the random variable is within any (measurable) subset of that range.
When the random variable takes values in the set of real numbers, the probability distribution is completely described by the cumulative distribution function, whose value at each real x is the probability that the random variable is smaller than or equal to x.
The concept of the probability distribution and the random variables which they describe underlies the mathematical discipline of probability theory, and the science of statistics. There is spread or variability in almost any value that can be measured in a population (e.g. height of people, durability of a metal, etc.); almost all measurements are made with some intrinsic error; in physics many processes are described probabilistically, from the kinetic properties of gases to the quantum mechanical description of fundamental particles. For these and many other reasons, simple numbers are often inadequate for describing a quantity, while probability distributions are often more appropriate.
There are various probability distributions that show up in various different applications. One of the more important ones is the normal distribution, which is also known as the Gaussian distribution or the bell curve and approximates many different naturally occurring distributions. The toss of a fair coin yields another familiar distribution, where the possible values are heads or tails, each with probability 1/2.
Contents |
In the measure-theoretic formalization of probability theory, a random variable is defined as a measurable function X from a probability space
to its observation space
. A probability distribution is the pushforward measure X*P = PX −1 on
.
In other words, a probability distribution is a probability measure over the observation space instead of the underlying probability space.
Because a probability distribution Pr on the real line is determined by the probability of a real-valued random variable X being in a half-open interval (-∞, x], the probability distribution is completely characterized by its cumulative distribution function:
![F(x) = \Pr \left[ X \le x \right] \qquad \forall x \in \mathbb{R}.](http://wpcontent.answers.com/math/6/e/5/6e5ecb80a21894d0b63c8b60156258da.png)
A probability distribution is called discrete if its cumulative distribution function only increases in jumps. More precisely, a probability distribution is discrete if there is a finite or countable set whose probability is 1.
For many familiar discrete distributions, the set of possible values is topologically discrete in the sense that all its points are isolated points. But, there are discrete distributions for which this countable set is dense on the real line.
Discrete distributions are characterized by a probability mass function, p such that
![\Pr \left[X = x \right] = p(x).](http://wpcontent.answers.com/math/d/1/2/d124a35cf09eac55a869e9c1bfa23e18.png)
By one convention, a probability distribution
is called continuous if its cumulative distribution function
is continuous and, therefore, the probability measure of singletons
for all
.
Another convention reserves the term continuous probability distribution for absolutely continuous distributions. These distributions can be characterized by a probability density function: a non-negative Lebesgue integrable function
defined on the real numbers such that
![F(x) = \mu(-\infty,x] = \int_{-\infty}^x f(t)\,dt.](http://wpcontent.answers.com/math/4/1/8/41882dedea3ba5430b8267370c175c4d.png)
Discrete distributions and some continuous distributions (like the Cantor distribution) do not admit such a density.
The support of a distribution is the smallest closed interval/set whose complement has probability zero. It may be understood as the points or elements that are actual members of the distribution.
A discrete random variable is a random variable whose probability distribution is discrete. Similarly, a continuous random variable is a random variable whose probability distribution is continuous.
If one is programming and one wishes to sample from a probability distribution (either discrete or continuous), the following algorithm lets one do so. This algorithm assumes that one has access to the inverse of the cumulative distribution (easy to calculate with a discrete distribution, can be approximated for continuous distributions) and a computational primitive called "random()" which returns an arbitrary-precision floating-point-value in the range of [0,1).
define function sampleFrom(cdfInverse (type="function")):
// input:
// cdfInverse(x) - the inverse of the CDF of the probability distribution
// example: if distribution is [[Gaussian]], one can use a [[Taylor approximation]] of the inverse of [[erf]](x)
// example: if distribution is discrete, see explanation below pseudocode
// output:
// type="real number" - a value sampled from the probability distribution represented by cdfInverse
r = random()
while(r == 0): (make sure r is not equal to 0; discontinuity possible)
r = random()
return cdfInverse(r)
For discrete distributions, the function cdfInverse (inverse of cumulative distribution function) can be calculated from samples as follows: for each element in the sample range (discrete values along the x-axis), calculating the total samples before it. Normalize this new discrete distribution. This new discrete distribution is the CDF, and can be turned into an object which acts like a function: calling cdfInverse(query) returns the greatest x-value such that the CDF is less than the query.
define function dataToCdfInverse(discreteDistribution (type="dictionary"))
// input:
// discreteDistribution - a mapping from possible values to frequencies/probabilities
// example: {0 -> 1-p, 1 -> p} would be a [[Bernoulli distribution]] with chance=p
// example: setting p=0.5 in the above example, this is a [[fair coin]] where P(X=1)->"heads" and P(X=0)->"tails"
// output:
// type="function" - a function that represents (CDF^-1)(x)
define function cdfInverse(x):
integral = 0
go through mapping (key->value) in sorted order, adding value to integral...
stop when integral > x (or integral >= x, doesn't matter)
return last key we added
return cdfInverse
Note that often, mathematics environments and computer algebra systems will have some way to represent probability distributions and sample from them. This functionality might even have been developed in third-party libraries. Such packages greatly facilitate such sampling, most likely have optimizations for common distributions, and are likely to be more elegant than the above bare-bones solution.
| Wikimedia Commons has media related to: Probability distribution |
|
|||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||
This entry is from Wikipedia, the leading user-contributed encyclopedia. It may not have been reviewed by professional editors (see full disclaimer)
| contagious distribution (statistics) | |
| continuous distribution | |
| lognormal distribution (statistics) |
| How does a discrete probability distribution differ from a continuous probability distribution? Read answer... | |
| The variance for the binomial probability distribution is? Read answer... | |
| In the discrete probability distribution what is the sum of all probabilities? Read answer... |
| What are the limitations of probability distribution? | |
| What are the uses of chauchy probability distribution? | |
| What is the role of probability distribution in multivariate? |
Copyrights:
![]() | Dictionary. The American Heritage® Dictionary of the English Language, Fourth Edition Copyright © 2007, 2000 by Houghton Mifflin Company. Updated in 2009. Published by Houghton Mifflin Company. All rights reserved. Read more | |
![]() | Statistics Dictionary. A Dictionary of Statistics. Second edition revised. Copyright © Oxford University Press, 2008. All rights reserved. Read more | |
![]() | Investment Dictionary. Copyright ©2000, Investopedia.com - Owned and Operated by Investopedia Inc. All rights reserved. Read more | |
![]() | Insurance Dictionary. Dictionary of Insurance Terms. Copyright © 2000 by Barron's Educational Series, Inc. All rights reserved. Read more | |
![]() | Wikipedia. This article is licensed under the Creative Commons Attribution/Share-Alike License. It uses material from the Wikipedia article "Probability distribution". Read more |
Mentioned in