I am studying computer science in the first term.
I have to proof the following inequality:
$$ \frac {x_1 + \cdots+ x_n}{n} \ge \sqrt[n]{x_1 x_2 \cdots x_n}$$
$x$ can be any positive real Number: $ x \in \mathbb{R},x \gt0 $
I try to bring it in a form that is like Bernoulli's Inequality, but then realized that this is pretty much nonsense.
So now I am having a hard time to prove it through induction.
Beginning of the induction is clear: $n \rightarrow 1$
$ \large\frac {x_1}{1} \ge x_1$
Next Step: $n \rightarrow n+1$
For the start, lets write the left side of the inequality as $$x_a(n) = \frac{1}{n} \sum_{k=1}^n x_k$$ $$x_g(n) = \prod_{k=1}^n x_k^\frac{1}{n}$$
So now we have to prove:
$$x_a(n+1) = \frac{1}{n+1} \sum_{k=1}^{n+1} x_k$$ $$x_g(n+1) = \prod_{k=1}^{n+1} x_k^\frac{1}{n+1}$$
$x_a(n+1) \ge x_g(n+1)$
Can you just give me a strategy on that?
Thanks.