I'm trying to prove the following: $\sqrt[4]{abcd} \le \frac{a+b+c+d}{4}$.
While I managed to prove base case $n=1$ and $n=2$;
$(\sqrt{a}-\sqrt{b})^2 \geqslant 0$
$a-2\sqrt{ab}+b \geqslant 0$
$a+b \geqslant 2\sqrt{ab}$
$\sqrt{ab} \le \frac{a+b}{2}$
I am unsure how to proceed for $n=4$. Is there a way to continue proving 4 variables using induction, or is it better to use Cauchy-Schwarz Inequality to go about the proof?
You can prove AM-GM using Jensen's inequality which states that if $f$ is continuous and convex (or equivalently, concave up), then we know for $x_1, x_2, ..., x_n$ and $a_1, a_2, ..., a_n$ that $f(\frac{a_1x_1 + ... + a_nx_n}{a_1 + ... + a_n}) \leq \frac{a_1 f(x_1) + ... + a_n f(x_n)}{a_1 + ... + a_n}$. This may seem complicated, but we can think of the $a_i$ as weights being applied before or after $f$. Since $f$ is convex, the point $\frac{a_1x_1 + ... + a_nx_n}{a_1 + ... + a_n}$ will be somewhere in the middle of the $x_i$. Then, when $f$ is applied to this value, we get something less than a value which is somewhere in the middle of the $f(x_i)$. It can be shown that Cauchy-Schwarz is actually a specific case of Jensen's inequality.
We actually apply this as follows: Consider $x_1, x_2, ..., x_n \in \mathbb{R}$. Let $y_i = \text{ln}(x_i)$, let $a_i = \frac{1}{n}$, and let $f(x) = e^x$, which is convex/concave up. Thus, by Jenson's inequality, $e^{\frac{1}{n}(y_1 + ... + y_n)} \leq \frac{1}{n}(e^{y_1} + ... + e^{y_n})$. By the construction of $y_i$, we have that $e^{y_i} = x_i$. Additionally, $y_1 + ... + y_n = \text{ln}(x_1) + ... + \text{ln}(x_n) = \text{ln}(x_1 x_2 ... x_n)$. So plugging everything in and simplifying, we get $e^{\frac{1}{n}(y_1 + ... + y_n)} = (x_1 ... x_n)^\frac{1}{n} \leq \frac{1}{n}(x_1 + ... + x_n)$. At this point, we can let $n = 4$, to get that $n = 4$ to get your result.