Help me solving the above problem.

link|improve this question

0% accept rate
it is proven that there is no close formula for n>=5. do you mean you are looking for a numerical approximation? – amit May 7 '11 at 12:14
feedback

closed as not a real question by Mat, Jonas, woodchips, davin, Tomasz Nurkiewicz May 7 '11 at 12:30

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

3 Answers

as I said in the comment it is proven that there is no algorithm for n>=5.
however, you can find a numerical approximation (i.e. Newton`s Method)

link|improve this answer
No formula using radical does not imply there is no algorithm for solving the problem. Abel himself solved the quintic using theta functions. I believe the hypergeometric functions can be used to solve any polynomial. – Aryabhatta May 7 '11 at 16:00
feedback

If n >= 5, then according to Galois Theory, there exists no algorithm to analytically solve the polynom.

However, you can use numerical analysis to find the roots (e.g. Newton's method in wikipedia or your favorite numerical methods books)

link|improve this answer
No formula using radical does not imply there is no algorithm for analytically solving the problem. Abel himself solved the quintic using theta functions. I believe the hypergeometric functions can be used to solve any polynomial. – Aryabhatta May 7 '11 at 16:00
feedback

For n > 4, you can use Newton's method. Just take 0 as the first guess, and proceed iteratively. Of course this will not work for complex roots.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.