Homepage › Solution manuals › David A. Cox › Galois Theory › Exercise 12.1.8
Exercise 12.1.8
Let defined as in (12.15).
- (a)
- Lagrange noted that any transposition fixes exactly one of and interchanges the other two, possibly changing the sign of both. Prove this and use it to show that is fixed by all elements of .
- (b)
- Use the methods of Chapter 2 to express in terms of the . The result should be the identity (12.16).
Answers
Proof.
- (a)
-
By (12.15),
Since has order 4, the orbit of under has elements, so
therefore
With similar computations, we obtain
thus
Since , and , then is fixed by all elements of , and so is in .
- (b)
-
With the methods of Chapter 2, 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.<x0,x1,x2,x3,y1,y2,y3,y4> = PolynomialRing(QQ, order = ’lex’) J = R.ideal(e1-y1,e2-y2,e3-y3,e4-y4) G = J.groebner_basis() t1= x0+x1-x2-x3; t2 = x0-x1+x2-x3; t3 = x0-x1-x2+x3 u = t1*t2*t3 var(’sigma_1,sigma_2,sigma_3,sigma_4’) v = u.reduce(G).subs(y1=sigma_1, y2 = sigma_2,y3=sigma_3,y4=sigma_4);vgive
So
2022-07-19 00:00