Ask Your Question
0

$p$-adic extension of $n$th root of unity.

asked 2019-09-10 11:41:54 +0200

GA316 gravatar image

updated 2019-09-13 23:03:09 +0200

dan_fulea gravatar image

I have used the following command to define the 5-adic Unramified extension ring in c defined by the polynomial $x^3 + 3x + 3$:

Sage: R.<c> = zq(125, prec=20)

Now, I want to find all the $n$th root of unity in this ring for $n$ dividing $124$. I dont know, how the $n$-th roots are implemented. Kindly help me with this.

Thank you.

edit retag flag offensive close merge delete

Comments

You should provide more details. In particular, what is zq ?

tmonteil gravatar imagetmonteil ( 2019-09-10 13:51:46 +0200 )edit

zq is Zq

vdelecroix gravatar imagevdelecroix ( 2019-09-10 22:20:58 +0200 )edit

2 Answers

Sort by ยป oldest newest most voted
0

answered 2019-09-13 23:39:31 +0200

dan_fulea gravatar image

The residue field $K=\Bbb F_5(c_0)$ of the declared ring $R=\Bbb Q_5(c)$ is the field with $5^3$ elements, and all elements in $K^\times$ have order $5^3-1=124$. So we can ask for the Teichmuller lifts of elements of $K$, for instance, for the element $1+c_0$ the lift ist as follows.

sage: R.<c> = Zq(125, prec=5)
sage: K = R.residue_field()
sage: R
5-adic Unramified Extension Ring in c defined by x^3 + 3*x + 3
sage: K
Finite Field in c0 of size 5^3
sage: R.teichmuller( K(1+c) )
(c + 1) + (4*c^2 + 3*c + 2)*5 + (4*c^2 + 3*c + 1)*5^2 + 3*c*5^3 + (c^2 + 2*c + 4)*5^4 + O(5^5)
sage: _^124
1 + O(5^5)

Note: Check also if the following does a better job in the intentioned application:

R.teichmuller_system()
edit flag offensive delete link more
0

answered 2019-09-10 22:25:40 +0200

vdelecroix gravatar image

You can simply ask for the roots of cyclotomic polynomials

sage: R.<c> = Zq(125, prec=20)
sage: cyclotomic_polynomial(4).roots(multiplicities=False, ring=R)
[2 + 5 + 2*5^2 + 5^3 + 3*5^4 + 4*5^5 + ... + 4*5^17 + 4*5^19 + O(5^20),
 3 + 3*5 + 2*5^2 + 3*5^3 + 5^4 + 2*5^6 + ... + 2*5^16 + 4*5^18 + O(5^20)]

Sadly, the zeta method is not available to give you a single primitive n-th root

sage: R.zeta(4)
Traceback (most recent call last):
...
NotImplementedError:
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

2 followers

Stats

Asked: 2019-09-10 11:41:54 +0200

Seen: 455 times

Last updated: Sep 13 '19