Calculateus

Geometric Mean Calculator

Calculate the geometric mean of a list of positive numbers.

Result

Geometric Mean
8

Formula: (x₁ × x₂ × ... × xₙ)^(1/n) - the nth root of the product of n numbers. Unlike the arithmetic mean, the geometric mean is appropriate for values that multiply together over time, like investment growth rates or population growth factors.

About the Geometric Mean Calculator

The Geometric Mean Calculator finds the nth root of the product of a set of positive numbers, the average that correctly represents values which compound or multiply together, such as growth rates or ratios. It is the right averaging tool whenever the arithmetic mean would overstate a compounding process.

How It Works

You enter a comma-separated list of positive numbers. The calculator multiplies them all together and then takes the nth root of that product, where n is the count of numbers entered. It requires every value to be strictly positive, since the geometric mean is undefined for zero or negative inputs.

Geometric Mean = (x1 * x2 * ... * xn)^(1/n)

Formula & Methodology

To compute this by hand, multiply every value in the list together to get a single product, then take the nth root of that product, where n is how many numbers were multiplied. For large datasets this is often done via logarithms instead, since summing the logs of each value, dividing by n, and exponentiating the result is numerically more stable, though the calculator computes the product and root directly.

Examples

Doubling sequence

For the numbers 4, 8, and 16, the product is 512, and the cube root of 512 is 8, so the geometric mean is exactly 8.

Mixed growth ratios

For the two numbers 1.05 and 1.10 (representing 5% and 10% growth factors), the product is 1.155, and its square root is approximately 1.0747, meaning the equivalent constant annual growth factor is about 7.47%.

Advantages

  • Correctly averages multiplicative quantities like growth rates, ratios, or index values, where the arithmetic mean would give a misleading answer.
  • Handles any number of positive values entered as a simple comma-separated list, with no upper limit on how many numbers can be averaged.
  • Returns a precise result to four decimal places, useful for financial or scientific calculations that need more than a rough estimate.

Common Mistakes

  • Using the geometric mean on values that include zero or negative numbers, which the calculator rejects because the product-and-root approach breaks down outside strictly positive inputs.
  • Confusing the geometric mean with the arithmetic mean when averaging percentage changes or growth rates, which systematically overstates the true compounded rate.
  • Entering percentages as raw numbers (like 5 and 10) instead of growth factors (like 1.05 and 1.10), which changes what the geometric mean actually represents.

Edge Cases to Watch For

  • If any entered number is zero or negative, the calculator returns an error, since a zero collapses the product to zero and a negative value can produce a complex result depending on how many negatives are present and whether n is even or odd.
  • An empty or unparseable input list also produces an error requiring at least one valid number.
  • For a single number entered alone, the geometric mean simply equals that number, since the first root of a single value is itself.

Common Use Cases

  • Investors averaging a series of annual investment returns or growth rates to find the true compound growth rate.
  • Statisticians or scientists averaging ratios, index numbers, or measurements that vary multiplicatively rather than additively.
  • Students learning the distinction between arithmetic and geometric averages in a statistics or finance course.
Written & fact-checked by the Calculateus TeamLast updated August 5, 2026How we verify our formulas

Frequently asked questions

When should the geometric mean be used instead of the arithmetic (regular) mean?

The geometric mean is the correct average for rates that compound multiplicatively, such as a series of annual investment returns or growth percentages - averaging investment returns with a plain arithmetic mean systematically overstates the true compound growth rate, which is why financial CAGR calculations effectively use a geometric mean approach instead.

Conclusion

The geometric mean gives the mathematically correct average for values that multiply together over time or across categories, unlike the arithmetic mean which is designed for values that simply add. This calculator removes the manual work of multiplying a list and extracting the nth root by hand.