Rewriting (1 + 2 + + [k + 1])^2

  • Thread starter Thread starter pasido
  • Start date Start date
pasido
Messages
3
Reaction score
0
This is from Spivak Calculus 4th ed.

Why are these two formulas equal?

Code:
(1 + 2 + ... + [k + 1])[SUP]2[/SUP] = (1 + 2 + ... + k)[SUP]2[/SUP] + 2(1 + ... + k)(k + 1) + (k + 1)[SUP]2[/SUP]
I'm especially confused about the right hand side. Where did 2(1 + ... + k)(k + 1) come from?
 
Physics news on Phys.org
pasido said:
This is from Spivak Calculus 4th ed.

Why are these two formulas equal?

Code:
(1 + 2 + ... + [k + 1])[SUP]2[/SUP] = (1 + 2 + ... + k)[SUP]2[/SUP] + 2(1 + ... + k)(k + 1) + (k + 1)[SUP]2[/SUP]
I'm especially confused about the right hand side. Where did 2(1 + ... + k)(k + 1) come from?
Didn't they just group them into two terms?

(x + (k + 1))^2 = x^2 + 2*x*(k+1) + (k+1)^2

where x = 1 + 2 ... + k
 
pasido said:
This is from Spivak Calculus 4th ed.

Why are these two formulas equal?

Code:
(1 + 2 + ... + [k + 1])[SUP]2[/SUP] = (1 + 2 + ... + k)[SUP]2[/SUP] + 2(1 + ... + k)(k + 1) + (k + 1)[SUP]2[/SUP]
I'm especially confused about the right hand side. Where did 2(1 + ... + k)(k + 1) come from?

Try it with k = 3. Start with$$
(1+2+3+4)(1+2+3+4) = [(1+2+3)+4)][(1+2+3)+4]$$Expand as a binomial without simplifying and see what happens. That might give you an idea.

[Edit] I didn't see the other post while I was typing.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top