Loading [MathJax]/jax/output/HTML-CSS/jax.js

Sorry, this content is no longer available

Ask Your Question
1

Compute Galois group when base field is not Q.

asked 2 years ago

hfy880916 gravatar image

I am trying to compute the Galois group Gal(L/k) where L/k is a Galois extension of number fields. k is not necessarily Q.

k = NumberField(x^2 + 1, 'i', embedding = I)
F = k.extension(x^4 - 17, 'a', embedding = 17^(1/4))
F.<a> = F.absolute_field()
G = F.galois_group()
k_gal = []
for g in G:
    if g(i) == i:
        k_gal.append(g)
Gal_F_k = G.subgroup(k_gal)

But Sage returns a TypeError.

TypeError: a fails to convert into the map's domain Number Field in a with defining polynomial x^8 + 4*x^6 - 28*x^4 + 208*x^2 + 256, but a `pushforward` method is not properly implemented

How could I fix my code?

Preview: (hide)

2 Answers

Sort by » oldest newest most voted
1

answered 2 years ago

dan_fulea gravatar image

If i am correctly understanding what happens in the code, we use j=1 , a=417 , and the tower of algebraic number fields F=Q(a,j)k=Q(j)Q and ask for the group G=Gal(F:Q), then check for each g in G if it stabilizes j.

This can be done by no longer using k as follows:

R.<x> = PolynomialRing(QQ)
F.<j, a> = NumberField([x^2 + 1, x^4 - 17])
L.<w> = F.galois_closure()
G = L.galois_group()
J = (x^2 + 1).roots(ring=L, multiplicities=False)[0]
A = (x^4 - 17).roots(ring=L, multiplicities=False)[0]
Stab_J = [ g for g in G if g(J) == J ]

Note that working like this we obtain a list, not a subgroup of G.

sage: Stab_J
[(), (1,2,4,3)(5,7,8,6), (1,3,4,2)(5,6,8,7), (1,4)(2,3)(5,8)(6,7)]
sage: list(G)
[(),
 (1,2,4,3)(5,7,8,6),
 (1,3,4,2)(5,6,8,7),
 (1,4)(2,3)(5,8)(6,7),
 (1,5)(2,6)(3,7)(4,8),
 (1,6)(2,8)(3,5)(4,7),
 (1,7)(2,5)(3,8)(4,6),
 (1,8)(2,7)(3,6)(4,5)]
sage:

Here, we use J,A - which are elements in the "abstract field" L, so that there are maps jJ and aA from F to L.

Preview: (hide)
link
0

answered 2 years ago

Doesn't

L.galois_group(K)

work?

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2 years ago

Seen: 358 times

Last updated: May 09 '22