+0  
 
0
1620
4
avatar+10 

I'm trying to solve N from \(\frac{n * (n + 1)}{2}\)

Let's say N = 4, thus the result is (1 + 2 + 3 + 4) ---> 10.

 

Steps:

 

 \(\frac{n * (n + 1)}{2} = 10\)

 

Multiply both sides by 2

 

\(n * (n + 1) = 20\)

 

n * (n + 1) becomes = \({2n}^{2}\)

 

so \({2n}^{2} = 20\)

 

divide both sides by 2

 

\({n}^{2} = 10\)

 

take the square root

 

\(n = \sqrt{10} = 3.1622776601683793\)

 

 

Thus the result is wrong. Where's the mistake, and what are the correct steps instead?

 

Thanks!

 Oct 2, 2016
edited by TuukkaX  Oct 2, 2016

Best Answer 

 #1
avatar+9665 
+4

The wrong step is at the step n*(n+1) = 2n^2.

n * (n + 1) = n^2 + n instead.

\(n(n+1) = n^2 + n\)

 

\(n^2 + n = 20\\ n^2 + n - 20 = 0\\ (n+5)(n-4) = 0\\ n = -5(\text{rejected})\text{ or }n=4\)

Now that's correct.

 Oct 2, 2016
 #1
avatar+9665 
+4
Best Answer

The wrong step is at the step n*(n+1) = 2n^2.

n * (n + 1) = n^2 + n instead.

\(n(n+1) = n^2 + n\)

 

\(n^2 + n = 20\\ n^2 + n - 20 = 0\\ (n+5)(n-4) = 0\\ n = -5(\text{rejected})\text{ or }n=4\)

Now that's correct.

MaxWong Oct 2, 2016
 #3
avatar+10 
0

How does

\({n}^{2}+n-20=0\)

become

\((n+5)*(n-4) = 0\)

 

How did you come up with that?

TuukkaX  Oct 2, 2016
 #4
avatar+9665 
0

I think you may know factorization of quadratics so I skipped the steps.

\(\quad n^2 + n - 20\\ = n^2 + 5n - 4n - 20\\ = n(n+5) -4(n+5)\\ =(n-4)(n+5)\)

MaxWong  Oct 2, 2016
 #2
avatar+9665 
+5

And n(n+1)/2 = 1 + 2 + ...... + n can be proved by mathematical induction.

Let P(n) be n(n+1)/2 = 1 + 2 + ....... + n

For n = 1,

LHS = 1(1+1)/2 = 1

RHS = 1 = LHS

P(1) is true.

 

Assume that P(k) is true,

For n = k + 1

 LHS 

= (k+1)(k+2)/2

 RHS 

= 1 + 2 + ...... + k + (k + 1) 

= (k + 1)(k)/2 + (k + 1)

\((\dfrac{k+1}{2})(k + 2)\)

= (k+1)(k+2)/2

= LHS

Therefore when P(k) is true, P(k + 1) is true.

By the definition of mathematical induction, P(n) is true for all positive integers n.

 Oct 2, 2016

5 Online Users

avatar
avatar
avatar
avatar
avatar