Properties

Label 24.4.229...125.8
Degree $24$
Signature $(4, 10)$
Discriminant $2.295\times 10^{60}$
Root discriminant \(327.37\)
Ramified primes $5,89$
Class number $8$ (GRH)
Class group [2, 4] (GRH)
Galois group $\GL(2,5)$ (as 24T1353)

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^24 - 4*x^23 + 6*x^22 - 4*x^21 + 3116*x^20 + 6764*x^19 - 132076*x^18 + 859384*x^17 + 1275904*x^16 + 9094554*x^15 - 96062239*x^14 + 148582296*x^13 + 5667704141*x^12 - 31114295514*x^11 + 29403672616*x^10 + 318568634184*x^9 - 2635907116121*x^8 + 5096904048179*x^7 + 1399615659494*x^6 - 31620921402991*x^5 + 150857399860436*x^4 + 46785615621511*x^3 - 1121050409397834*x^2 + 642150457868791*x + 3470991058617581)
 
Copy content gp:K = bnfinit(y^24 - 4*y^23 + 6*y^22 - 4*y^21 + 3116*y^20 + 6764*y^19 - 132076*y^18 + 859384*y^17 + 1275904*y^16 + 9094554*y^15 - 96062239*y^14 + 148582296*y^13 + 5667704141*y^12 - 31114295514*y^11 + 29403672616*y^10 + 318568634184*y^9 - 2635907116121*y^8 + 5096904048179*y^7 + 1399615659494*y^6 - 31620921402991*y^5 + 150857399860436*y^4 + 46785615621511*y^3 - 1121050409397834*y^2 + 642150457868791*y + 3470991058617581, 1)
 
Copy content magma:R<x> := PolynomialRing(Rationals()); K<a> := NumberField(x^24 - 4*x^23 + 6*x^22 - 4*x^21 + 3116*x^20 + 6764*x^19 - 132076*x^18 + 859384*x^17 + 1275904*x^16 + 9094554*x^15 - 96062239*x^14 + 148582296*x^13 + 5667704141*x^12 - 31114295514*x^11 + 29403672616*x^10 + 318568634184*x^9 - 2635907116121*x^8 + 5096904048179*x^7 + 1399615659494*x^6 - 31620921402991*x^5 + 150857399860436*x^4 + 46785615621511*x^3 - 1121050409397834*x^2 + 642150457868791*x + 3470991058617581);
 
Copy content oscar:Qx, x = polynomial_ring(QQ); K, a = number_field(x^24 - 4*x^23 + 6*x^22 - 4*x^21 + 3116*x^20 + 6764*x^19 - 132076*x^18 + 859384*x^17 + 1275904*x^16 + 9094554*x^15 - 96062239*x^14 + 148582296*x^13 + 5667704141*x^12 - 31114295514*x^11 + 29403672616*x^10 + 318568634184*x^9 - 2635907116121*x^8 + 5096904048179*x^7 + 1399615659494*x^6 - 31620921402991*x^5 + 150857399860436*x^4 + 46785615621511*x^3 - 1121050409397834*x^2 + 642150457868791*x + 3470991058617581)
 

\( x^{24} - 4 x^{23} + 6 x^{22} - 4 x^{21} + 3116 x^{20} + 6764 x^{19} - 132076 x^{18} + \cdots + 34\!\cdots\!81 \) 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:  $24$
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:  $(4, 10)$
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:   \(2295251366305746200663037028252313182580209076404571533203125\) \(\medspace = 5^{25}\cdot 89^{22}\) 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:  \(327.37\)
Copy content comment:Root discriminant
 
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:OK = ring_of_integers(K); (1.0 * abs(discriminant(OK)))^(1/degree(K))
 
Galois root discriminant:  $5^{23/20}89^{19/20}\approx 452.62236684313837$
Ramified primes:   \(5\), \(89\) 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(\sqrt{5}) \)
$\Aut(K/\Q)$:   $C_4$
Copy content comment:Automorphisms
 
Copy content sage:K.automorphisms()
 
Copy content magma:Automorphisms(K);
 
Copy content oscar:automorphism_group(K)
 
This field is not Galois over $\Q$.
This is not a CM field.
This field has no CM subfields.

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

$1$, $a$, $a^{2}$, $a^{3}$, $a^{4}$, $a^{5}$, $a^{6}$, $a^{7}$, $a^{8}$, $\frac{1}{5}a^{9}-\frac{2}{5}a^{7}+\frac{1}{5}a^{5}+\frac{1}{5}a^{4}-\frac{2}{5}a^{2}+\frac{1}{5}$, $\frac{1}{5}a^{10}-\frac{2}{5}a^{8}+\frac{1}{5}a^{6}+\frac{1}{5}a^{5}-\frac{2}{5}a^{3}+\frac{1}{5}a$, $\frac{1}{5}a^{11}+\frac{2}{5}a^{7}+\frac{1}{5}a^{6}+\frac{2}{5}a^{5}+\frac{2}{5}a^{2}+\frac{2}{5}$, $\frac{1}{5}a^{12}+\frac{2}{5}a^{8}+\frac{1}{5}a^{7}+\frac{2}{5}a^{6}+\frac{2}{5}a^{3}+\frac{2}{5}a$, $\frac{1}{5}a^{13}+\frac{1}{5}a^{8}+\frac{1}{5}a^{7}-\frac{2}{5}a^{5}+\frac{1}{5}a^{2}-\frac{2}{5}$, $\frac{1}{5}a^{14}+\frac{1}{5}a^{8}+\frac{2}{5}a^{7}-\frac{2}{5}a^{6}-\frac{1}{5}a^{5}-\frac{1}{5}a^{4}+\frac{1}{5}a^{3}+\frac{2}{5}a^{2}-\frac{2}{5}a-\frac{1}{5}$, $\frac{1}{5}a^{15}+\frac{2}{5}a^{8}-\frac{1}{5}a^{6}-\frac{2}{5}a^{5}+\frac{2}{5}a^{3}-\frac{1}{5}a-\frac{1}{5}$, $\frac{1}{5}a^{16}-\frac{2}{5}a^{7}-\frac{2}{5}a^{6}-\frac{2}{5}a^{5}-\frac{2}{5}a^{2}-\frac{1}{5}a-\frac{2}{5}$, $\frac{1}{5}a^{17}-\frac{2}{5}a^{8}-\frac{2}{5}a^{7}-\frac{2}{5}a^{6}-\frac{2}{5}a^{3}-\frac{1}{5}a^{2}-\frac{2}{5}a$, $\frac{1}{25}a^{18}+\frac{1}{25}a^{16}+\frac{1}{25}a^{14}+\frac{2}{25}a^{13}+\frac{1}{25}a^{12}+\frac{2}{25}a^{11}+\frac{1}{25}a^{10}+\frac{2}{25}a^{9}+\frac{6}{25}a^{8}-\frac{8}{25}a^{7}-\frac{9}{25}a^{6}+\frac{7}{25}a^{5}+\frac{1}{25}a^{4}+\frac{1}{5}a^{3}-\frac{9}{25}a^{2}-\frac{2}{5}a+\frac{6}{25}$, $\frac{1}{25}a^{19}+\frac{1}{25}a^{17}+\frac{1}{25}a^{15}+\frac{2}{25}a^{14}+\frac{1}{25}a^{13}+\frac{2}{25}a^{12}+\frac{1}{25}a^{11}+\frac{2}{25}a^{10}+\frac{1}{25}a^{9}-\frac{8}{25}a^{8}+\frac{1}{25}a^{7}+\frac{7}{25}a^{6}-\frac{4}{25}a^{5}-\frac{9}{25}a^{3}+\frac{6}{25}a-\frac{1}{5}$, $\frac{1}{25}a^{20}+\frac{2}{25}a^{15}-\frac{1}{5}a^{8}-\frac{1}{5}a^{7}+\frac{1}{5}a^{6}+\frac{3}{25}a^{5}-\frac{1}{5}a^{3}-\frac{1}{5}a^{2}+\frac{1}{5}a+\frac{4}{25}$, $\frac{1}{25}a^{21}+\frac{2}{25}a^{16}-\frac{1}{5}a^{8}-\frac{1}{5}a^{7}+\frac{3}{25}a^{6}+\frac{1}{5}a^{5}-\frac{1}{5}a^{3}-\frac{1}{5}a^{2}+\frac{4}{25}a+\frac{1}{5}$, $\frac{1}{25}a^{22}+\frac{2}{25}a^{17}-\frac{1}{5}a^{8}-\frac{7}{25}a^{7}+\frac{1}{5}a^{6}+\frac{1}{5}a^{5}-\frac{1}{5}a^{3}-\frac{6}{25}a^{2}+\frac{1}{5}a+\frac{1}{5}$, $\frac{1}{48\cdots 25}a^{23}-\frac{65\cdots 52}{48\cdots 25}a^{22}-\frac{66\cdots 26}{48\cdots 25}a^{21}+\frac{13\cdots 87}{69\cdots 75}a^{20}-\frac{69\cdots 54}{48\cdots 25}a^{19}-\frac{17\cdots 96}{96\cdots 45}a^{18}-\frac{67\cdots 38}{48\cdots 25}a^{17}+\frac{21\cdots 76}{48\cdots 25}a^{16}+\frac{73\cdots 29}{48\cdots 25}a^{15}+\frac{58\cdots 76}{96\cdots 45}a^{14}-\frac{76\cdots 36}{10\cdots 75}a^{13}-\frac{55\cdots 13}{96\cdots 45}a^{12}-\frac{32\cdots 93}{48\cdots 25}a^{11}-\frac{11\cdots 46}{96\cdots 45}a^{10}-\frac{20\cdots 13}{48\cdots 25}a^{9}+\frac{86\cdots 43}{48\cdots 25}a^{8}-\frac{22\cdots 34}{48\cdots 25}a^{7}-\frac{14\cdots 83}{48\cdots 25}a^{6}+\frac{64\cdots 29}{48\cdots 25}a^{5}-\frac{20\cdots 72}{48\cdots 25}a^{4}+\frac{45\cdots 96}{96\cdots 45}a^{3}-\frac{60\cdots 13}{13\cdots 35}a^{2}+\frac{18\cdots 62}{48\cdots 25}a+\frac{22\cdots 79}{48\cdots 25}$ 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}\times C_{4}$, which has order $8$ (assuming GRH)
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}\times C_{4}$, which has order $8$ (assuming GRH)
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:  $13$
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{52\cdots 93}{37\cdots 75}a^{23}-\frac{10\cdots 41}{37\cdots 75}a^{22}+\frac{42\cdots 69}{37\cdots 75}a^{21}-\frac{27\cdots 87}{37\cdots 75}a^{20}+\frac{33\cdots 69}{74\cdots 55}a^{19}+\frac{68\cdots 41}{37\cdots 75}a^{18}-\frac{46\cdots 57}{37\cdots 75}a^{17}+\frac{39\cdots 08}{37\cdots 75}a^{16}+\frac{11\cdots 56}{37\cdots 75}a^{15}+\frac{38\cdots 46}{14\cdots 71}a^{14}-\frac{11\cdots 78}{16\cdots 85}a^{13}+\frac{15\cdots 68}{74\cdots 55}a^{12}+\frac{58\cdots 86}{74\cdots 55}a^{11}-\frac{40\cdots 17}{14\cdots 71}a^{10}+\frac{26\cdots 88}{74\cdots 55}a^{9}+\frac{11\cdots 09}{37\cdots 75}a^{8}-\frac{10\cdots 13}{37\cdots 75}a^{7}+\frac{13\cdots 37}{37\cdots 75}a^{6}-\frac{36\cdots 91}{37\cdots 75}a^{5}-\frac{20\cdots 98}{74\cdots 55}a^{4}+\frac{35\cdots 02}{37\cdots 75}a^{3}+\frac{22\cdots 81}{37\cdots 75}a^{2}-\frac{20\cdots 29}{37\cdots 75}a-\frac{31\cdots 48}{37\cdots 75}$, $\frac{10\cdots 86}{91\cdots 55}a^{23}+\frac{40\cdots 58}{45\cdots 75}a^{22}-\frac{11\cdots 31}{45\cdots 75}a^{21}+\frac{26\cdots 31}{45\cdots 75}a^{20}-\frac{32\cdots 37}{91\cdots 55}a^{19}+\frac{57\cdots 72}{91\cdots 55}a^{18}+\frac{80\cdots 36}{45\cdots 75}a^{17}-\frac{67\cdots 37}{45\cdots 75}a^{16}+\frac{12\cdots 07}{45\cdots 75}a^{15}-\frac{14\cdots 33}{18\cdots 91}a^{14}+\frac{15\cdots 94}{91\cdots 55}a^{13}-\frac{51\cdots 78}{91\cdots 55}a^{12}-\frac{48\cdots 31}{91\cdots 55}a^{11}+\frac{52\cdots 71}{91\cdots 55}a^{10}-\frac{15\cdots 19}{91\cdots 55}a^{9}-\frac{75\cdots 61}{91\cdots 55}a^{8}+\frac{17\cdots 09}{45\cdots 75}a^{7}-\frac{76\cdots 58}{45\cdots 75}a^{6}+\frac{12\cdots 68}{45\cdots 75}a^{5}-\frac{14\cdots 61}{91\cdots 55}a^{4}-\frac{20\cdots 82}{91\cdots 55}a^{3}+\frac{20\cdots 52}{45\cdots 75}a^{2}+\frac{39\cdots 16}{45\cdots 75}a-\frac{16\cdots 36}{45\cdots 75}$, $\frac{11\cdots 24}{37\cdots 75}a^{23}+\frac{94\cdots 94}{37\cdots 75}a^{22}+\frac{68\cdots 23}{37\cdots 75}a^{21}+\frac{77\cdots 58}{37\cdots 75}a^{20}-\frac{36\cdots 36}{37\cdots 75}a^{19}-\frac{79\cdots 33}{14\cdots 71}a^{18}+\frac{10\cdots 47}{37\cdots 75}a^{17}-\frac{57\cdots 01}{37\cdots 75}a^{16}-\frac{75\cdots 57}{74\cdots 55}a^{15}-\frac{21\cdots 59}{37\cdots 75}a^{14}+\frac{28\cdots 52}{16\cdots 85}a^{13}+\frac{13\cdots 31}{37\cdots 75}a^{12}-\frac{13\cdots 71}{74\cdots 55}a^{11}+\frac{14\cdots 26}{37\cdots 75}a^{10}+\frac{81\cdots 71}{74\cdots 55}a^{9}-\frac{27\cdots 56}{37\cdots 75}a^{8}+\frac{18\cdots 47}{37\cdots 75}a^{7}+\frac{21\cdots 01}{74\cdots 55}a^{6}-\frac{20\cdots 01}{37\cdots 75}a^{5}+\frac{12\cdots 53}{37\cdots 75}a^{4}-\frac{14\cdots 37}{37\cdots 75}a^{3}-\frac{40\cdots 56}{37\cdots 75}a^{2}+\frac{39\cdots 36}{37\cdots 75}a+\frac{20\cdots 71}{74\cdots 55}$, $\frac{40\cdots 76}{45\cdots 75}a^{23}-\frac{88\cdots 81}{45\cdots 75}a^{22}+\frac{20\cdots 74}{45\cdots 75}a^{21}-\frac{69\cdots 26}{45\cdots 75}a^{20}+\frac{12\cdots 46}{45\cdots 75}a^{19}+\frac{49\cdots 68}{45\cdots 75}a^{18}-\frac{40\cdots 06}{45\cdots 75}a^{17}+\frac{26\cdots 09}{45\cdots 75}a^{16}+\frac{81\cdots 09}{45\cdots 75}a^{15}+\frac{67\cdots 93}{45\cdots 75}a^{14}-\frac{28\cdots 47}{45\cdots 75}a^{13}+\frac{12\cdots 73}{45\cdots 75}a^{12}+\frac{21\cdots 33}{45\cdots 75}a^{11}-\frac{80\cdots 22}{45\cdots 75}a^{10}+\frac{31\cdots 23}{45\cdots 75}a^{9}+\frac{71\cdots 46}{45\cdots 75}a^{8}-\frac{15\cdots 93}{91\cdots 55}a^{7}+\frac{19\cdots 41}{91\cdots 55}a^{6}-\frac{50\cdots 52}{91\cdots 55}a^{5}-\frac{59\cdots 24}{45\cdots 75}a^{4}+\frac{10\cdots 77}{91\cdots 55}a^{3}+\frac{62\cdots 87}{45\cdots 75}a^{2}-\frac{73\cdots 93}{45\cdots 75}a+\frac{19\cdots 47}{45\cdots 75}$, $\frac{15\cdots 43}{74\cdots 55}a^{23}-\frac{41\cdots 69}{14\cdots 71}a^{22}+\frac{29\cdots 86}{37\cdots 75}a^{21}+\frac{20\cdots 96}{37\cdots 75}a^{20}-\frac{23\cdots 59}{37\cdots 75}a^{19}-\frac{48\cdots 16}{37\cdots 75}a^{18}-\frac{58\cdots 94}{37\cdots 75}a^{17}+\frac{15\cdots 01}{37\cdots 75}a^{16}-\frac{57\cdots 07}{37\cdots 75}a^{15}-\frac{61\cdots 19}{37\cdots 75}a^{14}-\frac{16\cdots 42}{80\cdots 25}a^{13}+\frac{17\cdots 26}{37\cdots 75}a^{12}+\frac{20\cdots 44}{37\cdots 75}a^{11}-\frac{70\cdots 94}{37\cdots 75}a^{10}+\frac{15\cdots 44}{37\cdots 75}a^{9}+\frac{97\cdots 51}{37\cdots 75}a^{8}-\frac{17\cdots 06}{37\cdots 75}a^{7}+\frac{56\cdots 54}{37\cdots 75}a^{6}-\frac{14\cdots 43}{37\cdots 75}a^{5}-\frac{12\cdots 96}{37\cdots 75}a^{4}+\frac{18\cdots 71}{37\cdots 75}a^{3}+\frac{74\cdots 74}{37\cdots 75}a^{2}-\frac{38\cdots 70}{14\cdots 71}a-\frac{23\cdots 27}{37\cdots 75}$, $\frac{29\cdots 72}{37\cdots 75}a^{23}+\frac{24\cdots 59}{74\cdots 55}a^{22}-\frac{80\cdots 88}{37\cdots 75}a^{21}-\frac{80\cdots 41}{37\cdots 75}a^{20}-\frac{76\cdots 01}{37\cdots 75}a^{19}-\frac{25\cdots 72}{37\cdots 75}a^{18}+\frac{44\cdots 69}{37\cdots 75}a^{17}-\frac{28\cdots 14}{37\cdots 75}a^{16}-\frac{77\cdots 68}{37\cdots 75}a^{15}-\frac{51\cdots 63}{74\cdots 55}a^{14}+\frac{16\cdots 11}{80\cdots 25}a^{13}+\frac{89\cdots 32}{74\cdots 55}a^{12}-\frac{20\cdots 17}{37\cdots 75}a^{11}+\frac{53\cdots 68}{14\cdots 71}a^{10}-\frac{21\cdots 22}{37\cdots 75}a^{9}-\frac{13\cdots 06}{37\cdots 75}a^{8}+\frac{14\cdots 53}{37\cdots 75}a^{7}-\frac{55\cdots 44}{37\cdots 75}a^{6}+\frac{22\cdots 46}{74\cdots 55}a^{5}-\frac{79\cdots 33}{37\cdots 75}a^{4}-\frac{54\cdots 74}{37\cdots 75}a^{3}+\frac{16\cdots 92}{37\cdots 75}a^{2}-\frac{45\cdots 78}{37\cdots 75}a-\frac{28\cdots 47}{37\cdots 75}$, $\frac{10\cdots 33}{48\cdots 25}a^{23}+\frac{76\cdots 38}{48\cdots 25}a^{22}-\frac{36\cdots 67}{48\cdots 25}a^{21}-\frac{10\cdots 74}{69\cdots 75}a^{20}-\frac{64\cdots 11}{96\cdots 45}a^{19}-\frac{17\cdots 28}{48\cdots 25}a^{18}+\frac{79\cdots 31}{48\cdots 25}a^{17}-\frac{62\cdots 61}{48\cdots 25}a^{16}-\frac{33\cdots 06}{48\cdots 25}a^{15}-\frac{20\cdots 37}{48\cdots 25}a^{14}+\frac{72\cdots 52}{10\cdots 75}a^{13}-\frac{39\cdots 07}{48\cdots 25}a^{12}-\frac{59\cdots 84}{48\cdots 25}a^{11}+\frac{12\cdots 43}{48\cdots 25}a^{10}+\frac{11\cdots 16}{48\cdots 25}a^{9}-\frac{28\cdots 51}{48\cdots 25}a^{8}+\frac{36\cdots 53}{96\cdots 45}a^{7}+\frac{64\cdots 52}{48\cdots 25}a^{6}+\frac{84\cdots 62}{48\cdots 25}a^{5}+\frac{35\cdots 23}{48\cdots 25}a^{4}-\frac{39\cdots 47}{48\cdots 25}a^{3}-\frac{51\cdots 46}{13\cdots 35}a^{2}+\frac{55\cdots 42}{48\cdots 25}a+\frac{11\cdots 56}{48\cdots 25}$, $\frac{45\cdots 76}{96\cdots 45}a^{23}+\frac{18\cdots 26}{48\cdots 25}a^{22}-\frac{50\cdots 46}{48\cdots 25}a^{21}+\frac{17\cdots 61}{69\cdots 75}a^{20}-\frac{14\cdots 04}{96\cdots 45}a^{19}+\frac{13\cdots 98}{48\cdots 25}a^{18}+\frac{36\cdots 12}{48\cdots 25}a^{17}-\frac{29\cdots 94}{48\cdots 25}a^{16}+\frac{56\cdots 59}{48\cdots 25}a^{15}-\frac{13\cdots 87}{48\cdots 25}a^{14}+\frac{75\cdots 97}{10\cdots 75}a^{13}-\frac{11\cdots 57}{48\cdots 25}a^{12}-\frac{10\cdots 54}{48\cdots 25}a^{11}+\frac{11\cdots 73}{48\cdots 25}a^{10}-\frac{34\cdots 54}{48\cdots 25}a^{9}-\frac{15\cdots 77}{48\cdots 25}a^{8}+\frac{77\cdots 69}{48\cdots 25}a^{7}-\frac{68\cdots 42}{96\cdots 45}a^{6}+\frac{55\cdots 92}{48\cdots 25}a^{5}-\frac{30\cdots 87}{48\cdots 25}a^{4}-\frac{91\cdots 02}{96\cdots 45}a^{3}+\frac{13\cdots 16}{69\cdots 75}a^{2}+\frac{18\cdots 46}{48\cdots 25}a-\frac{73\cdots 49}{48\cdots 25}$, $\frac{29\cdots 23}{48\cdots 25}a^{23}-\frac{87\cdots 66}{48\cdots 25}a^{22}-\frac{62\cdots 33}{96\cdots 45}a^{21}+\frac{15\cdots 89}{69\cdots 75}a^{20}+\frac{94\cdots 03}{48\cdots 25}a^{19}+\frac{55\cdots 92}{96\cdots 45}a^{18}-\frac{48\cdots 24}{48\cdots 25}a^{17}+\frac{17\cdots 64}{48\cdots 25}a^{16}+\frac{12\cdots 39}{48\cdots 25}a^{15}+\frac{33\cdots 40}{19\cdots 29}a^{14}-\frac{87\cdots 63}{10\cdots 75}a^{13}-\frac{10\cdots 39}{19\cdots 29}a^{12}+\frac{21\cdots 06}{48\cdots 25}a^{11}-\frac{14\cdots 72}{96\cdots 45}a^{10}-\frac{27\cdots 84}{48\cdots 25}a^{9}+\frac{18\cdots 84}{48\cdots 25}a^{8}-\frac{36\cdots 52}{48\cdots 25}a^{7}-\frac{31\cdots 33}{96\cdots 45}a^{6}+\frac{26\cdots 06}{19\cdots 29}a^{5}+\frac{88\cdots 69}{48\cdots 25}a^{4}-\frac{82\cdots 92}{96\cdots 45}a^{3}-\frac{77\cdots 56}{13\cdots 35}a^{2}+\frac{12\cdots 33}{48\cdots 25}a+\frac{11\cdots 01}{48\cdots 25}$, $\frac{33\cdots 76}{96\cdots 45}a^{23}+\frac{65\cdots 21}{48\cdots 25}a^{22}-\frac{13\cdots 86}{48\cdots 25}a^{21}+\frac{18\cdots 43}{69\cdots 75}a^{20}-\frac{10\cdots 82}{96\cdots 45}a^{19}-\frac{11\cdots 99}{48\cdots 25}a^{18}+\frac{24\cdots 27}{48\cdots 25}a^{17}-\frac{12\cdots 36}{48\cdots 25}a^{16}-\frac{26\cdots 13}{48\cdots 25}a^{15}-\frac{11\cdots 24}{48\cdots 25}a^{14}+\frac{41\cdots 39}{10\cdots 75}a^{13}-\frac{44\cdots 54}{48\cdots 25}a^{12}-\frac{95\cdots 23}{48\cdots 25}a^{11}+\frac{50\cdots 96}{48\cdots 25}a^{10}-\frac{10\cdots 23}{48\cdots 25}a^{9}-\frac{56\cdots 19}{48\cdots 25}a^{8}+\frac{79\cdots 67}{96\cdots 45}a^{7}-\frac{64\cdots 92}{48\cdots 25}a^{6}-\frac{28\cdots 14}{96\cdots 45}a^{5}+\frac{22\cdots 66}{48\cdots 25}a^{4}-\frac{51\cdots 64}{96\cdots 45}a^{3}-\frac{75\cdots 68}{13\cdots 35}a^{2}+\frac{23\cdots 31}{48\cdots 25}a+\frac{68\cdots 04}{96\cdots 45}$, $\frac{23\cdots 31}{96\cdots 45}a^{23}-\frac{42\cdots 94}{48\cdots 25}a^{22}+\frac{31\cdots 31}{96\cdots 45}a^{21}+\frac{21\cdots 17}{69\cdots 75}a^{20}-\frac{27\cdots 68}{48\cdots 25}a^{19}-\frac{35\cdots 92}{48\cdots 25}a^{18}-\frac{17\cdots 31}{48\cdots 25}a^{17}+\frac{10\cdots 23}{48\cdots 25}a^{16}-\frac{41\cdots 59}{19\cdots 29}a^{15}-\frac{29\cdots 28}{48\cdots 25}a^{14}-\frac{18\cdots 39}{10\cdots 75}a^{13}+\frac{23\cdots 72}{48\cdots 25}a^{12}-\frac{23\cdots 57}{48\cdots 25}a^{11}+\frac{26\cdots 32}{48\cdots 25}a^{10}+\frac{53\cdots 03}{48\cdots 25}a^{9}-\frac{67\cdots 33}{48\cdots 25}a^{8}+\frac{40\cdots 36}{48\cdots 25}a^{7}+\frac{46\cdots 07}{48\cdots 25}a^{6}-\frac{64\cdots 59}{96\cdots 45}a^{5}+\frac{47\cdots 13}{48\cdots 25}a^{4}+\frac{18\cdots 37}{48\cdots 25}a^{3}-\frac{27\cdots 39}{69\cdots 75}a^{2}+\frac{32\cdots 57}{48\cdots 25}a+\frac{14\cdots 54}{48\cdots 25}$, $\frac{16\cdots 41}{48\cdots 25}a^{23}-\frac{18\cdots 21}{48\cdots 25}a^{22}+\frac{91\cdots 13}{48\cdots 25}a^{21}+\frac{41\cdots 13}{69\cdots 75}a^{20}+\frac{10\cdots 34}{96\cdots 45}a^{19}+\frac{31\cdots 07}{48\cdots 25}a^{18}-\frac{95\cdots 47}{48\cdots 25}a^{17}+\frac{10\cdots 71}{48\cdots 25}a^{16}+\frac{61\cdots 02}{48\cdots 25}a^{15}+\frac{15\cdots 62}{19\cdots 29}a^{14}-\frac{28\cdots 23}{20\cdots 15}a^{13}+\frac{43\cdots 54}{96\cdots 45}a^{12}+\frac{20\cdots 07}{96\cdots 45}a^{11}-\frac{46\cdots 69}{19\cdots 29}a^{10}+\frac{65\cdots 18}{96\cdots 45}a^{9}+\frac{53\cdots 73}{48\cdots 25}a^{8}-\frac{22\cdots 23}{48\cdots 25}a^{7}-\frac{36\cdots 41}{48\cdots 25}a^{6}+\frac{87\cdots 98}{48\cdots 25}a^{5}-\frac{97\cdots 18}{96\cdots 45}a^{4}+\frac{59\cdots 09}{48\cdots 25}a^{3}+\frac{43\cdots 58}{69\cdots 75}a^{2}-\frac{65\cdots 93}{48\cdots 25}a-\frac{14\cdots 91}{48\cdots 25}$, $\frac{31\cdots 78}{48\cdots 25}a^{23}-\frac{19\cdots 69}{48\cdots 25}a^{22}+\frac{17\cdots 48}{48\cdots 25}a^{21}+\frac{81\cdots 33}{69\cdots 75}a^{20}+\frac{10\cdots 46}{48\cdots 25}a^{19}+\frac{61\cdots 66}{48\cdots 25}a^{18}-\frac{17\cdots 52}{48\cdots 25}a^{17}+\frac{20\cdots 01}{48\cdots 25}a^{16}+\frac{12\cdots 23}{48\cdots 25}a^{15}+\frac{76\cdots 42}{48\cdots 25}a^{14}-\frac{15\cdots 98}{10\cdots 75}a^{13}+\frac{43\cdots 37}{48\cdots 25}a^{12}+\frac{19\cdots 86}{48\cdots 25}a^{11}-\frac{21\cdots 63}{48\cdots 25}a^{10}+\frac{75\cdots 76}{48\cdots 25}a^{9}+\frac{10\cdots 96}{48\cdots 25}a^{8}-\frac{42\cdots 11}{48\cdots 25}a^{7}-\frac{66\cdots 39}{48\cdots 25}a^{6}+\frac{15\cdots 44}{48\cdots 25}a^{5}-\frac{18\cdots 99}{96\cdots 45}a^{4}+\frac{11\cdots 83}{48\cdots 25}a^{3}+\frac{83\cdots 92}{69\cdots 75}a^{2}-\frac{12\cdots 72}{48\cdots 25}a-\frac{27\cdots 26}{48\cdots 25}$ Copy content Toggle raw display (assuming GRH)
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:  \( 53912689245734216000 \) (assuming GRH)
Copy content comment:Regulator
 
Copy content sage:K.regulator()
 
Copy content gp:K.reg
 
Copy content magma:Regulator(K);
 
Copy content oscar:regulator(K)
 
Unit signature rank:  \( 4 \) (assuming GRH)

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^{4}\cdot(2\pi)^{10}\cdot 53912689245734216000 \cdot 8}{2\cdot\sqrt{2295251366305746200663037028252313182580209076404571533203125}}\cr\approx \mathstrut & 0.218400951392628 \end{aligned}\] (assuming GRH)

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^24 - 4*x^23 + 6*x^22 - 4*x^21 + 3116*x^20 + 6764*x^19 - 132076*x^18 + 859384*x^17 + 1275904*x^16 + 9094554*x^15 - 96062239*x^14 + 148582296*x^13 + 5667704141*x^12 - 31114295514*x^11 + 29403672616*x^10 + 318568634184*x^9 - 2635907116121*x^8 + 5096904048179*x^7 + 1399615659494*x^6 - 31620921402991*x^5 + 150857399860436*x^4 + 46785615621511*x^3 - 1121050409397834*x^2 + 642150457868791*x + 3470991058617581) 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^24 - 4*x^23 + 6*x^22 - 4*x^21 + 3116*x^20 + 6764*x^19 - 132076*x^18 + 859384*x^17 + 1275904*x^16 + 9094554*x^15 - 96062239*x^14 + 148582296*x^13 + 5667704141*x^12 - 31114295514*x^11 + 29403672616*x^10 + 318568634184*x^9 - 2635907116121*x^8 + 5096904048179*x^7 + 1399615659494*x^6 - 31620921402991*x^5 + 150857399860436*x^4 + 46785615621511*x^3 - 1121050409397834*x^2 + 642150457868791*x + 3470991058617581, 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^24 - 4*x^23 + 6*x^22 - 4*x^21 + 3116*x^20 + 6764*x^19 - 132076*x^18 + 859384*x^17 + 1275904*x^16 + 9094554*x^15 - 96062239*x^14 + 148582296*x^13 + 5667704141*x^12 - 31114295514*x^11 + 29403672616*x^10 + 318568634184*x^9 - 2635907116121*x^8 + 5096904048179*x^7 + 1399615659494*x^6 - 31620921402991*x^5 + 150857399860436*x^4 + 46785615621511*x^3 - 1121050409397834*x^2 + 642150457868791*x + 3470991058617581); 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 = polynomial_ring(QQ); K, a = number_field(x^24 - 4*x^23 + 6*x^22 - 4*x^21 + 3116*x^20 + 6764*x^19 - 132076*x^18 + 859384*x^17 + 1275904*x^16 + 9094554*x^15 - 96062239*x^14 + 148582296*x^13 + 5667704141*x^12 - 31114295514*x^11 + 29403672616*x^10 + 318568634184*x^9 - 2635907116121*x^8 + 5096904048179*x^7 + 1399615659494*x^6 - 31620921402991*x^5 + 150857399860436*x^4 + 46785615621511*x^3 - 1121050409397834*x^2 + 642150457868791*x + 3470991058617581); 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

$\GL(2,5)$ (as 24T1353):

Copy content comment:Galois group
 
Copy content sage:K.galois_group()
 
Copy content gp:polgalois(K.pol)
 
Copy content magma:GaloisGroup(K);
 
Copy content oscar:G, Gtx = galois_group(K); degree(K) > 1 ? (G, transitive_group_identification(G)) : (G, nothing)
 
A non-solvable group of order 480
The 24 conjugacy class representatives for $\GL(2,5)$
Character table for $\GL(2,5)$

Intermediate fields

6.2.196069503125.2, 12.4.1522544918455380058642578125.2

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(L)]
 
Copy content magma:L := Subfields(K); L[2..#L];
 
Copy content oscar:subfields(K)[2:end-1]
 

Sibling fields

Degree 24 siblings: 24.4.91810054652229848026521481130092527303208363056182861328125.2, 24.4.91810054652229848026521481130092527303208363056182861328125.7
Arithmetically equivalent sibling: 24.4.2295251366305746200663037028252313182580209076404571533203125.7
Minimal sibling: 24.4.91810054652229848026521481130092527303208363056182861328125.2

Frobenius cycle types

$p$ $2$ $3$ $5$ $7$ $11$ $13$ $17$ $19$ $23$ $29$ $31$ $37$ $41$ $43$ $47$ $53$ $59$
Cycle type $24$ $24$ R ${\href{/padicField/7.4.0.1}{4} }^{5}{,}\,{\href{/padicField/7.2.0.1}{2} }^{2}$ ${\href{/padicField/11.6.0.1}{6} }^{4}$ $24$ $24$ ${\href{/padicField/19.3.0.1}{3} }^{8}$ $24$ ${\href{/padicField/29.5.0.1}{5} }^{4}{,}\,{\href{/padicField/29.1.0.1}{1} }^{4}$ ${\href{/padicField/31.12.0.1}{12} }^{2}$ ${\href{/padicField/37.8.0.1}{8} }^{3}$ ${\href{/padicField/41.12.0.1}{12} }^{2}$ $24$ ${\href{/padicField/47.4.0.1}{4} }^{5}{,}\,{\href{/padicField/47.2.0.1}{2} }^{2}$ ${\href{/padicField/53.4.0.1}{4} }^{5}{,}\,{\href{/padicField/53.1.0.1}{1} }^{4}$ ${\href{/padicField/59.4.0.1}{4} }^{6}$

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
\(5\) Copy content Toggle raw display 5.2.2.2a1.1$x^{4} + 8 x^{3} + 20 x^{2} + 21 x + 4$$2$$2$$2$$C_4$$$[\ ]_{2}^{2}$$
5.1.20.23a2.2$x^{20} + 20 x^{4} + 10$$20$$1$$23$20T20$not computed$
\(89\) Copy content Toggle raw display 89.1.4.3a1.1$x^{4} + 89$$4$$1$$3$$C_4$$$[\ ]_{4}$$
89.1.20.19a1.3$x^{20} + 801$$20$$1$$19$20T6$$[\ ]_{20}^{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)