How can I find the zeros to this cubic equation?

  • Thread starter Thread starter owtu
  • Start date Start date
  • Tags Tags
    Cubic
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
14 replies · 4K views
owtu
Messages
15
Reaction score
1
4x^3 + 8x^2 + 41x + 37
 
Physics news on Phys.org
Synthetic division looks like a good bet. Although you'd have to try a lot of different roots.
 
jackarms said:
Synthetic division looks like a good bet. Although you'd have to try a lot of different roots.

Not really, 37 is prime, so we have the possible rational roots

[tex]\pm\frac{1,37}{1,2,4}[/tex]

but since all the coefficients of the cubic are positive, we can toss out the positive roots as possible solutions so all we're left with are 6 possibilities.
 
for any polynomial there's the Horner's method, which is basically trial and error.
[tex]ax^3 + bx^2 + cx + d = 0[/tex]

I prefer substituting to remove the squared member from the equation such that
[tex]y = x + \frac{b}{3a}[/tex] ( Tschirnhausen's substitution I believe)and you would end up with[tex]y^3 + py + q = 0[/tex] then apply something called the Cardano's method or solution, I'm not even sure what it's called in English tbh.

[tex]x_{1,2,3} = u - \frac{p}{3u} \Longrightarrow u^3 = - \frac{q}{2} + \sqrt{\frac{q^2}{4} + \frac{p^3}{27}}[/tex]fromt he back of my head, this is the simplest way to tackle any cubed polynomial.
 
Last edited:
Ok, yes, you can find the possible candidates for rational roots and test them with the Horner's method, for example, but it's such a tedious process :( Cubics are always tedious, certainly, it will become easier once you determine there are are rational roots to the problem. I guess to each their own. Mathematica or mathcad doesn't complain if I make them do something the long way , might take a few microseconds longer :(
 
Last edited:
If, once you find a rational root like -1, you can long divide (x- (root) ) into the original cubic polynomial to reduce it to a quadratic and then solve that by using the quadratic formula in order to find the other two roots.
 
HallsofIvy said:
There are, unfortunately, no rational zeros of this polynomial so you will need to use Cardano's formula.

X=-1: 4x^3 + 8x^2 + 41x + 37 =0 ---> -4+8-41+37 = 4-4 = 0:-p

ehild
 
HallsofIvy said:
There are, unfortunately, no rational zeros of this polynomial so you will need to use Cardano's formula.
Um, no. It's a trivial matter to determine that -1 is a solution: -4+8-41+37 is zero. Or, as ehild put it earlier,
ehild said:
It does not hurt to try x=1 or x=-1 before starting some complicated process. Here the root can be only negative, and -1 works !
 
lendav_rott said:
Ok, yes, you can find the possible candidates for rational roots and test them with the Horner's method, for example, but it's such a tedious process :( Cubics are always tedious, certainly, it will become easier once you determine there are are rational roots to the problem. I guess to each their own. Mathematica or mathcad doesn't complain if I make them do something the long way , might take a few microseconds longer :(

Likewise, after I press 'enter', Maple returns the three solutions before my hand can reach my coffee cup. My excuse is that I have been doing this stuff for more than 50 years and have just gotten lazy in my old age. However, I am conflicted about the suggestion of an immediate jump to the use of a CAS by somebody who is just starting out in learning the material.
 
Last edited: