Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question
1

Is there any way to find decomposition group and ramification groups

asked 8 years ago

nebuckandazzer gravatar image

updated 8 years ago

Let L/K be a Galois extension of number fields with Galois group G. Let OK and OL be the ring of algebraic integers of K and L respectively. Let POK be a prime. Let QOL be a prime lying over P.

The decomposition group is defined as D(Q|P)={σG | σ(Q)=Q}

The n-th ramification group is defined as En(Q|P)={σG:σ(a)a mod Qn+1 for all aOL}

I want to compute the decomposition group and ramification groups of the cyclotomic field Q(ζ) over Q where ζ is a root of unity.

How to do this ? Any idea ?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 8 years ago

slelievre gravatar image

Searching the web for ["decomposition group" galois extension sagemath] gives hints.

Here is how to compute the decomposition group and ramification group.

Setup.

sage: K = QQ
sage: L = CyclotomicField(4)
sage: G = L.galois_group()
sage: OK = K.ring_of_integers()
sage: OL = L.ring_of_integers()
sage: P = OK.ideal(5)
sage: Q = L.primes_above(5)[0]

Check setup.

sage: K
Rational Field
sage: L
Cyclotomic Field of order 4 and degree 2
sage: G
Galois group of Cyclotomic Field of order 4 and degree 2
sage: P
Principal ideal (5) of Integer Ring
sage: Q
Fractional ideal (-zeta4 - 2)

Decomposition group.

sage: Q.decomposition_group()
Subgroup [()] of Galois group of Cyclotomic Field of order 4 and degree 2
sage: Q.ramification_group(2)
Subgroup [()] of Galois group of Cyclotomic Field of order 4 and degree 2

Please suggest any edits to make the examples more interesting.

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: 8 years ago

Seen: 840 times

Last updated: Nov 08 '16