Panphobia
- 435
- 13
How would I go about solving an Nth degree polynomial function such that N>=5?
Ax^{n}+Bx^{n-1}+...+Z = 0
Ax^{n}+Bx^{n-1}+...+Z = 0
Panphobia said:That might take a while with this
u(k) = (900-3k)r^{k-1}
s(n) = Σ_{k=1...n}u(k)
find r for which s(5000) = -600,000,000,000
But ok no problem, I guess I will write a program to iterate through all possible values of r.
The Galois group of a general complex polynomial of degree ##n\geq 5## is not solvable. Thus, you won't be able to come up with something like the quadratic formula for ##n\geq 5##. You have to find other ways to find roots.Panphobia said:How would I go about solving an Nth degree polynomial function such that N>=5?
Ax^{n}+Bx^{n-1}+...+Z = 0
Mandelbroth said:The Galois group of a general complex polynomial of degree ##n\geq 5## is not solvable. Thus, you won't be able to come up with something like the quadratic formula for ##n\geq 5##.
You know I meant "in terms of radicals, powers, addition, and subtraction," right?jackmell said:Given:
$$ w(z)=a_0+a_1 z+a_2 z^2+\cdots+a_nz^n$$
by Laurent's Expansion Theorem applied to algebraic functions, we can always write down an explicit expression (just like the quadratic formula) for the roots in terms of complex-contour integrals:
$$
w(z)=b\prod_{j=1}^N \left(z-\frac{1}{2k_j\pi i}\mathop{\oint} \frac{z_{j,k}(\zeta)}{\zeta}d\zeta\right)^{k}
$$
However, the integral is in general not solvable in terms of elementary functions so must be evaluated numerically.
Mandelbroth said:I've never thought of that, so I've learned something new today.![]()