Homepage › Solution manuals › David A. Cox › Galois Theory › Exercise 12.1.3
Exercise 12.1.3
This exercise concerns Examples 12.1.3 and 12.1.5.
- (a)
- Compute the resolvent of Example 12.1.3. This can be done using the methods of Section 2.3.
- (b)
- Let . Show that .
- (c)
- Show that is not normal in .
- (d)
- Show that is isomorphic to , the dihedral group of order 8.
Answers
Proof.
- (a)
-
are distinct elements of the orbit of
.
Since (see Part (b)), , so are all the elements of .
Therefore
Using the methods of section 2.3, we obtain with the following Sage instructions
e = SymmetricFunctions(QQ).e() e1, e2, e3 , e4 = e([1]).expand(4),e([2]).expand(4),e([3]).expand(4), e([4]).expand(4) R.<y,x0,x1,x2,x3,y1,y2,y3,y4> = PolynomialRing(QQ, order = ’degrevlex’) J = R.ideal(e1-y1, e2-y2, e3-y3,e4-y4) G = J.groebner_basis() z1 = x0*x1 + x2*x3 z2 = x0*x2 + x1*x3 z3 = x0*x3 + x1*x2 f = (y-(x0*x1 + x2*x3))*(y-(x0*x2 + x1*x3))*(y-(x0*x3 + x1*x2)) var(’sigma_1,sigma_2,sigma_3,sigma_4’) g=f.reduce(G).subs(y1=sigma_1,y2=sigma_2,y3=sigma_3,y4=sigma_4) g.collect(y)So
- (b)
-
therefore
Moreover
We obtain this by hand, or with the Dimino’s algorithm, or with the Sage instructions:
G = PermutationGroup([(1,2),(1,3,2,4)]) G.list()The orbit of contains three distinct elements , so . Since , . But contains the 8 elements of , thus
- (c)
- , so is not normal in .
- (d)
- If we number the 4 consecutive summits of the square in the order , then is isomorphic to the group generated by the rotation of angle corresponding to and the reflection relative to the diagonal corresponding to , and this is the dihedral group .