Simple question for you awesome guys :)
I've got the formular for a polynomial:
7x^4-56x^3+224x^2-56x+231=0
The thing i need to do is to solve and factorize the above equation.
How can I do this?
Simple question for you awesome guys :)
I've got the formular for a polynomial:
7x^4-56x^3+224x^2-56x+231=0
The thing i need to do is to solve and factorize the above equation.
How can I do this?
On
Besides to another answer, you can use the fsolve command. Firstly define your polynomial as
p:=7x^4-56x^3+224x^2-56x+231;
in Maple environment and then enter the following command as I pointed:
fsolve(p=0);
As you see below, I check of probable solutions by making a plot. It tells us that p=0 has no real solutions.

The
factorcommand will help you. For exampleWill factor your polynomial in the complex plane. See the maple help here.