5

Let $p\gt 1,q\gt 1$ be the dual indices, $\frac1p + \frac1q = 1$ and let $X$ be the space of all continuous functions on $[a,b]$ with two real numbers $a\lt b$. $f(x)$ and $g(x)$ are continuous functions on $[a,b]$

I want to prove that:

$$\int_a^b |f(x)||g(x)| dx \leq \left(\int_a^b |f(x)|^p dx\right)^{\frac1p}\left(\int_a^b |g(x)|^q dx\right)^{\frac{1}{q}}$$

I have been suggested to use young's inequality, but I can't find the relevant thing to use. It seems on wiki to be very relevant to use 'Young's inequality for convolutions', but I have never dealt with any $L^p$ spaces, should I just learn these, or is this not what they were referring?

1 Answers1

8

Do you remember how we can prove Cauchy-Schwarz through interpolation?

Since $|xy|\leq\frac{x^2+y^2}{2}$ we have: $$ \| f\cdot g\|_1 \leq \frac{\|f\|_2^2}{2}+\frac{\|g\|_2^2}{2} \tag{1} $$ but the LHS is just the same if we replace $f$ with $\lambda f$ and $g$ with $\frac{1}{\lambda}g$, so: $$ \| f\cdot g\|_1 \leq \frac{\lambda^2\|f\|_2^2}{2}+\frac{\|g\|_2^2}{2\lambda^2} \tag{2} $$ and by choosing $\lambda$ in such a way the two terms in the RHS of $(2)$ are equal, i.e. $\lambda=\sqrt{\frac{\|g\|_2}{\|f\|_2}}$, we get: $$ \| f\cdot g\|_1 \leq \|f\|_2 \cdot \|g\|_2 \tag{3}$$ that is the usual Cauchy-Schwarz inequality. If we start with the Young inequality: $$ |xy|\leq \frac{|x|^p}{p}+\frac{|y|^q}{q}\tag{4} $$ and follow exactly the same interpolation steps, we end with: $$ \| f\cdot g\|_1 \leq \|f\|_p\cdot \|g\|_q \tag{5} $$ that is the wanted Holder's inequality.

Jack D'Aurizio
  • 353,855