Rahul Sharma (Editor)

Generalized mean

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Generalized mean

In mathematics, generalized means are a family of functions for aggregating sets of numbers, that include as special cases the Pythagorean means (arithmetic, geometric, and harmonic means). The generalized mean is also known as power mean or Hölder mean (named after Otto Hölder).

Contents

Definition

If p is a non-zero real number, and x 1 , , x n are positive real numbers, then the generalized mean or power mean with exponent p of these positive real numbers is:

M p ( x 1 , , x n ) = ( 1 n i = 1 n x i p ) 1 p .

Note the relationship to the p-norm. For p = 0 we assume that it is equal to the geometric mean (which is the limit of means with exponents approaching zero, as proved below for the general case):

M 0 ( x 1 , , x n ) = i = 1 n x i n

Furthermore, for a sequence of positive weights wi with sum w i = 1 we define the weighted power mean as:

M p ( x 1 , , x n ) = ( i = 1 n w i x i p ) 1 p M 0 ( x 1 , , x n ) = i = 1 n x i w i

The unweighted means correspond to setting all wi = 1/n.

Properties

  • The generalized mean always lies between the smallest and largest of the x values.
  • The generalized mean is a symmetric function of its arguments; permuting the arguments of a generalized mean does not change its value.
  • Like most means, the generalized mean is a homogeneous function of its arguments x1, ..., xn. That is, if b is a positive real number, then the generalized mean with exponent p of the numbers b x 1 , , b x n is equal to b times the generalized mean of the numbers x1, …, xn.
  • Like the quasi-arithmetic means, the computation of the mean can be split into computations of equal sized sub-blocks.
  • Generalized mean inequality

    In general,

    if p < q, then M p ( x 1 , , x n ) M q ( x 1 , , x n )

    and the two means are equal if and only if x1 = x2 = ... = xn.

    The inequality is true for real values of p and q, as well as positive and negative infinity values.

    It follows from the fact that, for all real p,

    p M p ( x 1 , , x n ) 0

    which can be proved using Jensen's inequality.

    In particular, for p in {−1, 0, 1}, the generalized mean inequality implies the Pythagorean means inequality as well as the inequality of arithmetic and geometric means.

    Proof of power means inequality

    We will prove weighted power means inequality, for the purpose of the proof we will assume the following without loss of generality:

    w i [ 0 ; 1 ] i = 1 n w i = 1

    Proof for unweighted power means is easily obtained by substituting wi = 1/n.

    Equivalence of inequalities between means of opposite signs

    Suppose an average between power means with exponents p and q holds:

    i = 1 n w i x i p p i = 1 n w i x i q q

    applying this, then:

    i = 1 n w i x i p p i = 1 n w i x i q q

    We raise both sides to the power of −1 (strictly decreasing function in positive reals):

    i = 1 n w i x i p p = 1 i = 1 n w i 1 x i p p 1 i = 1 n w i 1 x i q q = i = 1 n w i x i q q

    We get the inequality for means with exponents −p and −q, and we can use the same reasoning backwards, thus proving the inequalities to be equivalent, which will be used in some of the later proofs.

    Geometric mean

    For any q > 0, and non-negative weights summing to 1, the following inequality holds

    i = 1 n w i x i q q i = 1 n x i w i i = 1 n w i x i q q

    The proof is as follows. From Jensen's inequality, making use of the fact the logarithmic function is concave:

    log ( i = 1 n x i w i ) = i = 1 n w i log ( x i ) log ( i = 1 n w i x i )

    By applying the exponential function to both sides and observing that as a strictly increasing function it preserves the sign of the inequality, we get

    i = 1 n x i w i i = 1 n w i x i

    and taking qth powers of the xi, we are done for the inequality with positive q, and the case for negatives is identical.

    Inequality between any two power means

    We are to prove that for any p < q the following inequality holds:

    i = 1 n w i x i p p i = 1 n w i x i q q

    if p is negative, and q is positive, the inequality is equivalent to the one proved above:

    i = 1 n w i x i p p i = 1 n x i w i i = 1 n w i x i q q

    The proof for positive p and q is as follows: Define the following function: f : R+R+ f ( x ) = x q p . f is a power function, so it does have a second derivative:

    f ( x ) = ( q p ) ( q p 1 ) x q p 2

    which is strictly positive within the domain of f, since q > p, so we know f is convex.

    Using this, and the Jensen's inequality we get:

    f ( i = 1 n w i x i p ) i = 1 n w i f ( x i p ) i = 1 n w i x i p p q i = 1 n w i x i q

    after raising both side to the power of 1/q (an increasing function, since 1/q is positive) we get the inequality which was to be proven:

    i = 1 n w i x i p p i = 1 n w i x i q q

    Using the previously shown equivalence we can prove the inequality for negative p and q by substituting them with, respectively, −q and −p, QED.

    Generalized f-mean

    The power mean could be generalized further to the generalized f-mean:

    M f ( x 1 , , x n ) = f 1 ( 1 n i = 1 n f ( x i ) )

    This covers the geometric mean without using a limit with f(x) = log(x). The power mean is obtained for f(x) = xp.

    Signal processing

    A power mean serves a non-linear moving average which is shifted towards small signal values for small p and emphasizes big signal values for big p. Given an efficient implementation of a moving arithmetic mean called smooth one can implement a moving power mean according to the following Haskell code.

  • For big p it can serve an envelope detector on a rectified signal.
  • For small p it can serve an baseline detector on a mass spectrum.
  • References

    Generalized mean Wikipedia