FACTOID # 82: The women of Iceland earn two-thirds of their nation's university degrees.
 
 Home   Encyclopedia   Statistics   Countries A-Z   Flags   Maps   Education   Forum   FAQ   About 
 
WHAT'S NEW
RECENT ARTICLES
More Recent Articles »
 

SEARCH ALL

FACTS & STATISTICS    Advanced view

Search encyclopedia, statistics and forums:

 

 

(* = Graphable)

 

 


Encyclopedia > Arithmetic geometric mean

In mathematics, the arithmetic-geometric mean M(x, y) of two positive real numbers x and y is defined as follows: we first form the arithmetic mean of x and y and call it a1, i.e. a1 = (x + y) / 2. We then form the geometric mean of x and y and call it g1, i.e. g1 is the square root of xy. Now we can iterate this operation with a1 taking the place of x and g1 taking the place of y. In this way, two sequences (an) and (gn) are defined:

and

These two sequences converge to the same number, which we call the arithmetic-geometric mean M(x, y) of x and y.


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).


M(x, y) is sometimes denoted agm(x, y).


Implementation

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

 (define agmean (lambda (a b epsilon) (letrec ((ratio-diff ; determine whether two numbers (lambda (a b) ; are already very close together (abs (/ (- a b) b)))) (loop ; actually do the computation (lambda (a b) ;; if they're already really close together, ;; just return the arithmetic mean (if (< (ratio-diff a b) epsilon) (/ (+ a b) 2) ;; otherwise, do another step (loop (sqrt (* a b)) (/ (+ a b) 2)))))) ;; error checking (if (or (not (real? a)) (not (real? b)) (<= a 0) (<= b 0)) (error 'agmean "~s and ~s must both be positive real numbers" a b) (loop a b))))) 

One can show that

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


The geometric-harmonic mean can be calculated by an analogous method, using sequences of geometric and harmonic means. The arithmetic-harmonic mean is none other than the geometric mean.


See also: generalized mean




  Results from FactBites:
 
PlanetMath: proof of arithmetic-geometric-harmonic means inequality (148 words)
The proof that the geometric mean is at least as large as the harmonic mean is the usual one (see “proof of arithmetic-geometric-harmonic means inequality”).
Cross-references: harmonic mean, geometric mean, monotone function, arithmetic mean, concave function, arithmetic-geometric-harmonic means inequality, Jensen inequality
This is version 4 of proof of arithmetic-geometric-harmonic means inequality, born on 2002-06-03, modified 2003-08-04.
Geometric mean - Psychology Wiki - a Wikia wiki (610 words)
The geometric mean of a set of positive data is defined as the nth root of the product of all the members of the set, where n is the number of members.
The geometric mean of a data set is always smaller than or equal to the set's arithmetic mean (the two means are equal if and only if all members of the data set are equal).
It is not the arithmetic mean, because what these numbers mean is that on the first year your investment was multiplied (not added to) by 1.10, on the second year it was multiplied by 1.50, and the third year it was multiplied by 1.30.
  More results at FactBites »


 

COMMENTARY     


Share your thoughts, questions and commentary here
Your name
Your comments
Please enter the 5-letter protection code

Want to know more?
Search encyclopedia, statistics and forums:

 


Lesson Plans | Student Area | Student FAQ | Reviews | Press Releases |  Feeds | Contact
The Wikipedia article included on this page is licensed under the GFDL.
Images may be subject to relevant owners' copyright.
All other elements are (c) copyright NationMaster.com 2003-5. All Rights Reserved.
Usage implies agreement with terms.