Share on Facebook Share on Twitter Email
Answers.com

Median

 

The midpoint of the range numbers that are arranged in order of value.

Investopedia Says:
If there are an even amount of numbers in the series, the median is found by taking the mean of the two numbers in the middle of the distribution. 50% of the numbers will be above the median and 50% will be below. In this odd set of numbers--1, 3, 5, 5, 5, 6, 7, 8,12, 13, 25--the median would be 6 because half of the other numbers are below it, and half are above it. Alternatively if you had the following set of numbers--23 23 24 25 26 28 42 44--the median would be 25.5 (26+25/2=25.5).

In certain cases, the median can be a good way to determine an approximate average, especially when dealing with a set of numbers that could otherwise be skewed by outliers, such as the number 25 in the first set.


Search unanswered questions...
Enter a question here...
Search: All sources Community Q&A Reference topics

Midway value between two points. There are an equal number of points above and below the median. For example, the number 5 is the median between the numbers 1 and 9, since there are 4 numbers above and below 5 in this sequence. Several important economic numbers use medians, including median household income and median home price.

Middle value in a range of values arranged in sequence by size. For example the median of 6, 3, 9, 2, 12, 3, 54 is 6, determined by arranging the numbers in the following sequence: 2, 3, 3, 6, 9, 12, 54. A median can give a good feel for the range of a set of values, such as a median value of $50 for catalog orders, indicating that half the purchases made were more (or less) than $50. See also mean; mode.

Value of the midpoint variable when the data are arranged in ascending or descending order. For example, in the following data set: 2, 3, 4, 8, 8, the median is the value of the third variable since there are two variables above it and two variables below it. Therefore, the median of the five variables is 4.

Wikipedia: Median
Top

In probability theory and statistics, a median is described as the number separating the higher half of a sample, a population, or a probability distribution, from the lower half. The median of a finite list of numbers can be found by arranging all the observations from lowest value to highest value and picking the middle one. If there is an even number of observations, then there is no single middle value, so one often takes the mean of the two middle values. The median may not be unique, as there may be a number of observations with the same value occupying the middle range of a distribution. At most half the population have values less than the median and at most half have values greater than the median. If both groups contain less than half the population, then some of the population is exactly equal to the median. For example, if a < b < c, then the median of the list {abc} is b, and if a < b < c < d, then the median of the list {abcd} is the mean of b and c, i.e. it is (b + c)/2.

The median can be used when a distribution is skewed, when end values are not known, or when less importance is attached to outliers, e.g. because they may be measurement errors. A disadvantage is the difficulty of handling it theoretically.[citation needed]

Contents

Notation

The median of some variable x is denoted either as \tilde{x} or as \mu_{1/2}(x)\,\!.[1]

Measures of statistical dispersion

When the median is used as a location parameter in descriptive statistics, there are several choices for a measure of variability: the range, the interquartile range, the mean absolute deviation, and the median absolute deviation. Since the median is the same as the second quartile, its calculation is illustrated in the article on quartiles.

Working with computers, a population of integers should have an integer median. Thus, for an integer population with an even number of elements, there are two medians known as lower median and upper median[citation needed]. For floating point population, the median lies somewhere between the two middle elements, depending on the distribution[citation needed]. Median is the middle value after arranging data by any order[citation needed].

Medians of probability distributions

For any probability distribution on the real line with cumulative distribution function F, regardless of whether it is any kind of continuous probability distribution, in particular an absolutely continuous distribution (and therefore has a probability density function), or a discrete probability distribution, a median m satisfies the inequalities

\operatorname{P}(X\leq m) \geq \frac{1}{2}\text{ and }\operatorname{P}(X\geq m) \geq \frac{1}{2}\,\!

or

\int_{-\infty}^m \mathrm{d}F(x) \geq \frac{1}{2}\text{ and }\int_m^{\infty} \mathrm{d}F(x) \geq \frac{1}{2}\,\!

in which a Lebesgue–Stieltjes integral is used. For an absolutely continuous probability distribution with probability density function ƒ, we have

\operatorname{P}(X\leq m) = \operatorname{P}(X\geq m)=\int_{-\infty}^m f(x)\, \mathrm{d}x=\frac{1}{2}.\,\!

Medians of particular distributions: The medians of certain types of distributions can be easily calculated from their parameters: The median of a normal distribution with mean μ and variance σ2 is μ. In fact, for a normal distribution, mean = median = mode. The median of a uniform distribution in the interval [ab] is (a + b) / 2, which is also the mean. The median of a Cauchy distribution with location parameter x0 and scale parameter y is x0, the location parameter. The median of an exponential distribution with rate parameter λ is the natural logarithm of 2 divided by the rate parameter: λ−1ln 2. The median of a Weibull distribution with shape parameter k and scale parameter λ is λ(ln 2)1/k.

Medians in descriptive statistics

The median is primarily used for skewed distributions, which it summarizes differently than the arithmetic mean. Consider the multiset { 1, 2, 2, 2, 3, 9 }. The median is 2 in this case, as is the mode, and it might be seen as a better indication of central tendency than the arithmetic mean of 3.166.

Calculation of medians is a popular technique in summary statistics and summarizing statistical data, since it is simple to understand and easy to calculate, while also giving a measure that is more robust in the presence of outlier values than is the mean.

Theoretical properties

An optimality property

The median is also the central point which minimizes the average of the absolute deviations; in the example above this would be (1 + 0 + 0 + 0 + 1 + 7) / 6 = 1.5 using the median, while it would be 1.944 using the mean. In the language of probability theory, the value of c that minimizes

E(\left|X-c\right|)\,

is the median of the probability distribution of the random variable X. Note, however, that c is not always unique, and therefore not well defined in general.

An inequality relating means and medians

For continuous probability distributions, the difference between the median and the mean is less than or equal to one standard deviation. See an inequality on location and scale parameters.

The sample median

Efficient computation of the sample median

Even though sorting n items takes in general O(n log n) operations, by using a "divide and conquer" algorithm the median of n items can be computed with only O(n) operations (in fact, you can always find the k-th element of a list of values with this method; this is called the selection problem).

Easy explanation of the sample median

For an odd number of values

As an example, we will calculate the median of the following population of numbers: 1, 5, 2, 8, 7.

Start by sorting the numbers: 1, 2, 5, 7, 8.

In this case, 5 is the median, because when the numbers are sorted, it is the middle number.

Other estimates of the median

If data are represented by a statistical model specifying a particular family of probability distributions, then estimates of the median can be obtained by fitting that family of probability distributions to the data and calculating the theoretical median of the fitted distribution. See, for example Pareto interpolation.

Median-unbiased estimators, and bias with respect to loss functions

Any mean-unbiased estimator minimizes the risk (expected loss) with respect to the squared-error loss function, as observed by Gauss. A median-unbiased estimator minimizes the risk with respect to the absolute-deviation loss function, as observed by Laplace. Other loss functions are used in statistical theory, particularly in robust statistics.

The theory of median-unbiased estimators was revived by George W. Brown in 1947:

An estimate of a one-dimensional parameter θ will be said to be median-unbiased, if for fixed θ, the median of the distribution of the estimate is at the value θ, i.e., the estimate underestimates just as often as it overestimates. This requirement seems for most purposes to accomplish as much as the mean-unbiased requirement and has the additional property that it is invariant under one-to-one transformation. [page 584]

Further properties of median-unbiased estimators have been noted by Lehmann, Birnbaum, van der Vaart and Pfanzagl. In particular, median-unbiased estimators exist in cases where mean-unbiased and maximum-likelihood estimators do not exist. Besides being invariant under one-to-one transformations, median-unbiased estimators have surprising robustness.

In image processing

In monochrome raster images there is a type of noise, known as the salt and pepper noise, when each pixel independently become black (with some small probability) or white (with some small probability), and is unchanged otherwise (with the probability close to 1). An image constructed of median values of neighborhoods (like 3×3 square) can effectively reduce a noise in this case.

In discrete high-dimensional statistical inference

In discrete high-dimensional statistical inference, the value c that minimizes

E(\left|X-c\right|)

is also called a centroid.[2] A medoid is sometimes used when a centroid cannot be defined, it relates to the centroid like the median to the mean.

History

Gustav Fechner popularized the median into the formal analysis of data, although it had been used previously by Laplace. [3]

See also

References

  1. ^ http://mathworld.wolfram.com/StatisticalMedian.html
  2. ^ Carvalho, Luis; Lawrence, Charles (2008), "Centroid estimation in discrete high-dimensional spaces with applications in biology", Proc Natl Acad Sci U S A 105 (9): 3209-3214, doi:10.1073/pnas.0712329105 
  3. ^ Keynes, John Maynard; A Treatise on Probability (1921), Pt II Ch XVII §5 (p 201).
  • Brown, George W. ”On Small-Sample Estimation.” The Annals of Mathematical Statistics, Vol. 18, No. 4 (Dec., 1947), pp. 582–585.
  • Lehmann, E. L. “A General Concept of Unbiasedness” The Annals of Mathematical Statistics, Vol. 22, No. 4 (Dec., 1951), pp. 587–592.
  • Allan Birnbaum. 1961. “A Unified Theory of Estimation, I”, The Annals of Mathematical Statistics, Vol. 32, No. 1 (Mar., 1961), pp. 112–135
  • van der Vaart, H. R. 1961. “Some Extensions of the Idea of Bias” The Annals of Mathematical Statistics, Vol. 32, No. 2 (Jun., 1961), pp. 436–447.
  • Pfanzagl, Johann. 1994. Parametric Statistical Theory. Walter de Gruyter.

External links

This article incorporates material from Median of a distribution on PlanetMath, which is licensed under the Creative Commons Attribution/Share-Alike License.


 
 

 

Copyrights:

Investment Dictionary. Copyright ©2000, Investopedia.com - Owned and Operated by Investopedia Inc. All rights reserved.  Read more
Financial & Investment Dictionary. Dictionary of Finance and Investment Terms. Copyright © 2006 by Barron's Educational Series, Inc. All rights reserved.  Read more
Marketing Dictionary. Dictionary of Marketing Terms. Copyright © 2000 by Barron's Educational Series, Inc. All rights reserved.  Read more
Accounting Dictionary. Dictionary of Accounting Terms. Copyright © 2005 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 "Median" Read more