-1

Suppose we have an integral like $$ \int_{-\infty}^a f(x)\, dx $$ and want to know if the integral converges as $a\to -\infty$.

Is it correct that this is necessarily converging to $0$, that is $$ \lim_{a\to -\infty}\int_{-\infty}^a f(x)\, dx=0? $$ Intuitively, if $a\to -\infty$, I am integrating over a set of measure $0$.

ViktorStein
  • 4,838
Scuderi
  • 320

2 Answers2

3

This depends on the function $f$. If $f(x)=1$ for all $x \in \mathbb R$ then $$\int^a_{-\infty} f(x)dx = +\infty$$for all $a\in \mathbb R$, so the limit is $+\infty$.

However, if you can guarantee that $$\int^A_{-\infty} \lvert f(x)\rvert dx < +\infty$$ for some real number $A$, then yes, your limit will hold true, and it is a consequence of the Monotone convergence theorem or Lebesgue dominated convergence theorem.

EDIT: The proof is as follows. Suppose that for some $A \in \mathbb R$, $$\int^A_{-\infty} \lvert f(x) \rvert dx$$ converges. Then for $a < A$, consider the function $$f_a(x) = \chi_{(-\infty,a]}(x) f(x), \,\,\,\,\, x \in \mathbb (\infty, A],$$ where $\chi_{(-\infty,a]}$ denotes the indicator function of $(-\infty,a]$. This sequence of functions clearly goes to zero pointwise as $a \to -\infty$, and is bounded by the integrable function $\lvert f(x) \rvert$ on the domain $(-\infty, A]$. Thus we can use the LDCT to see \begin{align*}\lim_{a\to-\infty} \int^a_{-\infty} f(x)dx &= \lim_{a\to-\infty} \int^A_{-\infty} f(x)\chi_{(-\infty,a]}(x)dx \\ &= \int^A_{-\infty} \lim_{a\to-\infty} \big( f(x)\chi_{(-\infty,a]}(x) \big) dx \\ &= \int^A_{-\infty} 0 \,\, dx = 0.\end{align*}

Unfortunately, if you can't guarantee any sort of integrability for $f$, this argument (or any similar ones) will not work, and you will need to know something more specific about $f$ to prove the property.

User8128
  • 15,485
  • 1
  • 18
  • 31
  • Can you give me some more details? For example, suppose $f(x)=g(x)e^{-bx}$, where $g(x)$ is bounded and $b>0$. Then I have that, for some $A\in\mathbb{R}$, $\int_{-\infty}^A \lvert g(x)e^{-bx}\rvert, dx\leq C\int_{-\infty}^{A}e^{-bx}, dx=-\frac{C}{b}e^{bA}<+\infty$. But why does this imply that $\lim_{a\to-\infty}\int_{-\infty}^a f(x), dx=0$? – Scuderi Sep 19 '20 at 17:32
  • Correction. I guess my example is not working, since $\int_{-\infty}^A\lvert f(x)\rvert$ diverges for any $A$. – Scuderi Sep 19 '20 at 18:28
  • 1
    @Scuderi I edited my answer with an extended explanation. – User8128 Sep 19 '20 at 18:40
0

One can prove that if $f$ is integrable, then for all $\varepsilon >0$, there exists a compact set $K$ such that : $$\int_{K^c}|f|<\varepsilon .$$

T.D
  • 742
Bruce
  • 299