\\ Pari/GP code for working with number field 32.32.478904856520590268236983445984471619880855975682375680000000000000000.1 \\ Some of these functions may take a long time to execute (this depends on the field). \\ Define the number field: K = bnfinit(y^32 - 160*y^30 + 11600*y^28 - 504000*y^26 + 14625000*y^24 - 299000000*y^22 + 4427500000*y^20 - 48070000000*y^18 + 383057812500*y^16 - 2220625000000*y^14 + 9185312500000*y^12 - 26243750000000*y^10 + 49207031250000*y^8 - 55781250000000*y^6 + 33203125000000*y^4 - 7812500000000*y^2 + 305175781250, 1) \\ Defining polynomial: K.pol \\ Degree over Q: poldegree(K.pol) \\ Signature: K.sign \\ Discriminant: K.disc \\ Ramified primes: factor(abs(K.disc))[,1]~ \\ Integral basis: K.zk \\ Class group: K.clgp \\ Unit rank: K.fu \\ Generator for roots of unity: K.tu[2] \\ Fundamental units: K.fu \\ Regulator: K.reg \\ Analytic class number formula: # self-contained Pari/GP code snippet to compute the analytic class number formula K = bnfinit(x^32 - 160*x^30 + 11600*x^28 - 504000*x^26 + 14625000*x^24 - 299000000*x^22 + 4427500000*x^20 - 48070000000*x^18 + 383057812500*x^16 - 2220625000000*x^14 + 9185312500000*x^12 - 26243750000000*x^10 + 49207031250000*x^8 - 55781250000000*x^6 + 33203125000000*x^4 - 7812500000000*x^2 + 305175781250, 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)))] \\ Intermediate fields: L = nfsubfields(K); L[2..length(b)] \\ Galois group: polgalois(K.pol) \\ Frobenius cycle types: \\ to obtain a list of $[e_i,f_i]$ for the factorization of the ideal $p\mathcal{O}_K$ for $p=7$ in Pari: p = 7; pfac = idealprimedec(K, p); vector(length(pfac), j, [pfac[j][3], pfac[j][4]])