How can you use a substitution to solve a quartic equation?

AI Thread Summary
To solve the quartic equation x^4 - x^2 + 2x^3 - 6x - 3 = 0, numerical methods are recommended as it does not have simple solutions. The equation can be factored into two quadratics, with the first yielding two real solutions at (1±√5)/2, while the second has no real solutions. A substitution method can simplify the quartic to a reduced form, allowing for further analysis and potential factoring. This process involves converting the quartic into a resolvent cubic, which can be complex and cumbersome. Many users suggest using software tools like Mathematica for practical solutions.
stupidkid
Messages
18
Reaction score
0
PHP:
Solve for x:
x^2+x^2/(x+1)^2=3
I got the final equation but I am unable to get the it form there.
x^4-x^2+2x^3-6x-3=0
 
Physics news on Phys.org
I'm afraid there is no simple way to find x - you'll have to use numerical methods. You can find first 2 solutions by graphing this, and the last 2 are complex. I've enclosed the graph that should help you find where your roots are located for real numbers
 
Last edited:
It is incorrect, there is a formula to solve algebraic eqations until the 4 grade.

I have links to italian pages, but, if you try you'll find something in english, too.

The two real solutions are (1+-sqrt(5))/2
 
Last edited:
x^4+2x^3-x^2-6x-3 = (x^2-x+1)(x^2+3x+3)

The first has the solutions above
The second has no real solutions
 
You made a typo, x^4+2x^3-x^2-6x-3 = (x^2-x-1)(x^2+3x+3)
 
Yes, of course!

it's x^2-x-1
 
there is another method to do it though using quadratic equations entirely.
use a2 + b2 = (a - b)2 + 2ab. then put x2/(x+1) = y
 
Is there a actual way to solve these type of sums! PLS I NEED HELP I AM DUMB.
 
stupidkid said:
Is there a actual way to solve these type of sums! PLS I NEED HELP I AM DUMB.

You know, there is a method for solving these "quartic" equations. It's messy and confussing though. I'll describe it in general terms; you can investigate it further if you wish. Consider the general case:

x^4+bx^3+cx^2+dx+e=0

We can make a substitution x=y-\frac{1}{4}b to convert it to a "reduced quartic":

y^4+qy^2+ry+s=0

Can you make that substitution?

Now, assume the reduced quartic can be factored into two quadratics:

y^4+qy^2+ry+s=(y^2+2ky+l)(y^2-2ky+m)

where k,l, and m are to be determined. You can equate coefficients of like powers and end up with two equations for l and m in terms of k. Upon making some additional substitutions you'll end up with a sixth-degree polynomial called the "resolvent cubic":

64k^6+32qk^4+4(q^2-4s)k^2-r^2=0

This resolvent cubic is actually a cubic equation in k^2. Now, you can use the method, equally messy, to solve for a general cubic equation for k^2[/tex] and then use one value of k to determine l and m, then the quadratics above. <br /> <br /> You&#039;re thinking now, &quot;forget that dude, I&#039;ll just plug it into Mathematica and call it done&quot;. <img src="https://cdn.jsdelivr.net/joypixels/assets/8.0/png/unicode/64/1f642.png" class="smilie smilie--emoji" loading="lazy" width="64" height="64" alt=":smile:" title="Smile :smile:" data-smilie="1"data-shortname=":smile:" />
 
Back
Top