It seems like taking the n-th root of the product of n values is analogous to the traditional form of averaging. For example:
$$ \frac{5+5+5}{3} = 5 = \sqrt[\leftroot{0}\uproot{0}3]{(5*5*5)} $$
But they do not always produce the same results
$$ \frac{1+2+3}{3} = 2 $$ $$ \sqrt[\leftroot{0}\uproot{0}3]{(1*2*3)} = 1.817... $$
Also, the n-th root "average" cannot handle negative numbers. Anyway, what are the benefits of this latter form of averaging versus the standard way?
(Context: I'm in a course where "perplexity" was intuitively defined as the "average amount of surprise". It made me wonder why we don't just use the standard way of averaging.)