x 2 − 6 ⌊ x ⌋ + 5 = 0
Find the sum of squares of the solutions to the above equation.
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.
Nicely done.
We have to first determine the possible range or solutions, and then check each of these cases.
Same way! Nice solution
Rewrite the equation as follows:
x 2 = 6 ⌊ x ⌋ − 5
Now, by the trivial inequality , we have,
6 ⌊ x ⌋ − 5 = x 2 ≥ 0 ⟹ ⌊ x ⌋ ≥ 6 5 = 0 . 8 3
But since the floor function only returns integer values, we should have,
⌊ x ⌋ ≥ ⌈ 0 . 8 3 ⌉ = 1 ⟺ x ≥ 1
Further, note that if x ∈ [ m , m + 1 ) for some positive integer m , we have,
x 2 ∈ [ m 2 , ( m + 1 ) 2 ) and 6 ⌊ x ⌋ − 5 = 6 m − 5
For equality to hold between the two expressions, we must have,
m 2 ≤ 6 m − 5 < ( m + 1 ) 2 ⟺ 1 ≤ m ≤ 5
The above mentioned inequality is obtained by solving the inequality with the lower bound as follows:
m 2 ≤ 6 m − 5 ⟺ ( m − 5 ) ( m − 1 ) ≤ 0
The rest follows by using the fact that a b ≤ 0 implies that one of a , b is ≤ 0 and the other is ≥ 0 . You get two cases. Reject the absurd case and give the solution set as m ∈ [ 1 , 5 ] using the correct case.
The upper bound is always maintained regardless of the value of m because ( m + 1 ) 2 − 6 m + 5 = ( m − 2 ) 2 + 2 ≥ 2 > 0 ∀ m ∈ Z + by the trivial inequality.
Hence, from all this, we can conclude that we have, for solutions x to this equation,
x 2 = 6 m − 5 ∀ 1 ≤ m ≤ 5 ∧ m ∈ Z +
The required sum can be evaluated using the result above as,
x ∑ x 2 = m = 1 ∑ 5 ( 6 m − 5 ) = 6 ( m = 1 ∑ 5 m ) − 5 × 5 = 6 ⋅ 2 5 × 6 − 2 5 = 9 0 − 2 5 = 6 5
Problem Loading...
Note Loading...
Set Loading...
We can subtract 6 { x } from both sides of the equation, where { x } is the fractional part of x . We get
x 2 − 6 x + 5 = − 6 { x }
We know − 6 { x } has the range [ 0 , − 6 ) , so we find the values of x for which the LHS lies in this range.
x 2 − 6 x + 5 can be factorized to ( x − 1 ) ( x − 5 ) . Its minimum will occur at x = 2 1 + 5 = 3 . Its minimum value is − 4 which is greater than − 6 , so for x ∈ [ 1 , 5 ] , ( x − 1 ) ( x − 5 ) will lie in [ 0 , − 6 ) , and we will find roots only in this interval.
We can now rewrite the original equation as x 2 = 6 ⌊ x ⌋ − 5 .
For x ∈ [ 1 , 2 ) , ⌊ x ⌋ = 1 ⟹ x 2 = 6 × 1 − 5 ⟺ x = + 1 .
For x ∈ [ 2 , 3 ) , ⌊ x ⌋ = 2 ⟹ x 2 = 6 × 2 − 5 ⟺ x = + 7
For x ∈ [ 3 , 4 ) , ⌊ x ⌋ = 3 ⟹ x 2 = 6 × 3 − 5 ⟺ x = + 1 3
For x ∈ [ 4 , 5 ) , ⌊ x ⌋ = 4 ⟹ x 2 = 6 × 4 − 5 ⟺ x = + 1 9
For x = 5 , ⌊ x ⌋ = 5 ⟹ x 2 = 6 × 5 − 5 ⟺ x = + 5 is a root.
(We have considered only the positive roots since in case x lies in a positive interval.)
Sum of squares of roots is 1 + 7 + 1 3 + 1 9 + 2 5 = 6 5 . □