Show commands: Magma / Pari/GP / SageMath
Copy content comment:Define the Dirichlet character
 
Copy content sage:from sage.modular.dirichlet import DirichletCharacter H = DirichletGroup(169, base_ring=CyclotomicField(156)) M = H._module chi = DirichletCharacter(H, M([11]))
 
Copy content gp:[g,chi] = znchar(Mod(20, 169))
 
Copy content magma:// Please install CHIMP (https://github.com/edgarcosta/CHIMP) if you want to run this code chi := DirichletCharacter("169.20");
 

Basic properties

Modulus: \(169\)
Copy content comment:Modulus
 
Copy content sage:chi.modulus()
 
Copy content gp:g[1][1]
 
Copy content magma:Modulus(chi);
 
Conductor: \(169\)
Copy content comment:Conductor
 
Copy content sage:chi.conductor()
 
Copy content gp:znconreyconductor(g,chi)
 
Copy content magma:Conductor(chi);
 
Order: \(156\)
Copy content comment:Order
 
Copy content sage:chi.multiplicative_order()
 
Copy content gp:charorder(g,chi)
 
Copy content magma:Order(chi);
 
Real: no
Copy content comment:Whether the character is real
 
Copy content sage:chi.multiplicative_order() <= 2
 
Copy content gp:charorder(g,chi) <= 2
 
Copy content magma:Order(chi) le 2;
 
Primitive: yes
Copy content comment:If the character is primitive
 
Copy content sage:chi.is_primitive()
 
Copy content gp:#znconreyconductor(g,chi)==1
 
Copy content magma:IsPrimitive(chi);
 
Minimal: yes
Parity: odd
Copy content comment:Parity
 
Copy content sage:chi.is_odd()
 
Copy content gp:zncharisodd(g,chi)
 
Copy content magma:IsOdd(chi);
 

Galois orbit 169.l

\(\chi_{169}(2,\cdot)\) \(\chi_{169}(6,\cdot)\) \(\chi_{169}(7,\cdot)\) \(\chi_{169}(11,\cdot)\) \(\chi_{169}(15,\cdot)\) \(\chi_{169}(20,\cdot)\) \(\chi_{169}(24,\cdot)\) \(\chi_{169}(28,\cdot)\) \(\chi_{169}(32,\cdot)\) \(\chi_{169}(33,\cdot)\) \(\chi_{169}(37,\cdot)\) \(\chi_{169}(41,\cdot)\) \(\chi_{169}(45,\cdot)\) \(\chi_{169}(46,\cdot)\) \(\chi_{169}(50,\cdot)\) \(\chi_{169}(54,\cdot)\) \(\chi_{169}(58,\cdot)\) \(\chi_{169}(59,\cdot)\) \(\chi_{169}(63,\cdot)\) \(\chi_{169}(67,\cdot)\) \(\chi_{169}(71,\cdot)\) \(\chi_{169}(72,\cdot)\) \(\chi_{169}(76,\cdot)\) \(\chi_{169}(84,\cdot)\) \(\chi_{169}(85,\cdot)\) \(\chi_{169}(93,\cdot)\) \(\chi_{169}(97,\cdot)\) \(\chi_{169}(98,\cdot)\) \(\chi_{169}(102,\cdot)\) \(\chi_{169}(106,\cdot)\) ...

Copy content comment:Galois orbit
 
Copy content sage:chi.galois_orbit()
 
Copy content gp:order = charorder(g,chi) [ charpow(g,chi, k % order) | k <-[1..order-1], gcd(k,order)==1 ]
 
Copy content magma:order := Order(chi); { chi^k : k in [1..order-1] | GCD(k,order) eq 1 };
 

Related number fields

Field of values: $\Q(\zeta_{156})$
Copy content comment:Field of values of chi
 
Copy content sage:CyclotomicField(chi.multiplicative_order())
 
Copy content gp:nfinit(polcyclo(charorder(g,chi)))
 
Copy content magma:CyclotomicField(Order(chi));
 
Fixed field: Number field defined by a degree 156 polynomial (not computed)
Copy content comment:Fixed field
 
Copy content sage:chi.fixed_field()
 

Values on generators

\(2\) → \(e\left(\frac{11}{156}\right)\)

First values

\(a\) \(-1\)\(1\)\(2\)\(3\)\(4\)\(5\)\(6\)\(7\)\(8\)\(9\)\(10\)\(11\)
\( \chi_{ 169 }(20, a) \) \(-1\)\(1\)\(e\left(\frac{11}{156}\right)\)\(e\left(\frac{29}{39}\right)\)\(e\left(\frac{11}{78}\right)\)\(e\left(\frac{33}{52}\right)\)\(e\left(\frac{127}{156}\right)\)\(e\left(\frac{85}{156}\right)\)\(e\left(\frac{11}{52}\right)\)\(e\left(\frac{19}{39}\right)\)\(e\left(\frac{55}{78}\right)\)\(e\left(\frac{41}{156}\right)\)
Copy content comment:Value of chi at x
 
Copy content sage:chi(x) # x integer
 
Copy content gp:chareval(g,chi,x) \\ x integer, value in Q/Z
 
Copy content magma:chi(x)
 
\( \chi_{ 169 }(20,a) \;\) at \(\;a = \) e.g. 2

Gauss sum

Copy content comment:Gauss sum
 
Copy content sage:chi.gauss_sum(a)
 
Copy content gp:znchargauss(g,chi,a)
 
\( \tau_{ a }( \chi_{ 169 }(20,·) )\;\) at \(\;a = \) e.g. 2

Jacobi sum

Copy content comment:Jacobi sum
 
Copy content sage:chi.jacobi_sum(n)
 
\( J(\chi_{ 169 }(20,·),\chi_{ 169 }(n,·)) \;\) for \( \; n = \) e.g. 1

Kloosterman sum

Copy content comment:Kloosterman sum
 
Copy content sage:chi.kloosterman_sum(a,b)
 
\(K(a,b,\chi_{ 169 }(20,·)) \;\) at \(\; a,b = \) e.g. 1,2