Arithmetic-geometric mean

Arithmetic-geometric mean

In mathematics, the arithmetic-geometric mean (AGM) of two positive real numbers "x" and "y" is defined as follows:

First compute the arithmetic mean of "x" and "y" and call it "a"1. Next compute the geometric mean of "x" and "y" and call it "g"1; this is the square root of the product "xy":

:a_1 = frac{x+y}{2}

:g_1 = sqrt{xy}.

Then iterate this operation with "a"1 taking the place of "x" and "g"1 taking the place of "y". In this way, two sequences ("a""n") and ("g""n") are defined:

:a_{n+1} = frac{a_n + g_n}{2}

:g_{n+1} = sqrt{a_n g_n}.

These two sequences converge to the same number, which is the arithmetic-geometric mean of "x" and "y"; it is denoted by M("x", "y"), or sometimes by agm("x", "y").

Example

To find the arithmetic-geometric mean of "a"0 = 24 and "g"0 = 6, first calculate their arithmetic mean and geometric mean, thus:

:a_1=frac{24+6}{2}=15,

:g_1=sqrt{24 imes 6}=12,

and then iterate as follows:

:a_2=frac{15+12}{2}=13.5,

:g_2=sqrt{15 imes 12}=13.41640786500dots etc.

The first four iterations give the following values:

:

The arithmetic-geometric mean of 24 and 6 is the common limit of these two sequences, which is approximately 13.45817148173.

Properties

M("x", "y") is a number between the geometric and arithmetic mean of "x" and "y"; in particular it is between "x" and "y".

If "r" > 0, then M("rx", "ry") = "r" M("x", "y").

There is a closed form expression for M("x","y"):

:Mu(x,y) = frac{pi}{4} cdot frac{x + y}{K left( left( frac{x - y}{x + y} ight)^2 ight) }

where "K"("x") is the "complete elliptic integral of the first kind".

The reciprocal of the arithmetic-geometric mean of 1 and the square root of 2 is called Gauss's constant.

: frac{1}{Mu(1, sqrt{2})} = G = 0.8346268dots

named after Carl Friedrich Gauss.

The geometric-harmonic mean can be calculated by an analogous method, using sequences of geometric and harmonic means. The arithmetic-harmonic mean can be similarly defined, but takes the same value as the geometric mean.

Implementation in Python

The following example code in Python computes the arithmetic-geometric mean of two positive real numbers:

from math import sqrt

def avg(a, b, delta=None): if None=delta: delta=(a+b)/2*1E-10 if(abs(b-a)>delta): return avg((a+b)/2.0, sqrt(a*b), delta) else: return (a+b)/2.0

ee also

* Inequality of arithmetic and geometric means

References

* Jonathan Borwein, Peter Borwein, "Pi and the AGM. A study in analytic number theory and computational complexity." Reprint of the 1987 original. Canadian Mathematical Society Series of Monographs and Advanced Texts, 4. A Wiley-Interscience Publication. John Wiley & Sons, Inc., New York, 1998. xvi+414 pp. ISBN 0-471-31515-X MathSciNet|id=1641658
*SpringerEOM|author=M. Hazewinkel|title=Arithmetic-geometric mean process|urlname=a/a130280
*mathworld|urlname=Arithmetic-GeometricMean|title=Arithmetic-Geometric mean


Wikimedia Foundation. 2010.

Игры ⚽ Нужно решить контрольную?

Look at other dictionaries:

  • Geometric mean — The geometric mean, in mathematics, is a type of mean or average, which indicates the central tendency or typical value of a set of numbers. It is similar to the arithmetic mean, which is what most people think of with the word average, except… …   Wikipedia

  • Geometric Mean — The average of a set of products, the calculation of which is commonly used to determine the performance results of an investment or portfolio. Technically defined as the n th root product of n numbers , the formula for calculating geometric mean …   Investment dictionary

  • geometric mean — An average obtained by calculating the nth root of a set of n numbers. For example the geometric mean of 7, 100, and 107 is 3√74 900 = 42.15, which is considerably less than the arithmetic mean of 71.3 …   Accounting dictionary

  • geometric mean — An average obtained by calculating the nth root of a set of n numbers. For example the geometric mean of 7, 100, and 107 is %3→74 900 = 42. 15, which is considerably less than the arithmetic mean of 71. 3 …   Big dictionary of business and management

  • Weighted geometric mean — In statistics, given a set of data, : X = { x 1, x 2, ..., x n } and corresponding weights, : W = { w 1, w 2, ..., w n } the weighted geometric mean is calculated as: ar{x} = left(prod {i=1}^n x i^{w i} ight)^{1 / sum {i=1}^n w i} = quad exp… …   Wikipedia

  • Mean — This article is about the statistical concept. For other uses, see Mean (disambiguation). In statistics, mean has two related meanings: the arithmetic mean (and is distinguished from the geometric mean or harmonic mean). the expected value of a… …   Wikipedia

  • Geometric-harmonic mean — In mathematics, the geometric harmonic mean M( x , y ) of two positive real numbers x and y is defined as follows: we first form the geometric mean of g 0 = x and h 0 = y and call it g 1, i.e. g 1 is the square root of xy . We then form the… …   Wikipedia

  • arithmetic mean — arithmetic average An average obtained by adding together the individual numbers concerned and dividing the total by their number. For example, the arithmetic mean of 7, 20, 107, and 350 is 484 4 = 121. This value, however, gives no idea of the… …   Big dictionary of business and management

  • mean — arithmetic mean; n. the average of a group of observations calculated by adding their values and dividing by the number in the group. When one or more observations are substantially different from the rest, which can influence the arithmetic mean …   The new mediacal dictionary

  • mean — mean1 [mēn] vt. meant [ment] meaning [ME menen < OE mænan, to mean, tell, complain, akin to Ger meinen, to have in mind, have as opinion < IE base * meino , opinion, intent > OIr mian, wish, desire] 1. to have in mind; intend; purpose… …   English World dictionary

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”