In statistics, mean has two related meanings:

There are other statistical measures that should not be confused with averages - including 'median' and 'mode'. Other simple statistical analyses use measures of spread, such as range, interquartile range, or standard deviation. For a real-valued random variable X, the mean is the expectation of X. Note that not every probability distribution has a defined mean (or variance); see the Cauchy distribution for an example.

For a data set, the mean is the sum of the values divided by the number of values. The mean of a set of numbers x1, x2, ..., xn is typically denoted by Failed to parse (Missing texvc executable; please see math/README to configure.): \bar{x} , pronounced "x bar". This mean is a type of arithmetic mean. If the data set were based on a series of observations obtained by sampling a statistical population, this mean is termed the "sample mean" (Failed to parse (Missing texvc executable; please see math/README to configure.): \bar{x} ) to distinguish it from the "population mean" (Failed to parse (Missing texvc executable; please see math/README to configure.): \mu or Failed to parse (Missing texvc executable; please see math/README to configure.): \mu x). The mean is often quoted along with the standard deviation: the mean describes the central location of the data, and the standard deviation describes the spread. An alternative measure of dispersion is the mean deviation, equivalent to the average absolute deviation from the mean. It is less sensitive to outliers, but less mathematically tractable.

If a series of observations is sampled from a larger population (measuring the heights of a sample of adults drawn from the entire world population, for example), or from a probability distribution which gives the probabilities of each possible result, then the larger population or probability distribution can be used to construct a "population mean", which is also the expected value for a sample drawn from this population or probability distribution. For a finite population, this would simply be the arithmetic mean of the given property for every member of the population. For a probability distribution, this would be a sum or integral over every possible value weighted by the probability of that value. It is a universal convention to represent the population mean by the symbol Failed to parse (Missing texvc executable; please see math/README to configure.): \mu .[1] In the case of a discrete probability distribution, the mean of a discrete random variable x is given by taking the product of each possible value of x and its probability P(x), and then adding all these products together, giving Failed to parse (Missing texvc executable; please see math/README to configure.): \mu = \sum x P(x) .[2]

The sample mean may differ from the population mean, especially for small samples, but the law of large numbers dictates that the larger the size of the sample, the more likely it is that the sample mean will be close to the population mean.[3]

As well as statistics, means are often used in geometry and analysis; a wide range of means have been developed for these purposes, which are not much used in statistics. These are listed below.

Contents

Examples of means [link]

Arithmetic mean (AM) [link]

The arithmetic mean is the "standard" average, often simply called the "mean".

Failed to parse (Missing texvc executable; please see math/README to configure.): \bar{x} = \frac{1}{n}\cdot \sum_{i=1}^n{x_i}


For example, the arithmetic mean of five values: 4, 36, 45, 50, 75 is

Failed to parse (Missing texvc executable; please see math/README to configure.): \frac{4 + 36 + 45 + 50 + 75}{5} = \frac{210}{5} = 42.


Comparison of the arithmetic mean, median and mode of two skewed (log-normal) distributions.

The mean may often be confused with the median, mode or range. The mean is the arithmetic average of a set of values, or distribution; however, for skewed distributions, the mean is not necessarily the same as the middle value (median), or the most likely (mode). For example, mean income is skewed upwards by a small number of people with very large incomes, so that the majority have an income lower than the mean. By contrast, the median income is the level at which half the population is below and half is above. The mode income is the most likely income, and favors the larger number of people with lower incomes. The median or mode are often more intuitive measures of such data.

Nevertheless, many skewed distributions are best described by their mean – such as the exponential and Poisson distributions.

Geometric mean (GM) [link]

The geometric mean is an average that is useful for sets of positive numbers that are interpreted according to their product and not their sum (as is the case with the arithmetic mean) e.g. rates of growth.

Failed to parse (Missing texvc executable; please see math/README to configure.): \bar{x} = \left ( \prod_{i=1}^n{x_i} \right ) ^\tfrac1n


For example, the geometric mean of five values: 4, 36, 45, 50, 75 is:

Failed to parse (Missing texvc executable; please see math/README to configure.): (4 \times 36 \times 45 \times 50 \times 75)^{^1/_5} = \sqrt[5]{24\;300\;000} = 30.


Harmonic mean (HM) [link]

The harmonic mean is an average which is useful for sets of numbers which are defined in relation to some unit, for example speed (distance per unit of time).

Failed to parse (Missing texvc executable; please see math/README to configure.): \bar{x} = n \cdot \left ( \sum_{i=1}^n \frac{1}{x_i} \right ) ^{-1}


For example, the harmonic mean of the five values: 4, 36, 45, 50, 75 is

Failed to parse (Missing texvc executable; please see math/README to configure.): \frac{5}{\tfrac{1}{4}+\tfrac{1}{36}+\tfrac{1}{45} + \tfrac{1}{50} + \tfrac{1}{75}} = \frac{5}{\;\tfrac{1}{3}\;} = 15.


Relationship between AM, GM, and HM [link]

AM, GM, and HM satisfy these inequalities:

Failed to parse (Missing texvc executable; please see math/README to configure.): AM \ge GM \ge HM \,


Equality holds only when all the elements of the given sample are equal.

Generalized means [link]

Power mean [link]

The generalized mean, also known as the power mean or Hölder mean, is an abstraction of the quadratic, arithmetic, geometric and harmonic means. It is defined for a set of n positive numbers xi by

Failed to parse (Missing texvc executable; please see math/README to configure.): \bar{x}(m) = \left ( \frac{1}{n}\cdot\sum_{i=1}^n{x_i^m} \right ) ^\tfrac1m


By choosing different values for the parameter m, the following types of means are obtained:

Failed to parse (Missing texvc executable; please see math/README to configure.): m\rightarrow\infty maximum
Failed to parse (Missing texvc executable; please see math/README to configure.): m=2 quadratic mean
Failed to parse (Missing texvc executable; please see math/README to configure.): m=1 arithmetic mean
Failed to parse (Missing texvc executable; please see math/README to configure.): m\rightarrow0 geometric mean
Failed to parse (Missing texvc executable; please see math/README to configure.): m=-1 harmonic mean
Failed to parse (Missing texvc executable; please see math/README to configure.): m\rightarrow-\infty minimum

[edit] ƒ-mean

This can be generalized further as the generalized f-mean

Failed to parse (Missing texvc executable; please see math/README to configure.): \bar{x} = f^{-1}\left({\frac{1}{n}\cdot\sum_{i=1}^n{f(x_i)}}\right)


and again a suitable choice of an invertible ƒ will give

Failed to parse (Missing texvc executable; please see math/README to configure.): f(x) = x arithmetic mean,
Failed to parse (Missing texvc executable; please see math/README to configure.): f(x) = \frac{1}{x} harmonic mean,
Failed to parse (Missing texvc executable; please see math/README to configure.): f(x) = x^m power mean,
Failed to parse (Missing texvc executable; please see math/README to configure.): f(x) = \ln x geometric mean.

Weighted arithmetic mean [link]

The weighted arithmetic mean (or weighted average) is used, if one wants to combine average values from samples of the same population with different sample sizes:

Failed to parse (Missing texvc executable; please see math/README to configure.): \bar{x} = \frac{\sum_{i=1}^n{w_i \cdot x_i}}{\sum_{i=1}^n {w_i}}.


The weights Failed to parse (Missing texvc executable; please see math/README to configure.): w_i

represent the bounds of the partial sample. In other applications they represent a measure for the reliability of the influence upon the mean by respective values.

Truncated mean [link]

Sometimes a set of numbers might contain outliers, i.e. a datum which is much lower or much higher than the others. Often, outliers are erroneous data caused by artifacts. In this case one can use a truncated mean. It involves discarding given parts of the data at the top or the bottom end, typically an equal amount at each end, and then taking the arithmetic mean of the remaining data. The number of values removed is indicated as a percentage of total number of values.

Interquartile mean [link]

The interquartile mean is a specific example of a truncated mean. It is simply the arithmetic mean after removing the lowest and the highest quarter of values.

Failed to parse (Missing texvc executable; please see math/README to configure.): \bar{x} = {2 \over n} \sum_{i=(n/4)+1}^{3n/4}{x_i}

assuming the values have been ordered, so is simply a specific example of a weighted mean for a specific set of weights.

Mean of a function [link]

In calculus, and especially multivariable calculus, the mean of a function is loosely defined as the average value of the function over its domain. In one variable, the mean of a function f(x) over the interval (a,b) is defined by

Failed to parse (Missing texvc executable; please see math/README to configure.): \bar{f}=\frac{1}{b-a}\int_a^bf(x)\,dx.


Recall that a defining property of the average value Failed to parse (Missing texvc executable; please see math/README to configure.): \bar{y}

of finitely many numbers Failed to parse (Missing texvc executable; please see math/README to configure.): y_1, y_2, \dots, y_n

is that Failed to parse (Missing texvc executable; please see math/README to configure.): n\bar{y} = y_1 + y_2 + \cdots + y_n . In other words, Failed to parse (Missing texvc executable; please see math/README to configure.): \bar{y}

is the constant value which when

added to itself Failed to parse (Missing texvc executable; please see math/README to configure.): n

times equals the result of adding the Failed to parse (Missing texvc executable; please see math/README to configure.): n
terms of Failed to parse (Missing texvc executable; please see math/README to configure.): y_i

. By analogy, a defining property of the average value Failed to parse (Missing texvc executable; please see math/README to configure.): \bar{f}

of a function over the interval Failed to parse (Missing texvc executable; please see math/README to configure.): [a,b]
is that
Failed to parse (Missing texvc executable; please see math/README to configure.): \int_a^b\bar{f}\,dx = \int_a^bf(x)\,dx


In other words, Failed to parse (Missing texvc executable; please see math/README to configure.): \bar{f}

is the constant value which when integrated over Failed to parse (Missing texvc executable; please see math/README to configure.): [a,b]
equals the result of

integrating Failed to parse (Missing texvc executable; please see math/README to configure.): f(x)

over Failed to parse (Missing texvc executable; please see math/README to configure.): [a,b]

. But by the second fundamental theorem of calculus, the integral of a constant Failed to parse (Missing texvc executable; please see math/README to configure.): \bar{f}

is just
Failed to parse (Missing texvc executable; please see math/README to configure.): \int_a^b\bar{f}\,dx = \bar{f}x\bigr|_a^b = \bar{f}b - \bar{f}a = (b - a)\bar{f}


See also the first mean value theorem for integration, which guarantees that if Failed to parse (Missing texvc executable; please see math/README to configure.): f

is continuous then there exists a point Failed to parse (Missing texvc executable; please see math/README to configure.): c \in (a, b)
such that
Failed to parse (Missing texvc executable; please see math/README to configure.): \int_a^bf(x)\,dx = f(c)(b - a)


The point Failed to parse (Missing texvc executable; please see math/README to configure.): f(c)

is called the mean value of Failed to parse (Missing texvc executable; please see math/README to configure.): f(x)
on Failed to parse (Missing texvc executable; please see math/README to configure.): [a,b]

. So we write Failed to parse (Missing texvc executable; please see math/README to configure.): \bar{f} = f(c)

and rearrange the preceding equation to get the above definition.

In several variables, the mean over a relatively compact domain U in a Euclidean space is defined by

Failed to parse (Missing texvc executable; please see math/README to configure.): \bar{f}=\frac{1}{\hbox{Vol}(U)}\int_U f.


This generalizes the arithmetic mean. On the other hand, it is also possible to generalize the geometric mean to functions by defining the geometric mean of f to be

Failed to parse (Missing texvc executable; please see math/README to configure.): \exp\left(\frac{1}{\hbox{Vol}(U)}\int_U \log f\right).


More generally, in measure theory and probability theory either sort of mean plays an important role. In this context, Jensen's inequality places sharp estimates on the relationship between these two different notions of the mean of a function.

There is also a harmonic average of functions and a quadratic average (or root mean square) of functions.

Mean of a probability distribution [link]

See expected value.

Mean of angles [link]

Most of the usual means fail on circular quantities, like angles, daytimes, fractional parts of real numbers. For those quantities you need a mean of circular quantities.

Fréchet mean [link]

The Fréchet mean gives a manner for determining the "center" of a mass distribution on a surface or, more generally, Riemannian manifold. Unlike many other means, the Fréchet mean is defined on a space whose elements cannot necessarily be added together or multiplied by scalars. It is sometimes also known as the Karcher mean (named after Hermann Karcher).

Other means [link]

Properties [link]

All means share some properties and additional properties are shared by the most common means. Some of these properties are collected here.

Weighted mean [link]

A weighted mean M is a function which maps tuples of positive numbers to a positive number

Failed to parse (Missing texvc executable; please see math/README to configure.): M : (0,\infty)^n \to (0,\infty)

such that the following properties hold:

  • "Fixed point": M(1,1,...,1) = 1
  • Homogeneity: Mx1, ..., λ xn) = λ M(x1, ..., xn) for all λ and xi. In vector notation: Mx) = λ Mx for all n-vectors x.
  • Monotonicity: If xi ≤ yi for each i, then MxMy

It follows

  • Boundedness: min xMx ≤ max x
  • Continuity: Failed to parse (Missing texvc executable; please see math/README to configure.): \lim_{x\to y} M x = M y
  • There are means which are not differentiable. For instance, the maximum number of a tuple is considered a mean (as an extreme case of the power mean, or as a special case of a median), but is not differentiable.
  • All means listed above, with the exception of most of the Generalized f-means, satisfy the presented properties.
    • If f is bijective, then the generalized f-mean satisfies the fixed point property.
    • If f is strictly monotonic, then the generalized f-mean satisfy also the monotony property.
    • In general a generalized f-mean will miss homogeneity.

The above properties imply techniques to construct more complex means:

If C, M1, ..., Mm are weighted means and p is a positive real number, then A and B defined by

Failed to parse (Missing texvc executable; please see math/README to configure.): A x = C(M_1 x, \dots, M_m x) ,
Failed to parse (Missing texvc executable; please see math/README to configure.): B x = \sqrt[p]{C(x_1^p, \dots, x_n^p)} ,

are also weighted means.

Unweighted mean [link]

Intuitively spoken, an unweighted mean is a weighted mean with equal weights. Since our definition of weighted mean above does not expose particular weights, equal weights must be asserted by a different way. A different view on homogeneous weighting is, that the inputs can be swapped without altering the result.

Thus we define M to be an unweighted mean if it is a weighted mean and for each permutation π of inputs, the result is the same.

Symmetry: Mx = Mx) for all n-tuples π and permutations π on n-tuples.

Analogously to the weighted means, if C is a weighted mean and M1, ..., Mm are unweighted means and p is a positive real number, then A and B defined by

Failed to parse (Missing texvc executable; please see math/README to configure.): A x = C(M_1 x, \dots, M_m x) ,
Failed to parse (Missing texvc executable; please see math/README to configure.): B x = \sqrt[p]{M_1(x_1^p, \dots, x_n^p)} ,

are also unweighted means.

Convert unweighted mean to weighted mean [link]

An unweighted mean can be turned into a weighted mean by repeating elements. This connection can also be used to state that a mean is the weighted version of an unweighted mean. Say you have the unweighted mean M and weight the numbers by natural numbers Failed to parse (Missing texvc executable; please see math/README to configure.): a_1,\dots,a_n . (If the numbers are rational, then multiply them with the least common denominator.) Then the corresponding weighted mean A is obtained by

Failed to parse (Missing texvc executable; please see math/README to configure.): A(x_1,\dots,x_n) = M(\underbrace{x_1,\dots,x_1}_{a_1},x_2,\dots,x_{n-1},\underbrace{x_n,\dots,x_n}_{a_n}).


Means of tuples of different sizes [link]

If a mean M is defined for tuples of several sizes, then one also expects that the mean of a tuple is bounded by the means of partitions. More precisely

  • Given an arbitrary tuple x, which is partitioned into y1, ..., yk, then
Failed to parse (Missing texvc executable; please see math/README to configure.): M x \in \mathrm{convexhull}(M y_1, \dots, M y_k).
(See Convex hull.)

Population and sample means [link]

The mean of a population has an expected value of μ, known as the population mean. The sample mean makes a good estimator of the population mean, as its expected value is the same as the population mean. The sample mean of a population is a random variable, not a constant, and consequently it will have its own distribution. For a random sample of n observations from a normally distributed population, the sample mean distribution is

Failed to parse (Missing texvc executable; please see math/README to configure.): \bar{x} \thicksim N\left\{\mu, \frac{\sigma^2}{n}\right\}.


Often, since the population variance is an unknown parameter, it is estimated by the mean sum of squares, which changes the distribution of the sample mean from a normal distribution to a Student's t distribution with n − 1 degrees of freedom.

See also [link]

References [link]

  1. ^ Underhill, L.G.; Bradfield d. (1998) Introstat, Juta and Company Ltd. ISBN 0-7021-3838-X p. 181
  2. ^ Elementary Statistics by Robert R. Johnson and Patricia J. Kuby, p. 279
  3. ^ Schaum's Outline of Theory and Problems of Probability by Seymour Lipschutz and Marc Lipson, p. 141

External links [link]


https://wn.com/Mean

Mean (song)

"Mean" is a song written and recorded by American country pop singer-songwriter Taylor Swift for her third studio album, Speak Now (2010). Produced by Swift alongside Nathan Chapman, the song was sent to country radio in the United States on March 13, 2011, as the third single from Speak Now. "Mean" garnered mixed to positive reviews from critics for its lyrical detail and profound country sound. The song received commercial success in the United States and Canada, debuting at number 11 on the Billboard Hot 100 and number ten on the Canadian Hot 100. The song also appeared on the Australian Singles Chart at number 45.

The song's accompanying music video was directed by Declan Whitebloom, who developed the concept together with Swift. It received mixed reviews from critics who perceived ambivalent messages in the video, despite the prevalent self-empowerment and anti-bullying themes. "Mean" was performed for the first time by Swift at the 46th Annual Academy of Country Music Awards on April 3, 2011. The song won the Grammy Awards for Best Country Song and Best Country Solo Performance at the 54th Grammy Awards.Rolling Stone Magazine ranked Mean as #24 on their list of the 100 greatest country songs of all time. Taylor Swift was tied up in the music video for mean.

Arithmetic mean

In mathematics and statistics, the arithmetic mean (pronunciation: /ˌærɪθˈmɛtɪk ˈmn/, stress on third syllable of "arithmetic"), or simply the mean or average when the context is clear, is the sum of a collection of numbers divided by the number of numbers in the collection. The collection is often a set of results of an experiment, or a set of results from a survey. The term "arithmetic mean" is preferred in some contexts in mathematics and statistics because it helps distinguish it from other means, such as the geometric mean and the harmonic mean.

In addition to mathematics and statistics, the arithmetic mean is used frequently in fields such as economics, sociology, and history, and it is used in almost every academic field to some extent. For example, per capita income is the arithmetic average income of a nation's population.

While the arithmetic mean is often used to report central tendencies, it is not a robust statistic, meaning that it is greatly influenced by outliers (values that are very much larger or smaller than most of the values). Notably, for skewed distributions, such as the distribution of income for which a few people's incomes are substantially greater than most people's, the arithmetic mean may not accord with one's notion of "middle", and robust statistics, such as the median, may be a better description of central tendency.

Podcasts:

PLAYLIST TIME:
×