Help me solving the above problem.
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.
|
as I said in the comment it is proven that there is no algorithm for n>=5.
| ||||
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) | ||||
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. | |||
|
feedback
|