- #1
AK2
- 39
- 0
I just need a hint to solve the problem. The method used is illustrated in the example problem as follows:
I am supposed to imitate the method used in the example problem to solve the challenge problem in the book as follows
Imitate the method used in the last problem to find a formula for the sum
12 + 22 + 32 + ... + k2
when k is a positive integer.
I have tried various things like (a+1)4 - a4, (a+1)3 - a3, triangle numbers, odd numbers, but I haven't been able to solve it. I just need a hint. This is not a homework problem. This is self study.
Assume that k is a positive integer . What is the sum of integers
S = 1+2+3+...+(k-1)+k?
Solution:
22 - 12 = 3 = 2 * 1 + 1
32 - 22 = 5 = 2 * 2 + 1
42 - 32 = 7 = 2 * 3 + 1
...
k2 - (k-1)2 = 2 * (k-1) + 1
(k+1)2 - k2 = 2 * k + 1
Now we add the columns:
[22 - 12] + [32 - 22] +...+ [(k+1)2 - k2]
= [2 * 1+1] + [2*2+1] + [2*3+1]+...+[2*k+1]
The left hand side ''telescopes'' (that is, all but the first and last terms cancel) and the right side may be factored. The result is
(k+1)2 - 12 = 2[1+2+3+...k] + [1+1+1+...+1]
k times
or
k2 + 2 * k = 2 * S + k
Solving for S for we find that
S = (k2+k)/2
I am supposed to imitate the method used in the example problem to solve the challenge problem in the book as follows
Imitate the method used in the last problem to find a formula for the sum
12 + 22 + 32 + ... + k2
when k is a positive integer.
I have tried various things like (a+1)4 - a4, (a+1)3 - a3, triangle numbers, odd numbers, but I haven't been able to solve it. I just need a hint. This is not a homework problem. This is self study.