The geometric mean answers a different question than the familiar arithmetic mean: instead of "what value, added n times, gives the same total?" it answers "what value, multiplied by itself n times, gives the same product?" That distinction matters whenever the numbers you're averaging combine multiplicatively — growth rates, investment returns, ratios, and index numbers — where the arithmetic mean quietly gives a biased answer.
How the Geometric Mean Calculator works
The calculator takes the natural log of each entered value, averages those logs, and exponentiates the result — mathematically identical to taking the nth root of the product, but far more numerically stable when values are large or numerous (multiplying dozens of large numbers directly can overflow standard floating-point math long before the log-space version runs into trouble).
Why the geometric mean is never larger than the arithmetic mean
This is a mathematical fact (the AM-GM inequality) that holds for any set of positive numbers: the arithmetic mean is always greater than or equal to the geometric mean, with equality only when every value is identical. Intuitively, the geometric mean is pulled down by the smallest values in the set more than the arithmetic mean is — a single very small number drags the product (and therefore the geometric mean) down hard, while it only nudges the sum (and the arithmetic mean) down gently.
When to use the geometric mean instead of the arithmetic mean
Use the geometric mean whenever the quantities represent multiplicative change: a series of investment returns, year-over-year growth percentages, or index/ratio values. Averaging a sequence of growth rates with the arithmetic mean systematically overstates the true average growth, because it ignores the compounding effect — a 50% gain followed by a 50% loss is not a 0% average change (arithmetic mean says 0%), it's actually a net loss (the geometric mean correctly shows this). Use the arithmetic mean for quantities that add up naturally, like total distance or total cost.
Limits and edge cases
The geometric mean is undefined for zero or negative numbers, since a negative or zero factor in the product either flips the sign unpredictably across an even/odd count of negatives or collapses the whole product to zero. If your data legitimately includes zero or negative values (net losses, temperature in Celsius, etc.), the geometric mean is the wrong tool — use the arithmetic mean, or shift your data to a positive scale first if that's meaningful for your use case.