f ( x ) = x 3 − 3 x + 1 has 3 distinct real roots α , β and γ .
Find ⌊ α ⌋ + ⌊ β ⌋ + ⌊ γ ⌋ .
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.
Same technique :P
Paul this was the method which I had intended
To limit the range to look for the three roots, we can first find the local maximum and minimum by differentiating f ( x ) .
f ( x ) f ′ ( x ) ⟹ 3 x 2 x f ′ ′ ( x ) f ′ ′ ( − 1 ) f ′ ′ ( 1 ) = x 3 − 3 x + 1 = 3 x 2 − 3 = 3 = ± 1 = 6 x = − 6 < 0 = 6 < 0 Equating it to 0 Differentiating again. f ( − 1 ) = 3 is a local maximum f ( 1 ) = − 1 is a local minimum
Therefore, there is a root for x < − 1 , a root for − 1 < x < 1 and a root for x > 1 .
Since ⎩ ⎪ ⎨ ⎪ ⎧ f ( − 2 ) = − 1 , f ( 0 ) = 1 , f ( 1 ) = − 1 , f ( − 1 ) = 3 f ( 1 ) = − 1 f ( 2 ) = 3 ⟹ ⌊ α ⌋ = − 2 ⟹ ⌊ β ⌋ = 0 ⟹ ⌊ γ ⌋ = 1
Therefore, ⌊ α ⌋ + ⌊ β ⌋ + ⌊ γ ⌋ = − 2 + 0 + 1 = − 1
Problem Loading...
Note Loading...
Set Loading...
Probably not the intended method, but quick and easy:
f ( x ) = x 3 − 3 x + 1 .
f ( 2 ) = 8 − 6 + 1 = 3 and f ( 1 ) = 1 − 3 + 1 = − 1 . So there is a root, say α between 1 and 2. So ⌊ α ⌋ = 1 .
f ( 1 ) = 1 − 3 + 1 = − 1 and f ( 0 ) = 0 − 0 + 1 = 1 . So there is a root, say β between 0 and 1. So ⌊ β ⌋ = 0 .
f ( − 1 ) = − 1 + 3 + 1 = 3 and f ( − 2 ) = − 8 + 6 + 1 = − 1 . So there is a root, say γ between -2 and -1. So ⌊ γ ⌋ = − 2 .
So the answer is ⌊ α ⌋ + ⌊ β ⌋ + ⌊ γ ⌋ = 1 + 0 − 2 = − 1 .