Let the sum of first n natural numbers be N . Suppose two numbers k , k + 1 are removed from the sum N , the new sum becomes 1224. Find the value of k − 2 0 .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Nice solution sir!
Good solution :)
This is the shortest way and I did it in the same way too :).
Why do we assume that 9801+16k must be a square of some m?
Log in to reply
As the value of n must be an integer hence the discriminant must be a square
I split the problem into two parts; finding a solution (which is fairly easy), and then showing that the solution is unique (which is a little trickier).
First of all we have from the problem
2 n ( n + 1 ) − 2 k − 1 = 1 2 2 4
⟹ k = 4 n ( n + 1 ) − 2 4 5 0 … ( 1 )
⟹ k − 2 0 = 4 n ( n + 1 ) − 2 5 3 0 … ( 2 )
Since 5 0 × 5 1 = 2 5 5 0 , (2) has an easy solution by inspection;
When n = 5 0 , k − 2 0 = 5
Now let us think about the uniqueness of this solution.
From (1) we can see that n cannot be less than 50, because k then becomes zero or negative.
From (1) we can also see that n cannot be 51 because that yields a non-integer value for k.
Finally suppose that n = 5 0 + p with p > 1 . Then (1) gives
k = 4 ( 5 0 + p ) ( 5 1 + p ) − 2 4 5 0 = 4 1 0 0 + p 2 + 1 0 1 p
⟹ k > 4 1 0 0 + 4 p + 1 0 0 = 5 0 + p = n
But this cannot be!
k cannot be omitted from the sum if it is greater than the last and greatest number in the sum.
In conclusion ( n , k ) = ( 5 0 , 2 5 ) is the unique solution in positive integers and with k < n to (1)
Problem Loading...
Note Loading...
Set Loading...
N = i = 1 ∑ n i = 2 n ( n + 1 )
⇒ 2 n ( n + 1 ) − ( k + k + 1 ) = 1 2 2 4 ⇒ n ( n + 1 ) − 4 k − 2 = 2 4 4 8 ⇒ k = 4 n ( n + 1 ) − 2 4 5 0 ⇒ k increases as n increases.
Now, let us check the smallest possible n m i n ≈ ⌊ 2 × 1 2 2 4 ⌋ = ⌊ 4 9 . 4 7 ⌋ = 4 9 .
We know that k < n . Let us check what is the largest possible n m a x by assuming k = n . Then:
n = 4 n ( n + 1 ) − 2 4 5 0 ⇒ 4 n = n 2 + n − 2 4 5 0 ⇒ n 2 − 3 n − 2 4 5 0 = 0 ⇒ n = 5 1 . 0 2 ⇒ n m a x ≈ 5 1
Let us check the values of k for n = 4 9 , 5 0 , 5 1 .
\(\begin{array} {} n = 49 & \Rightarrow k = \dfrac {49(50)-2450}{4} & = 0 < 1 \text{ unacceptable} \\ n = 50 & \Rightarrow k = \dfrac {50(51)-2450}{4} & = 25 \text{ acceptable} \\ n = 51 & \Rightarrow k = \dfrac {51(52)-2450}{4} & = 50.5 \text{ unacceptable} \end{array} \)
When n > 5 1 , k > n , which is unacceptable. Therefore, the acceptable k = 2 5 and k − 2 0 = 5