0

ok! so i don't have a clue as to how to prove it.

$$\sum\limits_{i=m+1}^n i=((n-m)(n+m+1))/2$$ so the base case is equal to zero because $$\sum\limits_{i=1+1}^1 i=0$$ is this correct? I don't know how to go for inductive step.

Thanks in advance

Natasha J
  • 825

3 Answers3

1

I suggest you induct on $m$. Fix $n = N$, and then the base case $m=0$ is the familiar arithmetic progression $$\sum_{i=1}^N i = \frac{N(N+1)}{2}.$$ Suppose the result is true for $k = 0, \dots, m$. Then $$ \sum_{i=m+1}^N i = \sum_{i=m}^N i - m = \frac{(N-(m-1))(N+m)}{2} - m = \frac{N^2+N-m^2-m}{2} = \frac{(N-m)(N+m+1)}{2}. $$

DanLewis3264
  • 2,321
1

You have various options. If I was doing this, I would use double induction as follows : outer induction on $n$ and inner induction on $m$.

First, I would manually show that it holds for $n = 2$, when $m$ is any value in $\{0,1\}.$

Then, I would assume that the conjecture holds for all $n=N$ when $m$ is any value in $\{0,1,\cdots, N-1\}.$

Then, I would show that because it holds for $n = (N)$, it also holds for $n=(N+1)$, when $m$ is any value in $\{0,1,\cdots, N-1, N\}.$

I would do this by holding the value of $n$ as fixed at $(N+1)$, showing that it holds for $m=0$, and then showing that if it holds for any $M$ in $\{0,1,2,\cdots, N-1\}$ with $n = (N+1)$, then it must also hold for $m = (M+1).$

user2661923
  • 35,619
  • 3
  • 17
  • 39
1

Bearing in mind that your claim - when written out explicitly as a formal predicate - should look as follows: $$R \colon \equiv (\forall m, n)\left(m,n \in \mathbb{N} \wedge m \leqslant n \Rightarrow \sum_{k=m+1}^n k=\frac{(n-m)(n-m+1)}{2}\right),$$ by far the easiest approach is to consider the predicate: $$P(m) \colon \equiv (\forall n) \left(n \in \mathbb{N} \wedge m \leqslant n \Rightarrow \sum_{k=m+1}^n k=\frac{(n-m)(n-m+1)}{2}\right)$$ and realise that $R \Leftrightarrow (\forall m)(m \in \mathbb{N} \Rightarrow P(m))$. Therefore, in order to establish (prove) $R$ it will suffice to fix arbitrary $m \in \mathbb{N}$ and to establish the predicate $P(m)$.

In order to supply a proof for $P(m)$, the most natural choice is to perform induction on the well-ordered set $\{n \in \mathbb{N} \mid n \geqslant m\}$, since this is precisely the domain over which the universal quantifier comprised in $P(m)$ acts.

More explicitly, you would have to perform just one induction where the base case is $n=m$ and the inductive step consists of assuming the summation relation valid for a certain (arbitrary) $n \geqslant m$ in order to deduce it for $n+1$.

ΑΘΩ
  • 3,930
  • Thank you so much! Your answer is informative! But I did not understand why to induct on well ordered set? – Natasha J Mar 13 '21 at 09:04
  • @NatashaJ I am glad you found the answer helpful. What I meant by that remark is that the classical method of proof by induction - typically presented and encountered in (standard) exercises as only applying to $\mathbb{N}$ - is actually one instance of a far more general theorem of set theory, according to which - loosely speaking - one can perform induction on artinian ordered sets (which are ordered sets with the particular feature that they do not allow the existence of strictly decreasing sequences of their elements). Well-ordered sets are in particular artinian (to be cont.) – ΑΘΩ Mar 13 '21 at 09:45
  • (cont.) artinian, to be more specific they are the totally ordered artinian sets and $\mathbb{N}$ together with any of its subsets is in particular well-ordered (under the standard order, of course). In other words, I wanted to hint at the fact that "proof by induction" can be performed in far more general contexts and one should not have ones' thought process limited solely to the "base case $n=0$ and property for $n$ implies property for $n+1$" pattern. – ΑΘΩ Mar 13 '21 at 09:48
  • Thank you! Your answer is very nice! – Natasha J Mar 13 '21 at 10:17
  • @Natasha J Thank you for taking it into consideration and - once again - I'm glad you found it instructive. – ΑΘΩ Mar 13 '21 at 11:53