4

I know that $\int_{0}^{+\infty}\frac{\sin(x)}{x}\,dx=\dfrac \pi 2$, by constructing the 2 variable integration $$\int_{0}^{+\infty}\sin(x)\int_{0}^{+\infty}\dfrac{1}{e^{xy}}\,dy\,dx$$ But this seems to be an ad hoc solution to me.

If I only need to prove it converges to a finite number, is there any general method?

Thanks a lot.

Mark Viola
  • 179,405
pqros
  • 830

2 Answers2

4

To show that the improper Riemann integral $\int_0^\infty \frac{\sin(x)}{x}\,dx$ exists, we can use the Abel-Dirichlet test. There, we only need to establish that there exists a number $M$ such that for any $L>0$

$$\left|\int_0^L \sin(x)\,dx\right|\le M$$

Inasmuch as $\frac{1}{x}$ decreases to $0$ monotonically, then the test guarantees that the integral $\int_0^\infty \frac{\sin(x)}{x}\,dx$ exists.

Mark Viola
  • 179,405
  • So we reduce to the corresponding series. I see~ – pqros Feb 28 '17 at 15:23
  • I remember in order to use the Abel-Dirichlet test, we need to make sure that both functions $\sin(x)$ and $\frac{1}{x}$ are defined on $[0, \infty)$, which in this case $\frac{1}{x}$ is not defined on $0$. Just look at $\int_0^\infty \frac{sin(x)}{x^2} dx$, which is divergent. I don't think you can apply the Abel-Dirchlet test here. @Mark Viola – Jk_0fjnewuif Jan 04 '21 at 03:34
  • @Smith Inasmuch as $\frac{\sin(x)}{x}$ is analytic, the integral $\int_{|x|\le B}\frac{\sin(x)}{x},dx$ exists for all $B$. Hence, we only need to show that there exists a number $M$ such that for any $L>0$, $\left|\int_B^L \sin(x),dx\right|\le M$ – Mark Viola Jan 04 '21 at 15:41
1

Here are two proofs.

For the first, we write $$ \int_0^\infty \frac{\sin x}{x} \ dx = \sum_{n=0}^\infty \int_{n \pi}^{ (n + 1) \pi} \frac{\sin x}{x} \ dx \ .$$ Now define $$ x_n = \int_{n \pi}^{ (n + 1) \pi} \frac{\sin x}{x} \ dx \ ,$$ and note that the terms $x_n$ alternate in sign since $\sin x$ alternates in sign. We have $$ - \frac{1}{ n} \leq x_n \leq \frac{1}{n} \ ,$$ so $\lim_{n \to \infty} x_n = 0$. Finally, note that $$|x_n| = \int_{n \pi}^{(n + 1) \pi } \frac{|\sin x|}{x} \ dx = \int_{(n + 1) \pi}^{(n + 2) \pi } \frac{|\sin x|}{x - \pi} \ dx \geq \int_{(n + 1) \pi}^{(n + 2) \pi } \frac{|\sin x|}{x} \ dx = |x_{n+1}| \ , $$ so $|x_n|$ is monotonically decreasing. We can thus conclude that the series $$ \sum_{n=0}^\infty x_n$$ satisfies the conditions of Leibniz's test for alternating series, and thus converges.

For the second, using continuity, one can show that $$ \int_0^1 \frac{\sin x}{x} \ dx < \infty \ .$$ Now for the remaining integral, we have $$ \int_1^\infty \frac{\sin x}{x} \ dx = - \frac{\cos x}{x} |_{1}^\infty - \int_1^\infty \frac{\cos x}{x^2} \ dx = \cos 1 - \int_1^\infty \frac{\cos x}{x^2} \ dx \ .$$ Now note that $$ \left| \int_1^\infty \frac{\cos x}{x^2} \ dx \right| \leq \int_1^\infty \frac{1}{x^2} \ dx < \infty \ .$$ So, the integral $$ \int_1^\infty \frac{\sin x}{x} \ dx < \infty \ .$$

  • These are not general methodologies, rather specific to this problem. – Mark Viola Feb 28 '17 at 15:44
  • I'm not sure if your proof of the first part is valid, since this proves only that for this specific splitting of the integral (i.e. in evenly $\pi$ long integrals) the limit exists. You actually need to show that for any arbitrary splitting the series converges. That means for any sequence $b_k$ with $\lim_{k \to \infty} b_k=\infty$ the series $\sum_{k=0}^\infty \int_{b_{k-1}}^{b_k} sin(x)/x ,dx$ converges. – mdcq Feb 19 '18 at 14:30