$$9x^5+7x^2-9=0$$
How do we evaluate the roots of the given polynomial? We're asked to find its real positive zero.
What I tried doing:
Let $$f(x)=9x^5+7x^2-9$$ Using Descartes' rule of signs, I deduced that the given polynomial can have one positive real zero at the most. Also- $$f(-x)=-9x^5+7x^2-9$$ From this expression we can deduce that the given polynomial has two negative real zeros at the most. From here it is obvious that the polynomial has at least two complex roots.
This is not much progress, and I'm not sure what else I could do. According to Wolfram Alpha this polynomial has one real positive zero and four complex zeros. Any hints or explanation would be appreciated, thanks! Also, I'm not sure whether this is an irreducible polynomial or not, so I will not be including that tag.
EDIT:
I found the maxima and minima points of $f(x)$: $$f'(x)=45x^4+14x=0$$ $$x(45x^3+14)=0$$ $$x=0$$ or $$x=- \sqrt[3]{\frac {14}{45}}$$ This gives me the extremities of the curve, and I now have a rough approximation of the curve.
You are going to need to use numerical approximations. Newton-Raphson is good, there is also the Golden-Section search and the Bisection algorithm.
If you were wondering what the answer is, using mathematicas NSolve function will use a combination of Bisection, Newton-Raphson to approximate the values.
NSolve[$9x^5 + 7 x^2 - 9 == 0, x$]
Which produces the set
Resulting in your $1$ real solution of $f(0.84856) \sim 0$