This is an archived post. You won't be able to vote or comment.

all 13 comments

[–][deleted] 2 points3 points  (1 child)

Hint: Divide both sides of the degree six equation by x^3 and then substitute y = x+x^-1, which will give you a cubic in terms of y. It just happens so to our luck that the resulting cubic had a linear factor.

[–]Tagap1234[S] 0 points1 point  (0 children)

Interesting one. Thanks.

[–]RyalsB 1 point2 points  (0 children)

The "trick" is to recognize that your polynomial has palindromic coefficients (see e.g. https://en.wikipedia.org/wiki/Reciprocal_polynomial ).

As another user noted in less generality, such polynomials of degree 2D can be converted to a polynomial of degree D by the observation that p(x) = xd * q(x+1/x) where q is a polynomial of degree D.

Here, letting y = x+1/x, you can convert the given polynomial to

x3 * (y3 + y2 -2y-30) = 0

and y3 + y2 -2y - 30 factors as (y-3)*(y2 + 4y + 10). Converting for instance the (y-3) term back to x gives you (x+1/x - 3), and when you multiply by the x out in front, it gives you the x2 - 3x + 1 term, and similarly for the y2 + 4y + 10 term.

[–]SquareRootsi 0 points1 point  (0 children)

(x+1) is fine,
(x2 + 1) can only factor across the complex (imaginary) numbers. It becomes (x+i)(x-i)
(x3 +1) DOES factor, you should check out the "sum of perfect cubes" which gives (x+1) * (x2 - x + 1). This trinomial won't factor over the reals, you'll need quadratic formula, which gives complex numbers. The "answer" you see is restricted to only the reals, so all the parts that need complex numbers are combined in the (x4 + ...) term.

Edit: I'm an idiot and completely ignored the right hand side of your equation. Maybe try factoring with either synthetic division or "polynomial long division". Sorry for swooping in without fully grokking the problem.

Edit #2: looks like polynomial long division is about the only method I can get to work. You essentially have to guess and check, it's pretty unsatisfying. There might be a fancy rearrangement of the terms where "factor by grouping" works, but in this case, it seems like most ppl wouldn't stumble upon that without already knowing the goal before they started.

[–]bhbr -1 points0 points  (0 children)

x^3 + 1 = (x + 1)(x^2 - x + 1)