I found a method to factorize quartic polynomials which I don't understand how it works.
It is presented like this:
Cross method This methodology lets to factorize ordered and completed 4th polynomials of the form:
$$F(x) = ax^4+bx^3+cx^2+dx+e$$
Rules:
- Factor the extreme terms with cross method to get a squared term (generally different from the squared term of the original polynomial).
- Get $\Delta$ from the difference of the squared term of the polynomial and the term of the first step, and replace the result in the original polynomial.
- Then, verify the binary combinations as double cross factoring.
I used for different exercises and it works, but I don't understand the basis for this method.
Can anyone explain the reasons?
P.D.
Example
$$x^4+2x^3+3x^2+2x-3$$
- Factoring the extremes terms; $x^4$ and $-3$:
$$(x^2+3)(x^2-1)$$ The result of the cross method is $3x^2-x^2=2x^2$
- Calculating $\Delta$:
$$\Delta=\text{(original squared term)}-\text{(step one squared term)}= (3x^2)-(2x^2)=x^2$$
And replaced it in the original polynomial:
$$x^4+2x^3+x^2+2x-3$$
- Using the cross method for second and fourth term:
For second term: $(x^2+x)(x^2+x)$ is $2x^3$
For fourth term: $(x+3)(x-1)$ is $2x$
So, arranging the terms, the two factors are:
$$(x^2+x+3)(x^2+x-1)$$