I am trying to understand why induction is valid. For instance why would this 'proof' not be valid under the principle of proof by induction ? :

$$ \sum_{k=1}^{\infty} \frac{1}{k} \lt \infty$$ because using induction on the statement $$S(n) = \sum_{1}^{n} \frac{1}{k} \lt \infty$$ - "$S(1) < \infty$ is true and "$S(n) < \infty$" implies "$S(n+1) < \infty$" since $S(n+1) \lt S(n) + \frac{1}{n}$

share|cite|improve this question
39  
Read the principle of mathematical induction again. The conclusion only says $P(n)$ is true for every integer $n$, which is very different from $P(\infty)$ being true. – dezdichado 2 days ago
    
I see , thank you. – user3203476 2 days ago
9  
This is one of my favourite mathematical errors. A thing and its limit need not have anything in common. You can build a hollow house out of solid bricks. – Eric Lippert yesterday
3  
The question, and in particular the final line, is (also) confused about whether $S(n)$ designates a value or a proposition. – Marc van Leeuwen yesterday
1  
You also need to make very sure that you're not treating infinity like a number just because it is on the right of an inequality. By "the infinite sum is less than infinity" we are not actually comparing two numbers. This is just a convenient shorthand for there exists a number b (for "bound") such that every finite sum is less than b. – Eric Lippert yesterday
up vote 59 down vote accepted

With induction, you can only prove $S(n)$ is true for all positive integers $n$. However, even though $S(n)$ is true for arbitrarily large $n$, the statement "$S(\infty)$" does not follow from induction because $\infty$ is not a positive integer.

share|cite|improve this answer
    
Also the statement $S(n)$ is meaningless for finite $n$; $<\infty$ does not say anything at all about a finite sum of real numbers. – R.. 5 hours ago

The same proof shows that the set of all positive integers is finite:

\begin{align} & \{1\} \text{ is finite.} \\ & \{1,2\} \text{ is finite.} \\ & \{1,2,3\} \text{ is finite.} \\ & \{1,2,3,4\} \text{ is finite.} \\ & \qquad \vdots \\ & \text{and so on.} \\ \text{Therefore } & \{1,2,3,4,\ldots\} \text{ is finite.} \end{align}

share|cite|improve this answer
11  
This is a good start of an answer but I think you need to elaborate a little more on why it doesn't work. – Q the Platypus yesterday
4  
This still creeps me out because of the time when I was stupid enough to try to reason with an anti set theory crank. – Carsten S yesterday
    
I see what you're going for, but your claim doesn't match your proof. You have shown through induction that for n > 0, {1, ..., n} has a cardinality of n. – Kjata30 yesterday
2  
@Kjata30 : I'm not following you. The idea is that if you add one more element to a finite set, you get a finite set; therefore every initial segment of the set of all positive integers is finite. – Michael Hardy 10 hours ago

By induction you have proved that for all $n\in\mathbb Z^+$, $\displaystyle\sum_{k=0}^n\frac 1 k$ is finite, which is true. This is not the same as proving that $\displaystyle\sum_{k=0}^\infty\frac 1 k$ is finite...

share|cite|improve this answer

I would add to the other comments that when you take the limit $<$ changes into $\le$. So by taking the limit you would get $\sum_{k=1}^\infty\frac{1}{k}\le\infty$, which is not particularly useful.

share|cite|improve this answer

Other answers make the valid point made in that you can only deduce $( \forall n \in \mathbb N :P(n) )$ by induction, but not $ P(\infty) $ (though see footnote1). There is, however, another problem in your case:

Your “$ P $” does not have the same meaning in “$ P(n)$” (where $ n\in \mathbb N $) as it does in “$ P(\infty) $”.

This is confusing, as the notation is the same, but an infinite sum is defined as a limit while a finite sum is defined inductively. Because of this, induction tells us nothing about $ P(\infty) $.

1 You can sometimes deduce $P(\omega)$ when using transfinite induction, but that is a different technique and a different story.

share|cite|improve this answer

A lot of people are talking about the meaning of $P(\infty)$, which I believe is something of a red herring: usually the symbol $\infty$ is a notational convenience, and has no meaning as a formal object.

In particular:

  • $\sum_{n=0}^\infty x_n$ means $\lim_{m\rightarrow\infty}\sum_{n=0}^m x_n$, where again, the limit towards $\infty$ has a precise mathematical meaning not involving the symbol $\infty$.

  • $x<\infty$ simply means that there is some $C\in\mathbb{R}$ such that $x<C$. Alternately, for an increasing sequence $x_n$, $\lim_{n\rightarrow\infty}x_n<\infty$ means that there is a $C\in\mathbb{R}$ such that $x_n<C$ for every $n$.

Now if you try to prove that there is some $C$ such that for every $m$, $\sum_{n=0}^m \frac{1}{n}<C$, you'll run into trouble: certainly there is some such $C$ for each $m$, but there is no $C$ that works uniformly for every $m$. Indeed, if $x<C$, then $x+\frac{1}{m}$ could very well be above $C$.

share|cite|improve this answer
    
$\lim_{n\to \infty}$ is the same as any other limit if you consider $\infty$ as an element in the one-point compactification of ${\bf N}$. You can do very similar things with nets. Personally, I think when we have a fixed sequence under consideration, it is enough to write $\lim_n$ without using the symbol $\infty$. – tomasz 4 hours ago
    
The same is true about $\lim_{n\to \infty} x_n<\infty$ -- you just need to consider ${\bf R}$ as a subset of its two-point compactification. If you don't, $x<\infty$ is completely meaningless: any number is less than infinity. – tomasz 4 hours ago

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.