3

Let $(X, \mathcal{A}, \mu)$ be a finite measure space. Let $\{f_n\}_{n=1}^\infty \subset L^2(\mu)$ be a sequence of functions such that $f_n \to f$ almost everywhere (a.e.) and $\|f_n\|_2 \leq M$ for all $n \in \mathbb{N}$. Prove that $\int_X f_n \, d\mu \to \int_X f \, d\mu.$

I always feel like I miss some small but important detail so I would be really grateful if anyone could verify and point any mistakes.

Firstly I note that $L^2$ is closed so the limit $f$ is also in $L^2$. The fact that $\mu(X) < \infty$ and that $f_n,f$ are in $L^2$ imply that $f_n,f$ are integrable. We can use Egorov's theorem to find $E$ such that $f_n\to f$ uniformly on E.$\int_X |f_n-f|d\mu = \int_E |f_n-f|d\mu + \int_{X\setminus E} 1\cdot |f_n-f|d\mu \le \epsilon \mu(E)+(\mu(X\setminus E))^{\frac{1}{2}}(\int_{X\setminus E}(f_n-f)^{2})^{\frac{1}{2}} \le\epsilon\mu(X)+\sqrt{\epsilon}2M$.

As $\mu(X)$ is finite this end the proof. Penultimate inequality is Cauchy-Schwarz.

Mittens
  • 46,352

2 Answers2

4

Taking into account all that was said in comments:

    1. $L^2$ isn't closed under a.e convergence, as $f_n(x)=\min(n,\frac{1}{\sqrt x})$ on $(0,1]$ with usual measure isn't going to converge to an $L^2$ function. Instead, to obtain the fact that $f\in L^2$, one can go through Fatou's lemma:

$$\int_X f^2d\mu = \int_X \liminf_{n\to \infty}((f_n)^2)d\mu \leq \liminf_{n\to \infty}\int_X (f_n)^2d\mu\leq M^2 < \infty.$$

Thus $f\in L^2$ and $\|f\|_2\leq M$.

    1. Don't forget to mention that for any $\varepsilon > 0$, there exists $E$ (that depends on $\varepsilon$) such that $\mu(X\setminus E) \leq \varepsilon$ and $f_n\xrightarrow{uniformly} f$ on $E$. Let $N\in \mathbb N$ such that $\forall n\geq N$, $\sup_{x\in E}|f_n(x)-f(x)| \leq \varepsilon.$ Then applying Cauchy-Schwarz with the powers correctly written to $n\geq N$:

$$\begin{align}\int_X |f_n-f|d\mu &= \int_E |f_n-f|d\mu + \int_{X\setminus E} |f_n-f|d\mu \\&\le \varepsilon \mu(E)+\int_{X\setminus E} 1\cdot |f_n|d\mu+\int_{X\setminus E} 1\cdot |f|d\mu\\&\le \varepsilon \mu(E)+(\mu(X\setminus E))^{\frac{1}{2}}\left[\left(\int_{X\setminus E}(f_n)^{2}d\mu\right)^{\frac{1}{2}}+\left(\int_{X\setminus E}f^{2}d\mu\right)^{\frac{1}{2}}\right] \\&\le\varepsilon\mu(X)+2M\sqrt{\varepsilon}.\end{align}$$ The rest will be trivial.

Edit: your way is also fine if you write that $$\left(\int_{X\setminus E}(f_n-f)^{2}d\mu\right)^{\frac{1}{2}} \leq \|f_n-f\|_2 \leq \|f\|_2 + \|f_n\|_2\leq 2M$$ by triangular inequality of the $2$-norm.

rafilou2003
  • 1,587
1

This can be obtain by Vitali's convergence theorem (see here for a recent posting) . Notice that for any $n\in\mathbb{N}$ $$\|f_n\|_1\leq\|f_n\|_2\sqrt{\mu(X))}\leq M\sqrt{\mu(X))}$$ Hence $\sup_n\|f_n\|_1<\infty$. Also, for any $\varepsilon>0$ let $\delta=\varepsilon^2/M^2$ so that whenever $\mu(A)<\delta$, $$\int_A|f_n|\,\mu\leq\|f_n\|_2\sqrt{\mu(A)}< \varepsilon$$ To recap, we have that

  1. $f_n\rightarrow f$ $\mu$-a.s.
  2. $(f_n:n\in\mathbb{N})$ is uniformly integrable.

Then $f_n$ converges to $f$ in $L_1$, i.e. $\|f_n-f\|_1\xrightarrow{n\rightarrow\infty}0$. In particular, $\int_Xf_n\xrightarrow{n\rightarrow\infty}\int_Xf$.

Mittens
  • 46,352
  • I dont really see how does your solution differ from the other one. Isnt it proved "along the way" during the other solution? – user1379333 Jan 05 '25 at 18:06
  • @user1379333: All I am doing is checking that the conditions of Vitali's convergence theorem are satisfied. I don't go into the details of using Egorov's theorem and/or decomposing the space in different regions to apply some bounds. My goal was to introduce you to the known result of Vitali which is applicable in more general situations. – Mittens Jan 05 '25 at 18:12
  • Yes I know and I really appreciate your answer. However it seems to me that the other solution "proofs" Vitalis' convergence theorem in the middle of the solution. It seems to me that the Vitali's theorem is just a part of the other answer. Am I right or do I miss something? – user1379333 Jan 08 '25 at 21:14
  • 1
    @user1379333: only the version for $L_2$ (in fact L_p if you make a few changes) Vitali's theorem is however more general. Hence the link that I posted, which contains a proof in the context of equiintegrability and tightness (some for of uniform integrability). Theus every time you are under this general conditions, one is done; no need to reinvent the wheel. – Mittens Jan 08 '25 at 21:18
  • Ah I get it. Thank you this is very helpful. – user1379333 Jan 11 '25 at 09:03