= (-b + Sqrt(Power(b,2) - 4*c))/ 2
= (-b - Sqrt(Power(b,2) - 4*c))/ 2
Why use the POWER function instead of the exponential operator (^)?
In other words, why not b^2?
PS: Although the quadratic equation that you wrote above works for
Paul's polynomial, since you wrote it in the general form, I would
write the denominator as (2*a), where "a" is the coefficient of the
x^2 term. In Paul's case, a=1.
Note to Paul: What Dana provided are the "roots" of polynomial, not
the "factors". To answer your question: no, Excel itself cannot
provide the factors. "Is it possible" to do programmatically?
Probably; but I doubt that it's easy.