Friday, July 15, 2016

Proving some identities in the set of natural numbers without using induction...

I'm not sure how to prove some of the identities without using induction, for example:
$$1+2+3+...+n=\frac{n(n+1)}{2}$$
$$1^2+2^2+...+n^2=\frac{n(n+1)(2n+1)}{6}$$
$$1^3+2^3+...+n^3=(\frac{n(n-1)}{2})^2$$

What my teacher suggested and did for the first example is, take two successive members and sum their squares, then using some transformations get $\frac{n(n+1)}{2}$, here's what the teacher did:
$$(k+1)^2-k^2=2k+1$$
we sum $k$-s from $1$ to $n$:
$$\sum_{k=1}^{n}((k+1)^2-k^2)=2\sum_{k=1}^{n}k+\sum_{k=1}^{n}1$$
$$2^2-1^2+3^2-2^2+4^2-3^2+...+(n+1)^2-n^2=2\sum_{k=1}^{n}k+n$$
$$(n+1)^2-1=2\sum_{k=1}^{n}k+n$$
$$n^2+2n-n=2\sum_{k=1}^{n}k$$
$$2\sum_{k=1}^{n}k=n^2+n$$
$$\sum_{k=1}^{n}k=\frac{n(n+1)}{2}$$




What is the method my teacher used here? The teacher also suggested that, for example, if we have the sum of squares of successive integers (like in the second example), we should take two successive numbers and sum their cubes, or if we have the sum of cubes, then we take two successive members of the sum and sum their 4th degrees. Is there a name for this method of solving so I could google it and examine it a bit more?

No comments:

Post a Comment

analysis - Injection, making bijection

I have injection $f \colon A \rightarrow B$ and I want to get bijection. Can I just resting codomain to $f(A)$? I know that every function i...