0

Let r > 1 be a real number. Prove that the following series is convergent. $$\sum_{n = 1}^{\infty}\frac{1}{n^r}$$

2 Answers2

1

You can use the integral test.

guacho
  • 1,414
0

Back to basics. The partial sums are clearly increasing. So we only need to show they are bounded above. Consider the partial sum up to $n=2^{k}-1$.

Look at the first term, the sum of the next $2$ terms, the sum of the $4$ terms after that, the sum of the $8$ terms after that, and so on.

The first term is $1$.

The sum of the next $2$ terms is $\lt \frac{2}{2^r}=\frac{1}{2^{r-1}}$.

The sum of the next $4$ terms is $\lt \frac{4}{2^{2r}}=\frac{1}{2^{2(r-1)}}$.

The sum of the next $8$ terms, by a similar argument, is $\lt \frac{1}{2^{3(r-1}}$.

And so on. So the sum of the terms up to $2^k-1$ is less than $$1+\frac{1}{2^{r-1}}+\frac{1}{2^{2(r-1)}}+\cdots+\frac{1}{2^{(k-1)(r-1)}}.$$ This is a finite geometric series, with sum equal to $$\frac{1-2^{-k(r-1)}}{1-2^{-(r-1)}}.$$ In particular, it has the upper bound $\dfrac{1}{1-2^{-(r-1)}}$.

Remark: Without mentioning it explicitly, we have used the idea behind the Cauchy Condensation Test.

André Nicolas
  • 507,029