Here's the actual ques:
the number of solutions to the equation 2x=x2-1 is:
A 0
B 1
C 2
D 3
E 4
Is there a way to answer this without using CAS?
There are a few ways, one method is to expand

(maybe expand up to the third or fourth polynomial), I expanded it to the third
+\frac{1}{2}x^2\log(2)^2+\frac{1}{6}x^3\log(2)^3)
So our question essentially becomes
+\frac{1}{2}x^2\log(2)^2+\frac{1}{6}x^3\log(2)^3)
+x^2\left(\frac{1}{2}\log(2)^2-1\right)+\frac{1}{6}x^3\log(2)^3)
Now the question is reduced down into how many zeros does this cubic polynomial have, which is doable even if it doesn't have rational roots, one could go on to approximate the roots using Newton's method (
http://en.wikipedia.org/wiki/Newton%27s_method) or in general the Householder method (
http://en.wikipedia.org/wiki/Householder%27s_method), turns out there are 3.
Note the above is prone to error and depends on how well you approximate, and if you did attempt the above on an exam, then you better have a fricken fast brain

I leave it to kamil to think of a more elegant solution ;]