How to find a polynomial from an algebraic number?

  • Context: Undergrad 
  • Thread starter Thread starter guysensei1
  • Start date Start date
  • Tags Tags
    Polynomial
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
5 replies · 3K views
guysensei1
Messages
31
Reaction score
0
Given some algebraic number, let's say, √2+√3+√5, or 2^(1/3)+√2, is there some way to find the polynomial that will give 0 when that number is substituted in? I know that there are methods to find the polynomial for some of the simpler numbers like √2+√3, but I have no clue where to begin for the more complex ones like the 2 I listed above.
 
Mathematics news on Phys.org
Do you impose any restirictions on the polynomial you are looking for? The way you stated your problem P(x)=x-a where a is your number will do. Or even P(x)=0. I guess that's not what you were looking for though, so you need to make your question more precise.
Remember that every polynomial s.t.: P(a)=0 has form P(x)=(x-a)*Q(x) where Q is another polynomial. So you can start by writing it that way and thinking what Q do you need for your polynomial to do the job. My guess is that you want to restrict yourself only to polynomial with integer coefficients, which is hinted by the fact that you explicitly stated that zeroes are algebraic. In this case Viete formulas might help you.
 
Blazejr said:
Do you impose any restirictions on the polynomial you are looking for? The way you stated your problem P(x)=x-a where a is your number will do. Or even P(x)=0. I guess that's not what you were looking for though, so you need to make your question more precise.

Gah, I should have said that all the coefficients must be integers, and P(x)=0 is not allowed. :P
 
guysensei1 said:
Given some algebraic number, let's say, √2+√3+√5, or 2^(1/3)+√2, is there some way to find the polynomial that will give 0 when that number is substituted in? I know that there are methods to find the polynomial for some of the simpler numbers like √2+√3, but I have no clue where to begin for the more complex ones like the 2 I listed above.

Repeated use of [itex](b - a)(b + a) = b^2 - a^2[/itex] helps. Thus with [itex]b = x - \sqrt 2 - \sqrt 3[/itex] and [itex]a = \sqrt 5[/itex] we obtain [tex](x - \sqrt 2 - \sqrt 3 - \sqrt 5)(x - \sqrt 2 - \sqrt 3 + \sqrt 5) = x^2 - 2(\sqrt 2 + \sqrt 3)x + 2\sqrt 6 = p(x)[/tex] and the [itex]\sqrt 5[/itex] is gone. Now using the same trick with [itex]b = x^2 + 2\sqrt 6[/itex] and [itex]a = 2(\sqrt 2 + \sqrt 3)[/itex] (I make this choice because [itex](\sqrt 2 + \sqrt 3)^2 = 5 + 2\sqrt 6[/itex] and I already have a [itex]\sqrt 6[/itex] anyway) yields[tex] q(x) = p(x)(x^2 + 2\sqrt 6 + 2(\sqrt 2 + \sqrt 3)x) = x^4 - 8\sqrt 6 x^2 - 20x^2 + 24[/tex] and only the [itex]\sqrt{6}[/itex] remains. Applying the trick once more yields[tex] r(x) = q(x)(x^4 - 20x^2 + 24 + 8\sqrt{6}x^2) = (x^4 - 20x^2 + 24)^2 - 384x^4[/tex] and all the surds are gone.

Similarly, for [itex]2^{1/2} + 2^{1/3}[/itex] one can make use of [itex]b^3 - a^3 = (b - a)(b^2 + ab + a^2)[/itex] by setting [itex]b = x - \sqrt 2[/itex] and [itex]a = 2^{1/3}[/itex]: [tex] (x - \sqrt 2 - 2^{1/3})((x - \sqrt{2})^2 + 2^{1/3}(x - \sqrt 2) + 2^{2/3})<br /> = (x - \sqrt{2})^3 - 2.[/tex] (Alternatively one can observe that [itex](\sqrt 2 + 2^{1/3} - \sqrt 2)^3 = 2[/itex].) Working what one should multiply [itex](x - \sqrt{2})^3 - 2[/itex] by to obtain a polynomial with integer coefficients I leave as an exercise.
 
pasmith said:
[tex] r(x) = q(x)(x^4 - 20x^2 + 24 + 8\sqrt{6}x^2) = (x^4 - 20x^2 + 24)^2 - 384x^4[/tex]

This equation (when equated to 0) does not have √2+√3+√5 as a root. I think there's a mistake, but I can't find it.
 
guysensei1 said:
This equation (when equated to 0) does not have √2+√3+√5 as a root. I think there's a mistake, but I can't find it.

It should be [itex](x^4 - 20x^2 + 24)^2 - 96x^4[/itex], on account of the fact that [itex](4\sqrt{6})^2 = 96[/itex], not [itex]384[/itex].

(Woolfram alpha confirms that [itex]\sqrt 2 + \sqrt 3 + \sqrt 5[/itex] is a root.)