Let $f$ be continuous with maximum $m$ on $[a, b]$ and $f(x) \geq 0$ for all $x \in [a,b]$. Show $$ \lim_{n \to \infty} \sqrt[n]{\int_a^b [f(x)]^n\ dx} = m. $$
This is based on a problem I saw from Courant, and is of course the infinity norm on a continuous function space. Courant asks to prove this via real analysis; measure theory isn't available.
Several posts here use something similar as a definition: $$ \|f\|_\infty := \max_{x \in [0,1]} |f(x)|$$ and some prove it for the discrete case, but none prove it or develop it for continuous functions via integrals.
My work so far below. Criticism or improvements of my work, or alternate solutions, are all requested.
Proof
If $m = 0$, the claim is trivial, so we assume $m > 0$. We will find an upper bound and a lower bound of the limit in question and show they both equal $m$.
Recall that for any $k > 0$, $$ \lim_{n \to \infty} \sqrt[n]{k} = 1. $$ Therefore, we have the upper bound $$ \begin{align*} \lim_{n \to \infty} \sqrt[n]{\int_a^b [f(x)]^n\ dx} &\leq \lim_{n \to \infty} \sqrt[n]{\int_a^b m^n \ dx} \\ &=\lim_{n \to \infty} \sqrt[n]{(b-a)} \cdot \lim_{n \to \infty} \sqrt[n]{m^n}\\ &= m. \end{align*} $$ Since $f$ is continuous and attains its maximum $m$ in $[a, b]$, for any $\varepsilon > 0$, there exists a $c \in (a, b)$ and $\delta > 0$ such that for all $x \in [c, c+\delta]$ $$ f(x) \geq m - \varepsilon $$ so for $0 < \varepsilon < m$, $$ \begin{align*} \int_a^b [f(x)]^n \ dx &\geq \int_c^{c + \delta} [f(x)]^n \ dx \\ &\geq \int_c^{c+\delta} (m - \varepsilon)^n \ dx \\ &= \delta \cdot (m - \varepsilon)^n. \end{align*} $$ By the Binomial Theorem, we have for $0 < \varepsilon < m$ $$ (m - \varepsilon)^n = m^n + \mathcal{O}(m^{n-1}\varepsilon) $$ so that $$ \begin{align*} \lim_{n \to \infty} \sqrt[n]{\delta \cdot (m - \varepsilon)^n} &= \lim_{n \to \infty} \sqrt[n]{\delta} \cdot \lim_{n \to \infty} \sqrt[n]{(m - \varepsilon)^n} \\ &= 1 \cdot \lim_{n \to \infty} \sqrt[n]{ m^n + \mathcal{O}(m^{n-1}\varepsilon)} \\ &= m. \end{align*} $$ giving a lower bound and completing the proof.
Discussion
It's fascinating that the size of the interval where $f$ is near $m$ is irrelevant in the limit. This is the crux of the proof; the rest is just mechanics.
I tried to achieve both rigor and clarity while not getting caught up in arrays of multiple epsilons and deltas. Is the line where I invoke the Binomial Theorem via Big-Oh notation rigorous and sufficient? Is there a more rigorous way to develop that? How could the proof and its exposition be improved?
Update
Based on Asigan's very helpful suggestion, I would revise the proof by deleting the (false!) section stating "By the Binomial Theorem..." and instead writing:
Therefore, for any $\varepsilon > 0$, $$ \begin{align*} \int_a^b [f(x)]^n \ dx &\geq \lim_{n \to \infty} \sqrt[n]{\delta} \cdot \lim_{n \to \infty} \sqrt[n]{(m - \varepsilon)^n} \\ &= m - \varepsilon. \end{align*} $$ This shows $m$ is a lower bound (by the Axiom of Completeness) and completes the proof.