Algebraic extension by $\sqrt{-7}$

91 Views Asked by At

In trying to find the Galois group of a polynomial, I am trying to see if adjoining $\sqrt{-7}$ can split the polynomial but entering factor(x^2 + 7 , $\sqrt{-7}$) is invalid. How can I accomplish this?

1

There are 1 best solutions below

0
On BEST ANSWER

So your problem is with the particular Maple syntax?

factor(x^2+7, (-7)^(1/2));

           /         (1/2)\ /        (1/2)\
          -\-x + (-7)     / \x + (-7)     /

note:

sqrt(-7);

                     (1/2)
                  I 7     

(-7)^(1/2);

                      (1/2)
                  (-7)

And you were trying not to have to do it like this?

factor(x^2+7, {sqrt(-1),sqrt(7)});

            /   (1/2)    \ /   (1/2)    \
           -\I 7      - x/ \I 7      + x/