x 9 + x 8 + 2 x 7 + 2 x 6 + 2 x 5 + 2 x 4 + 2 x 3 + 3 x 2 + x + 1 = 0
Let y be the real root of the equation above. Find ⌊ ∣ 1 0 0 0 0 y ∣ ⌋ .
Notations :
⌊ ⋅ ⌋ denotes the floor function .
∣ ⋅ ∣ denotes the absolute value function .
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.
Do you think this should be level 3?
Log in to reply
As I understand things, Level is determined by success rate, but the algorithm is not clear.
Once you think of using an iterative scheme, it is fairly easy to find a convergent one. Without that idea...
Isn't the real problem that this can just be plugged into WA for an answer? Reasonably enough, the Level drops if you can get the answer just by typing.
Great approach as always. I applied Newton-Raphson method.
I did it via plotting its graph on desmos. How did you get the value of x 0 ?
Log in to reply
Like always in iterative cases, a reasonable guess.
I did it via plotting its graph on desmos.
Problem Loading...
Note Loading...
Set Loading...
The iterative scheme x n + 1 = g ( x n ) = − 1 − x n 8 + 2 x n 6 + 2 x n 4 + 2 x n 2 + 1 x n 2 n ≥ 0 with x 0 = − 1 . 1 is rapidly convergent (since − 4 1 ≤ g ′ ( x ) < 0 for all x ≤ − 1 ) to the root y ≈ − 1 . 1 . The sequence is oscillatory, with x 2 = − 1 . 1 0 0 4 1 3 9 9 6 . . . x 3 = − 1 . 1 0 0 4 4 3 7 3 6 . . . Thus y lies between these two values, so ∣ 1 0 0 0 0 y ∣ has integer part 1 1 0 0 4 .