Properties

Label 16.0.435...736.108
Degree $16$
Signature $[0, 8]$
Discriminant $4.357\times 10^{24}$
Root discriminant \(34.67\)
Ramified primes $2,3$
Class number $2$
Class group [2]
Galois group $C_2^6:D_4$ (as 16T969)

Related objects

Downloads

Learn more

Show commands: Magma / Oscar / Pari/GP / SageMath

Normalized defining polynomial

Copy content comment:Define the number field
 
Copy content sage:x = polygen(QQ); K.<a> = NumberField(x^16 - 8*x^14 - 48*x^13 - 28*x^12 + 144*x^11 + 672*x^10 + 1488*x^9 + 2426*x^8 + 3072*x^7 + 3192*x^6 + 2736*x^5 + 1988*x^4 + 1152*x^3 + 592*x^2 + 192*x + 67)
 
Copy content gp:K = bnfinit(y^16 - 8*y^14 - 48*y^13 - 28*y^12 + 144*y^11 + 672*y^10 + 1488*y^9 + 2426*y^8 + 3072*y^7 + 3192*y^6 + 2736*y^5 + 1988*y^4 + 1152*y^3 + 592*y^2 + 192*y + 67, 1)
 
Copy content magma:R<x> := PolynomialRing(Rationals()); K<a> := NumberField(x^16 - 8*x^14 - 48*x^13 - 28*x^12 + 144*x^11 + 672*x^10 + 1488*x^9 + 2426*x^8 + 3072*x^7 + 3192*x^6 + 2736*x^5 + 1988*x^4 + 1152*x^3 + 592*x^2 + 192*x + 67);
 
Copy content oscar:Qx, x = polynomial_ring(QQ); K, a = number_field(x^16 - 8*x^14 - 48*x^13 - 28*x^12 + 144*x^11 + 672*x^10 + 1488*x^9 + 2426*x^8 + 3072*x^7 + 3192*x^6 + 2736*x^5 + 1988*x^4 + 1152*x^3 + 592*x^2 + 192*x + 67)
 

\( x^{16} - 8 x^{14} - 48 x^{13} - 28 x^{12} + 144 x^{11} + 672 x^{10} + 1488 x^{9} + 2426 x^{8} + \cdots + 67 \) Copy content Toggle raw display

Copy content comment:Defining polynomial
 
Copy content sage:K.defining_polynomial()
 
Copy content gp:K.pol
 
Copy content magma:DefiningPolynomial(K);
 
Copy content oscar:defining_polynomial(K)
 

Invariants

Degree:  $16$
Copy content comment:Degree over Q
 
Copy content sage:K.degree()
 
Copy content gp:poldegree(K.pol)
 
Copy content magma:Degree(K);
 
Copy content oscar:degree(K)
 
Signature:  $[0, 8]$
Copy content comment:Signature
 
Copy content sage:K.signature()
 
Copy content gp:K.sign
 
Copy content magma:Signature(K);
 
Copy content oscar:signature(K)
 
Discriminant:   \(4357047163233901253492736\) \(\medspace = 2^{66}\cdot 3^{10}\) Copy content Toggle raw display
Copy content comment:Discriminant
 
Copy content sage:K.disc()
 
Copy content gp:K.disc
 
Copy content magma:OK := Integers(K); Discriminant(OK);
 
Copy content oscar:OK = ring_of_integers(K); discriminant(OK)
 
Root discriminant:  \(34.67\)
Copy content sage:(K.disc().abs())^(1./K.degree())
 
Copy content gp:abs(K.disc)^(1/poldegree(K.pol))
 
Copy content magma:Abs(Discriminant(OK))^(1/Degree(K));
 
Copy content oscar:(1.0 * dK)^(1/degree(K))
 
Galois root discriminant:  $2^{555/128}3^{3/4}\approx 46.035004279893066$
Ramified primes:   \(2\), \(3\) Copy content Toggle raw display
Copy content comment:Ramified primes
 
Copy content sage:K.disc().support()
 
Copy content gp:factor(abs(K.disc))[,1]~
 
Copy content magma:PrimeDivisors(Discriminant(OK));
 
Copy content oscar:prime_divisors(discriminant((OK)))
 
Discriminant root field:  \(\Q\)
$\Aut(K/\Q)$:   $C_2^2$
Copy content comment:Autmorphisms
 
Copy content sage:K.automorphisms()
 
Copy content magma:Automorphisms(K);
 
Copy content oscar:automorphisms(K)
 
This field is not Galois over $\Q$.
This is not a CM field.
Maximal CM subfield:  \(\Q(\sqrt{-2}) \)

Integral basis (with respect to field generator \(a\))

$1$, $a$, $a^{2}$, $a^{3}$, $a^{4}$, $a^{5}$, $a^{6}$, $a^{7}$, $a^{8}$, $a^{9}$, $a^{10}$, $a^{11}$, $a^{12}$, $a^{13}$, $a^{14}$, $\frac{1}{350508149390767}a^{15}-\frac{74392393712947}{350508149390767}a^{14}+\frac{96222025946419}{350508149390767}a^{13}-\frac{102916419408159}{350508149390767}a^{12}-\frac{80765743544398}{350508149390767}a^{11}+\frac{35352911127421}{350508149390767}a^{10}-\frac{105316998545333}{350508149390767}a^{9}-\frac{46525038493351}{350508149390767}a^{8}-\frac{15980335899125}{350508149390767}a^{7}-\frac{174711857628807}{350508149390767}a^{6}+\frac{150770918436124}{350508149390767}a^{5}-\frac{53145444271048}{350508149390767}a^{4}-\frac{120664877848028}{350508149390767}a^{3}+\frac{109927043553416}{350508149390767}a^{2}+\frac{9724016742593}{350508149390767}a+\frac{112271686054231}{350508149390767}$ Copy content Toggle raw display

Copy content comment:Integral basis
 
Copy content sage:K.integral_basis()
 
Copy content gp:K.zk
 
Copy content magma:IntegralBasis(K);
 
Copy content oscar:basis(OK)
 

Monogenic:  Not computed
Index:  $1$
Inessential primes:  None

Class group and class number

Ideal class group:  $C_{2}$, which has order $2$
Copy content comment:Class group
 
Copy content sage:K.class_group().invariants()
 
Copy content gp:K.clgp
 
Copy content magma:ClassGroup(K);
 
Copy content oscar:class_group(K)
 
Narrow class group:  $C_{2}$, which has order $2$
Copy content comment:Narrow class group
 
Copy content sage:K.narrow_class_group().invariants()
 
Copy content gp:bnfnarrow(K)
 
Copy content magma:NarrowClassGroup(K);
 

Unit group

Copy content comment:Unit group
 
Copy content sage:UK = K.unit_group()
 
Copy content magma:UK, fUK := UnitGroup(K);
 
Copy content oscar:UK, fUK = unit_group(OK)
 
Rank:  $7$
Copy content comment:Unit rank
 
Copy content sage:UK.rank()
 
Copy content gp:K.fu
 
Copy content magma:UnitRank(K);
 
Copy content oscar:rank(UK)
 
Torsion generator:   \( -1 \)  (order $2$) Copy content Toggle raw display
Copy content comment:Generator for roots of unity
 
Copy content sage:UK.torsion_generator()
 
Copy content gp:K.tu[2]
 
Copy content magma:K!f(TU.1) where TU,f is TorsionUnitGroup(K);
 
Copy content oscar:torsion_units_generator(OK)
 
Fundamental units:   $\frac{15785570267944}{20618126434751}a^{15}-\frac{8600653228608}{20618126434751}a^{14}+\frac{142535632585904}{20618126434751}a^{13}+\frac{830616746632146}{20618126434751}a^{12}+\frac{708993577778440}{20618126434751}a^{11}-\frac{28\cdots 47}{20618126434751}a^{10}-\frac{12\cdots 40}{20618126434751}a^{9}-\frac{26\cdots 25}{20618126434751}a^{8}-\frac{39\cdots 16}{20618126434751}a^{7}-\frac{45\cdots 78}{20618126434751}a^{6}-\frac{42\cdots 72}{20618126434751}a^{5}-\frac{31\cdots 42}{20618126434751}a^{4}-\frac{19\cdots 34}{20618126434751}a^{3}-\frac{94\cdots 45}{20618126434751}a^{2}-\frac{35\cdots 98}{20618126434751}a-\frac{914724827581960}{20618126434751}$, $\frac{94116745283451}{350508149390767}a^{15}-\frac{48499884989045}{350508149390767}a^{14}-\frac{848449198815327}{350508149390767}a^{13}-\frac{40\cdots 39}{350508149390767}a^{12}+\frac{517373550184476}{350508149390767}a^{11}+\frac{18\cdots 34}{350508149390767}a^{10}+\frac{54\cdots 35}{350508149390767}a^{9}+\frac{89\cdots 11}{350508149390767}a^{8}+\frac{10\cdots 35}{350508149390767}a^{7}+\frac{98\cdots 18}{350508149390767}a^{6}+\frac{71\cdots 60}{350508149390767}a^{5}+\frac{37\cdots 13}{350508149390767}a^{4}+\frac{16\cdots 96}{350508149390767}a^{3}-\frac{282106701620633}{350508149390767}a^{2}+\frac{583255333575984}{350508149390767}a-\frac{23\cdots 56}{350508149390767}$, $\frac{237006041725784}{350508149390767}a^{15}-\frac{11049729705630}{350508149390767}a^{14}-\frac{21\cdots 89}{350508149390767}a^{13}-\frac{11\cdots 41}{350508149390767}a^{12}-\frac{40\cdots 31}{350508149390767}a^{11}+\frac{44\cdots 55}{350508149390767}a^{10}+\frac{15\cdots 44}{350508149390767}a^{9}+\frac{30\cdots 23}{350508149390767}a^{8}+\frac{41\cdots 40}{350508149390767}a^{7}+\frac{44\cdots 85}{350508149390767}a^{6}+\frac{39\cdots 56}{350508149390767}a^{5}+\frac{28\cdots 81}{350508149390767}a^{4}+\frac{16\cdots 19}{350508149390767}a^{3}+\frac{75\cdots 50}{350508149390767}a^{2}+\frac{28\cdots 43}{350508149390767}a+\frac{50\cdots 06}{350508149390767}$, $\frac{152659104119288}{350508149390767}a^{15}+\frac{54388134267203}{350508149390767}a^{14}-\frac{13\cdots 45}{350508149390767}a^{13}-\frac{77\cdots 10}{350508149390767}a^{12}-\frac{52\cdots 59}{350508149390767}a^{11}+\frac{28\cdots 80}{350508149390767}a^{10}+\frac{11\cdots 00}{350508149390767}a^{9}+\frac{23\cdots 10}{350508149390767}a^{8}+\frac{33\cdots 18}{350508149390767}a^{7}+\frac{38\cdots 58}{350508149390767}a^{6}+\frac{35\cdots 50}{350508149390767}a^{5}+\frac{26\cdots 56}{350508149390767}a^{4}+\frac{16\cdots 61}{350508149390767}a^{3}+\frac{81\cdots 63}{350508149390767}a^{2}+\frac{30\cdots 17}{350508149390767}a+\frac{84\cdots 59}{350508149390767}$, $\frac{58579355738226}{350508149390767}a^{15}-\frac{85002721640271}{350508149390767}a^{14}-\frac{460496697995946}{350508149390767}a^{13}-\frac{20\cdots 07}{350508149390767}a^{12}+\frac{23\cdots 90}{350508149390767}a^{11}+\frac{98\cdots 64}{350508149390767}a^{10}+\frac{24\cdots 70}{350508149390767}a^{9}+\frac{31\cdots 73}{350508149390767}a^{8}+\frac{33\cdots 15}{350508149390767}a^{7}+\frac{20\cdots 28}{350508149390767}a^{6}+\frac{506211366963168}{350508149390767}a^{5}-\frac{19\cdots 43}{350508149390767}a^{4}-\frac{28\cdots 05}{350508149390767}a^{3}-\frac{32\cdots 43}{350508149390767}a^{2}-\frac{16\cdots 18}{350508149390767}a-\frac{10\cdots 84}{350508149390767}$, $\frac{11981713719641}{350508149390767}a^{15}-\frac{793708019889078}{350508149390767}a^{14}+\frac{201847690868187}{350508149390767}a^{13}+\frac{76\cdots 48}{350508149390767}a^{12}+\frac{37\cdots 63}{350508149390767}a^{11}+\frac{92\cdots 68}{350508149390767}a^{10}-\frac{15\cdots 43}{350508149390767}a^{9}-\frac{54\cdots 25}{350508149390767}a^{8}-\frac{10\cdots 52}{350508149390767}a^{7}-\frac{13\cdots 01}{350508149390767}a^{6}-\frac{14\cdots 09}{350508149390767}a^{5}-\frac{11\cdots 52}{350508149390767}a^{4}-\frac{79\cdots 46}{350508149390767}a^{3}-\frac{44\cdots 27}{350508149390767}a^{2}-\frac{16\cdots 69}{350508149390767}a-\frac{60\cdots 08}{350508149390767}$, $\frac{21734801498668}{350508149390767}a^{15}+\frac{171367977077118}{350508149390767}a^{14}-\frac{244375000739501}{350508149390767}a^{13}-\frac{25\cdots 19}{350508149390767}a^{12}-\frac{81\cdots 97}{350508149390767}a^{11}+\frac{29\cdots 62}{350508149390767}a^{10}+\frac{47\cdots 12}{350508149390767}a^{9}+\frac{13\cdots 02}{350508149390767}a^{8}+\frac{23\cdots 74}{350508149390767}a^{7}+\frac{29\cdots 43}{350508149390767}a^{6}+\frac{29\cdots 10}{350508149390767}a^{5}+\frac{24\cdots 45}{350508149390767}a^{4}+\frac{16\cdots 13}{350508149390767}a^{3}+\frac{91\cdots 89}{350508149390767}a^{2}+\frac{33\cdots 57}{350508149390767}a+\frac{13\cdots 83}{350508149390767}$ Copy content Toggle raw display
Copy content comment:Fundamental units
 
Copy content sage:UK.fundamental_units()
 
Copy content gp:K.fu
 
Copy content magma:[K|fUK(g): g in Generators(UK)];
 
Copy content oscar:[K(fUK(a)) for a in gens(UK)]
 
Regulator:  \( 435835.4858500988 \)
Copy content comment:Regulator
 
Copy content sage:K.regulator()
 
Copy content gp:K.reg
 
Copy content magma:Regulator(K);
 
Copy content oscar:regulator(K)
 

Class number formula

\[ \begin{aligned}\lim_{s\to 1} (s-1)\zeta_K(s) =\mathstrut & \frac{2^{r_1}\cdot (2\pi)^{r_2}\cdot R\cdot h}{w\cdot\sqrt{|D|}}\cr \approx\mathstrut &\frac{2^{0}\cdot(2\pi)^{8}\cdot 435835.4858500988 \cdot 2}{2\cdot\sqrt{4357047163233901253492736}}\cr\approx \mathstrut & 0.507183836001041 \end{aligned}\]

Copy content comment:Analytic class number formula
 
Copy content sage:# self-contained SageMath code snippet to compute the analytic class number formula x = polygen(QQ); K.<a> = NumberField(x^16 - 8*x^14 - 48*x^13 - 28*x^12 + 144*x^11 + 672*x^10 + 1488*x^9 + 2426*x^8 + 3072*x^7 + 3192*x^6 + 2736*x^5 + 1988*x^4 + 1152*x^3 + 592*x^2 + 192*x + 67) DK = K.disc(); r1,r2 = K.signature(); RK = K.regulator(); RR = RK.parent() hK = K.class_number(); wK = K.unit_group().torsion_generator().order(); 2^r1 * (2*RR(pi))^r2 * RK * hK / (wK * RR(sqrt(abs(DK))))
 
Copy content gp:\\ self-contained Pari/GP code snippet to compute the analytic class number formula K = bnfinit(x^16 - 8*x^14 - 48*x^13 - 28*x^12 + 144*x^11 + 672*x^10 + 1488*x^9 + 2426*x^8 + 3072*x^7 + 3192*x^6 + 2736*x^5 + 1988*x^4 + 1152*x^3 + 592*x^2 + 192*x + 67, 1); [polcoeff (lfunrootres (lfuncreate (K))[1][1][2], -1), 2^K.r1 * (2*Pi)^K.r2 * K.reg * K.no / (K.tu[1] * sqrt (abs (K.disc)))]
 
Copy content magma:/* self-contained Magma code snippet to compute the analytic class number formula */ Qx<x> := PolynomialRing(Rationals()); K<a> := NumberField(x^16 - 8*x^14 - 48*x^13 - 28*x^12 + 144*x^11 + 672*x^10 + 1488*x^9 + 2426*x^8 + 3072*x^7 + 3192*x^6 + 2736*x^5 + 1988*x^4 + 1152*x^3 + 592*x^2 + 192*x + 67); OK := Integers(K); DK := Discriminant(OK); UK, fUK := UnitGroup(OK); clK, fclK := ClassGroup(OK); r1,r2 := Signature(K); RK := Regulator(K); RR := Parent(RK); hK := #clK; wK := #TorsionSubgroup(UK); 2^r1 * (2*Pi(RR))^r2 * RK * hK / (wK * Sqrt(RR!Abs(DK)));
 
Copy content oscar:# self-contained Oscar code snippet to compute the analytic class number formula Qx, x = PolynomialRing(QQ); K, a = NumberField(x^16 - 8*x^14 - 48*x^13 - 28*x^12 + 144*x^11 + 672*x^10 + 1488*x^9 + 2426*x^8 + 3072*x^7 + 3192*x^6 + 2736*x^5 + 1988*x^4 + 1152*x^3 + 592*x^2 + 192*x + 67); OK = ring_of_integers(K); DK = discriminant(OK); UK, fUK = unit_group(OK); clK, fclK = class_group(OK); r1,r2 = signature(K); RK = regulator(K); RR = parent(RK); hK = order(clK); wK = torsion_units_order(K); 2^r1 * (2*pi)^r2 * RK * hK / (wK * sqrt(RR(abs(DK))))
 

Galois group

$C_2^6:D_4$ (as 16T969):

Copy content comment:Galois group
 
Copy content sage:K.galois_group(type='pari')
 
Copy content gp:polgalois(K.pol)
 
Copy content magma:G = GaloisGroup(K);
 
Copy content oscar:G, Gtx = galois_group(K); G, transitive_group_identification(G)
 
A solvable group of order 512
The 44 conjugacy class representatives for $C_2^6:D_4$
Character table for $C_2^6:D_4$

Intermediate fields

\(\Q(\sqrt{-2}) \), 4.0.6144.1, 8.0.260919263232.15, 8.0.28991029248.2, 8.0.21743271936.7

Fields in the database are given up to isomorphism. Isomorphic intermediate fields are shown with their multiplicities.

Copy content comment:Intermediate fields
 
Copy content sage:K.subfields()[1:-1]
 
Copy content gp:L = nfsubfields(K); L[2..length(b)]
 
Copy content magma:L := Subfields(K); L[2..#L];
 
Copy content oscar:subfields(K)[2:end-1]
 

Sibling fields

Degree 16 siblings: 16.0.30257271966902092038144.4, 16.0.484116351470433472610304.7, 16.0.30257271966902092038144.5, 16.0.30257271966902092038144.6, 16.0.121029087867608368152576.17, 16.0.121029087867608368152576.18, 16.0.30257271966902092038144.11, 16.0.484116351470433472610304.18, 16.0.4357047163233901253492736.147, 16.0.484116351470433472610304.266, 16.0.484116351470433472610304.269, 16.0.4357047163233901253492736.67, 16.0.484116351470433472610304.274, 16.0.272315447702118828343296.127, 16.0.272315447702118828343296.130, 16.0.484116351470433472610304.169, 16.0.30257271966902092038144.54, 16.0.30257271966902092038144.56, 16.0.484116351470433472610304.276, 16.0.484116351470433472610304.277, 16.0.484116351470433472610304.75, 16.0.4357047163233901253492736.264, 16.0.484116351470433472610304.181, 16.0.1089261790808475313373184.138, 16.0.4357047163233901253492736.184, 16.0.1089261790808475313373184.69, 16.0.4357047163233901253492736.78, 16.0.4357047163233901253492736.186, 16.0.4357047163233901253492736.79, 16.0.272315447702118828343296.141, 16.0.272315447702118828343296.160, 16.0.121029087867608368152576.171, 16.0.121029087867608368152576.172, 16.0.484116351470433472610304.217, 16.0.4357047163233901253492736.287, 16.0.4357047163233901253492736.288, 16.0.1089261790808475313373184.147, 16.0.4357047163233901253492736.289, 16.0.4357047163233901253492736.223, 16.0.484116351470433472610304.234, 16.0.484116351470433472610304.235, 16.0.272315447702118828343296.179, 16.0.272315447702118828343296.184, 16.0.30257271966902092038144.73, 16.0.1089261790808475313373184.95, 16.0.121029087867608368152576.106, 16.0.484116351470433472610304.116, 16.0.30257271966902092038144.78, 16.0.1089261790808475313373184.109, 16.0.121029087867608368152576.123, 16.0.484116351470433472610304.129, 16.0.4357047163233901253492736.141, 16.0.484116351470433472610304.150, 16.0.1089261790808475313373184.18, 16.0.121029087867608368152576.56, 16.0.272315447702118828343296.21, 16.0.1089261790808475313373184.64, 16.0.121029087867608368152576.59, 16.0.4357047163233901253492736.52, 16.0.272315447702118828343296.39, 16.0.1089261790808475313373184.55, 16.0.4357047163233901253492736.304, 16.0.4357047163233901253492736.249
Degree 32 siblings: deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32, deg 32
Minimal sibling: 16.0.30257271966902092038144.4

Frobenius cycle types

$p$ $2$ $3$ $5$ $7$ $11$ $13$ $17$ $19$ $23$ $29$ $31$ $37$ $41$ $43$ $47$ $53$ $59$
Cycle type R R ${\href{/padicField/5.4.0.1}{4} }^{4}$ ${\href{/padicField/7.8.0.1}{8} }^{2}$ ${\href{/padicField/11.4.0.1}{4} }^{2}{,}\,{\href{/padicField/11.2.0.1}{2} }^{4}$ ${\href{/padicField/13.4.0.1}{4} }^{4}$ ${\href{/padicField/17.4.0.1}{4} }^{2}{,}\,{\href{/padicField/17.2.0.1}{2} }^{4}$ ${\href{/padicField/19.4.0.1}{4} }^{4}$ ${\href{/padicField/23.4.0.1}{4} }^{4}$ ${\href{/padicField/29.4.0.1}{4} }^{2}{,}\,{\href{/padicField/29.2.0.1}{2} }^{4}$ ${\href{/padicField/31.8.0.1}{8} }^{2}$ ${\href{/padicField/37.4.0.1}{4} }^{4}$ ${\href{/padicField/41.4.0.1}{4} }^{2}{,}\,{\href{/padicField/41.2.0.1}{2} }^{2}{,}\,{\href{/padicField/41.1.0.1}{1} }^{4}$ ${\href{/padicField/43.4.0.1}{4} }^{4}$ ${\href{/padicField/47.4.0.1}{4} }^{4}$ ${\href{/padicField/53.4.0.1}{4} }^{2}{,}\,{\href{/padicField/53.2.0.1}{2} }^{4}$ ${\href{/padicField/59.2.0.1}{2} }^{8}$

In the table, R denotes a ramified prime. Cycle lengths which are repeated in a cycle type are indicated by exponents.

Copy content comment:Frobenius cycle types
 
Copy content sage:# to obtain a list of [e_i,f_i] for the factorization of the ideal pO_K for p=7 in Sage: p = 7; [(e, pr.norm().valuation(p)) for pr,e in K.factor(p)]
 
Copy content gp:\\ to obtain a list of [e_i,f_i] for the factorization of the ideal pO_K for p=7 in Pari: p = 7; pfac = idealprimedec(K, p); vector(length(pfac), j, [pfac[j][3], pfac[j][4]])
 
Copy content magma:// to obtain a list of [e_i,f_i] for the factorization of the ideal pO_K for p=7 in Magma: p := 7; [<pr[2], Valuation(Norm(pr[1]), p)> : pr in Factorization(p*Integers(K))];
 
Copy content oscar:# to obtain a list of [e_i,f_i] for the factorization of the ideal pO_K for p=7 in Oscar: p = 7; pfac = factor(ideal(ring_of_integers(K), p)); [(e, valuation(norm(pr),p)) for (pr,e) in pfac]
 

Local algebras for ramified primes

$p$LabelPolynomial $e$ $f$ $c$ Galois group Slope content
\(2\) Copy content Toggle raw display 2.1.16.66j1.143$x^{16} + 8 x^{14} + 8 x^{12} + 16 x^{11} + 8 x^{10} + 16 x^{4} + 16 x^{3} + 2$$16$$1$$66$16T969$$[2, 2, 3, \frac{7}{2}, \frac{7}{2}, 4, \frac{17}{4}, \frac{19}{4}]^{2}$$
\(3\) Copy content Toggle raw display 3.2.2.2a1.2$x^{4} + 4 x^{3} + 8 x^{2} + 8 x + 7$$2$$2$$2$$C_2^2$$$[\ ]_{2}^{2}$$
3.2.2.2a1.2$x^{4} + 4 x^{3} + 8 x^{2} + 8 x + 7$$2$$2$$2$$C_2^2$$$[\ ]_{2}^{2}$$
3.2.4.6a1.2$x^{8} + 8 x^{7} + 32 x^{6} + 80 x^{5} + 136 x^{4} + 160 x^{3} + 128 x^{2} + 64 x + 19$$4$$2$$6$$D_4$$$[\ ]_{4}^{2}$$

Spectrum of ring of integers

(0)(0)(2)(3)(5)(7)(11)(13)(17)(19)(23)(29)(31)(37)(41)(43)(47)(53)(59)