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

Can't construct automorphisms of p-adic fields

asked 9 years ago

siggytm gravatar image

I'm trying to construct automorphisms of finite extensions of Qp and getting a funny error. Here's a prototypical example:

Evaluating the cyclotomic polynomial x4+x3+x2+x+1 at x+1 gives an Eisenstein polynomial for the prime p=5. If π is a root of (x+1)4+(x+1)3+(x+1)2+(x+1)+1 then π+1 will be a primitive 5th root of unity.

K.<pi> = Qp(5).ext(sum((1+x)^i for i in range(5)))

So K=Qp(ζ5) with uniformizer π=ζ51. Now I want to define the automorphism τ:ζ5ζ25. We have τ(π)=(1+π)21=2π+π2. But the following

tau = K.hom([2*pi+pi^2])

results in the error TypeError: images do not define a valid homomorphism. What's going on? Are hom's of p-adic fields not really implemented yet or am I doing something wrong?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 9 years ago

nbruin gravatar image

You're correct. In your example you end up executing:

sage: sage.rings.morphism.RingHomomorphism_im_gens(K.Hom(K), [2*pi+pi^2], check=true)
NotImplementedError: Verification of correctness of homomorphisms from Eisenstein Extension of 5-adic Field with capped relative precision 20 in pi defined by (1 + O(5^20))*x^4 + (5 + O(5^20))*x^3 + (2*5 + O(5^20))*x^2 + (2*5 + O(5^20))*x + (5 + O(5^20)) not yet implemented.

but then this error gets caught in wrapping code and recast as a less informative error. (rant: this is a general problem in Python: people think they make code robust by putting try/except statements in but in reality they just reduce the ability of the code to properly report the problem)

Once you know the problem, the workaround is easy:

sage: tau = K.hom([2*pi+pi^2],check=false)
sage: tau
Ring endomorphism of Eisenstein Extension of 5-adic Field with capped relative precision 20 in pi defined by (1 + O(5^20))*x^4 + (5 + O(5^20))*x^3 + (2*5 + O(5^20))*x^2 + (2*5 + O(5^20))*x + (5 + O(5^20))
  Defn: pi + O(pi^77) |--> 2*pi + pi^2 + O(pi^77)
Preview: (hide)
link

Comments

Thank you! That's a nice easy workaround.

siggytm gravatar imagesiggytm ( 9 years ago )

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

Seen: 337 times

Last updated: Sep 03 '15