Geometric mean


In mathematics, the geometric mean is a mean or average, which indicates the central tendency or typical value of a set of numbers by using the product of their values. The geometric mean is defined as the th root of the product of numbers, i.e., for a set of numbers, the geometric mean is defined as
For instance, the geometric mean of two numbers, say 2 and 8, is just the square root of their product, that is,. As another example, the geometric mean of the three numbers 4, 1, and 1/32 is the cube root of their product, which is 1/2, that is,.
A geometric mean is often used when comparing different items—finding a single "figure of merit" for these items—when each item has multiple properties that have different numeric ranges. For example, the geometric mean can give a meaningful value to compare two companies which are each rated at 0 to 5 for their environmental sustainability, and are rated at 0 to 100 for their financial viability. If an arithmetic mean were used instead of a geometric mean, the financial viability would have greater weight because its numeric range is larger. That is, a small percentage change in the financial rating makes a much larger difference in the arithmetic mean than a large percentage change in environmental sustainability. The use of a geometric mean normalizes the differently-ranged values, meaning a given percentage change in any of the properties has the same effect on the geometric mean. So, a 20% change in environmental sustainability from 4 to 4.8 has the same effect on the geometric mean as a 20% change in financial viability from 60 to 72.
The geometric mean can be understood in terms of geometry. The geometric mean of two numbers, and, is the length of one side of a square whose area is equal to the area of a rectangle with sides of lengths and. Similarly, the geometric mean of three numbers,,, and, is the length of one edge of a cube whose volume is the same as that of a cuboid with sides whose lengths are equal to the three given numbers.
The geometric mean applies only to positive numbers. It is also often used for a set of numbers whose values are meant to be multiplied together or are exponential in nature, such as data on the growth of the human population or interest rates of a financial investment.
The geometric mean is also one of the three classical Pythagorean means, together with the aforementioned arithmetic mean and the harmonic mean. For all positive data sets containing at least one pair of unequal values, the harmonic mean is always the least of the three means, while the arithmetic mean is always the greatest of the three and the geometric mean is always in between

Calculation

The geometric mean of a data set is given by:
The above figure uses capital pi notation to show a series of multiplications. Each side of the equal sign shows that a set of values is multiplied in succession to give a total product of the set, and then the nth root of the total product is taken to give the geometric mean of the original set. For example, in a set of four numbers, the product of is, and the geometric mean is the fourth root of 24, or ~ 2.213. The exponent on the left side is equivalent to the taking nth root. For example,.
The geometric mean of a data set is less than the data set's arithmetic mean unless all members of the data set are equal, in which case the geometric and arithmetic means are equal. This allows the definition of the arithmetic-geometric mean, an intersection of the two which always lies in between.
The geometric mean is also the arithmetic-harmonic mean in the sense that if two sequences and are defined:
and
where is the harmonic mean of the previous values of the two sequences, then and will converge to the geometric mean of and.
This can be seen easily from the fact that the sequences do converge to a common limit and the fact that geometric mean is preserved:
Replacing the arithmetic and harmonic mean by a pair of generalized means of opposite, finite exponents yields the same result.

Relationship with logarithms

The geometric mean can also be expressed as the exponential of the arithmetic mean of logarithms. By using logarithmic identities to transform the formula, the multiplications can be expressed as a sum and the power as a multiplication:
When
additionally, if negative values of the are allowed,
where is the number of negative numbers.
This is sometimes called the log-average. It is simply computing the arithmetic mean of the logarithm-transformed values of and then using the exponentiation to return the computation to the original scale, i.e., it is the generalised f-mean with. For example, the geometric mean of 2 and 8 can be calculated as the following, where is any base of a logarithm :
Related to the above, it can be seen that for a given sample of points, the geometric mean is the minimizer of, whereas the arithmetic mean is the minimizer of. Thus, the geometric mean provides a summary of the samples whose exponent best matches the exponents of the samples.
The log form of the geometric mean is generally the preferred alternative for implementation in computer languages because calculating the product of many numbers can lead to an arithmetic overflow or arithmetic underflow. This is less likely to occur with the sum of the logarithms for each number.

Comparison to arithmetic mean

The geometric mean of a non-empty data set of numbers is always at most their arithmetic mean. Equality is only obtained when all numbers in the data set are equal; otherwise, the geometric mean is smaller. For example, the geometric mean of 242 and 288 equals 264, while their arithmetic mean is 265. In particular, this means that when a set of non-identical numbers is subjected to a mean-preserving spread — that is, the elements of the set are "spread apart" more from each other while leaving the arithmetic mean unchanged — their geometric mean decreases.

Average growth rate

In many cases the geometric mean is the best measure to determine the average growth rate of some quantity. In order to determine the average growth rate, it is not necessary to take the product of the measured growth rates at every step. Let the quantity be given as the sequence, where is the number of steps from the initial to final state. The growth rate between successive measurements and is. The geometric mean of these growth rates is then just:

Application to normalized values

The fundamental property of the geometric mean, which does not hold for any other mean, is that for two sequences and of equal length,
This makes the geometric mean the only correct mean when averaging normalized results; that is, results that are presented as ratios to reference values. This is the case when presenting computer performance with respect to a reference computer, or when computing a single average index from several heterogeneous sources. In this scenario, using the arithmetic or harmonic mean would change the ranking of the results depending on what is used as a reference. For example, take the following comparison of execution time of computer programs:
Computer AComputer BComputer C
Program 111020
Program 2100010020
Arithmetic mean500.55520
Geometric mean31.622...31.622...20
Harmonic mean1.998...18.182...20

The arithmetic and geometric means "agree" that computer C is the fastest. However, by presenting appropriately normalized values and using the arithmetic mean, we can show either of the other two computers to be the fastest. Normalizing by A's result gives A as the fastest computer according to the arithmetic mean:
Computer AComputer BComputer C
Program 111020
Program 210.10.02
Arithmetic mean15.0510.01
Geometric mean110.632...
Harmonic mean10.198...0.039...

while normalizing by B's result gives B as the fastest computer according to the arithmetic mean but A as the fastest according to the harmonic mean:
Computer AComputer BComputer C
Program 10.112
Program 21010.2
Arithmetic mean5.0511.1
Geometric mean110.632
Harmonic mean0.198...10.363...

and normalizing by C's result gives C as the fastest computer according to the arithmetic mean but A as the fastest according to the harmonic mean:
Computer AComputer BComputer C
Program 10.050.51
Program 25051
Arithmetic mean25.0252.751
Geometric mean1.581...1.581...1
Harmonic mean0.099...0.909...1

In all cases, the ranking given by the geometric mean stays the same as the one obtained with unnormalized values.
However, this reasoning has been questioned.
Giving consistent results is not always equal to giving the correct results. In general, it is more rigorous to assign weights to each of the programs, calculate the average weighted execution time, and then normalize that result to one of the computers. The three tables above just give a different weight to each of the programs, explaining the inconsistent results of the arithmetic and harmonic means. The use of the geometric mean for aggregating performance numbers should be avoided if possible, because multiplying execution times has no physical meaning, in contrast to adding times as in the arithmetic mean. Metrics that are inversely proportional to time should be averaged using the harmonic mean.
The geometric mean can be derived from the generalized mean as its limit as goes to zero. Similarly, this is possible for the weighted geometric mean.

Applications

Proportional growth

The geometric mean is more appropriate than the arithmetic mean for describing proportional growth, both exponential growth and varying growth; in business the geometric mean of growth rates is known as the compound annual growth rate. The geometric mean of growth over periods yields the equivalent constant growth rate that would yield the same final amount.
Suppose an orange tree yields 100 oranges one year and then 180, 210 and 300 the following years, so the growth is 80%, 16.6666% and 42.8571% for each year respectively. Using the arithmetic mean calculates a average growth of 46.5079%. However, if we start with 100 oranges and let it grow 46.5079% each year, the result is 314 oranges, not 300, so the linear average over-states the year-on-year growth.
Instead, we can use the geometric mean. Growing with 80% corresponds to multiplying with 1.80, so we take the geometric mean of 1.80, 1.166666 and 1.428571, i.e. ; thus the "average" growth per year is 44.2249%. If we start with 100 oranges and let the number grow with 44.2249% each year, the result is 300 oranges.

Financial

The geometric mean has from time to time been used to calculate financial indices. For example, in the past the FT 30 index used a geometric mean. It is also used in the recently introduced "RPIJ" measure of inflation in the United Kingdom and in the European Union.
This has the effect of understating movements in the index compared to using the arithmetic mean.

Applications in the social sciences

Although the geometric mean has been relatively rare in computing social statistics, starting from 2010 the United Nations Human Development Index did switch to this mode of calculation, on the grounds that it better reflected the non-substitutable nature of the statistics being compiled and compared:
Not all values used to compute the HDI are normalized; some of them instead have the form. This makes the choice of the geometric mean less obvious than one would expect from the "Properties" section above.
The equally distributed welfare equivalent income associated with an Atkinson Index with an inequality aversion parameter of 1.0 is simply the geometric mean of incomes. For values other than one, the equivalent value is an Lp norm divided by the number of elements, with p equal to one minus the inequality aversion parameter.

Geometry

In the case of a right triangle, its altitude is the length of a line extending perpendicularly from the hypotenuse to its 90° vertex. Imagining that this line splits the hypotenuse into two segments, the geometric mean of these segment lengths is the length of the altitude. This property is known as the geometric mean theorem.
In an ellipse, the semi-minor axis is the geometric mean of the maximum and minimum distances of the ellipse from a focus; it is also the geometric mean of the semi-major axis and the semi-latus rectum. The semi-major axis of an ellipse is the geometric mean of the distance from the center to either focus and the distance from the center to either directrix.
Distance to the horizon of a sphere is approximately equal to the geometric mean of the distance to the closest point of the sphere and the distance to the farthest point of the sphere when the distance to the closest point of the sphere is small.
Both in the approximation of squaring the circle according to S.A. Ramanujan and in the construction of the Heptadecagon according to "sent by T. P. Stowell, credited to Leybourn's Math. Repository, 1818", the geometric mean is employed.

Aspect ratios

The geometric mean has been used in choosing a compromise aspect ratio in film and video: given two aspect ratios, the geometric mean of them provides a compromise between them, distorting or cropping both in some sense equally. Concretely, two equal area rectangles of different aspect ratios intersect in a rectangle whose aspect ratio is the geometric mean, and their hull likewise has the aspect ratio of their geometric mean.
In aspect ratio by the SMPTE, balancing 2.35 and 4:3, the geometric mean is, and thus... was chosen. This was discovered empirically by Kerns Powers, who cut out rectangles with equal areas and shaped them to match each of the popular aspect ratios. When overlapped with their center points aligned, he found that all of those aspect ratio rectangles fit within an outer rectangle with an aspect ratio of 1.77:1 and all of them also covered a smaller common inner rectangle with the same aspect ratio 1.77:1. The value found by Powers is exactly the geometric mean of the extreme aspect ratios, and CinemaScope, which is coincidentally close to . The intermediate ratios have no effect on the result, only the two extreme ratios.
Applying the same geometric mean technique to 16:9 and 4:3 approximately yields the aspect ratio, which is likewise used as a compromise between these ratios. In this case 14:9 is exactly the arithmetic mean of and, since 14 is the average of 16 and 12, while the precise geometric mean is but the two different means, arithmetic and geometric, are approximately equal because both numbers are sufficiently close to each other.

Spectral flatness

In signal processing, spectral flatness, a measure of how flat or spiky a spectrum is, is defined as the ratio of the geometric mean of the power spectrum to its arithmetic mean.

Anti-reflective coatings

In optical coatings, where reflection needs to be minimised between two media of refractive indices n0 and n2, the optimum refractive index n1 of the anti-reflective coating is given by the geometric mean:.

Subtractive color mixing

The spectral reflectance curve for paint mixtures is approximately the geometric mean of the paints' individual reflectance curves computed at each wavelength of their spectra.

Image Processing

The geometric mean filter is used as a noise filter in image processing.