If x = k + k + k + . . . where x > 1 , k > 1 , and x & k are natural numbers, find the sum of the first five k values.
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.
We have
⟹ ⟹ ⟹ x = k + k + k + ⋯ x 2 = k + x x 2 − x − k = 0 x = 2 1 + 1 + 4 k As x > 1
For x to be a natural number 1 + 4 k should be the square of an odd integer. Let 1 + 4 k = ( 2 n + 1 ) 2 ⟹ k = n 2 + n . Plugging values of n from 1 to 5 , we get k = 2 , 6 , 1 2 , 2 0 , 3 0 , therefore the sum is 7 0 .
Actually,from the third line x 2 − x − k = 0 ,you can get k = x 2 − x ,put in x = 2 , 3 , 4 , 5 , 6
Log in to reply
Yes that would be right too but it would give a different expression for k i.e., k = n 2 − n . Anyways it works both ways, good observation! :)
Problem Loading...
Note Loading...
Set Loading...
Squaring both sides, the equation becomes x 2 = k + k + k + k + . . . . You can replace the infinitely nested root with x , making the equation x 2 = k + x .
By setting the equation equal to 0, it becomes x 2 − x − k = 0 . Since x , k ∈ N , the equation must be factorable. The center term can only be − x if k is a multiple of two positive consecutive integers n and n + 1 . The factored form of the equation would be ( x + n ) ( x − ( n + 1 ) ) = 0 . The solutions would be x = − n or x = n + 1 , but since x > 1 , the only solution would be x = n + 1 .
To find the first five values of k , you must find the first five products of two consecutive positive integers.
2 + 6 + 1 2 + 2 0 + 3 0 = 7 0