Ask Your Question
0

how to get frobenius_element() in numberfield?

asked 11 years ago

cjsh gravatar image

updated 11 years ago

William Stein gravatar image
CLO7.<u> = CyclotomicField(7)

CLO7().***frobenius_element***() 

Traceback (click to the left of this block for traceback)
...
AttributeError:
'sage.rings.number_field.number_field_element.NumberFieldElement_abs\
olute' object has no attribute 'frobenius_element'
Preview: (hide)

1 Answer

Sort by » oldest newest most voted
2

answered 11 years ago

John Cremona gravatar image

updated 11 years ago

Here is way to do it.

sage: F.<z> = CyclotomicField(7)
sage: def Frob(p):                                                                                       
    return F.hom([z^p])
....: 
sage: Frob(2)
Ring endomorphism of Cyclotomic Field of order 7 and degree 6
  Defn: z |--> z^2
sage: Frob(3)                                                                                            
Ring endomorphism of Cyclotomic Field of order 7 and degree 6
  Defn: z |--> z^3
sage: Frob(5)                                                                                            
Ring endomorphism of Cyclotomic Field of order 7 and degree 6
  Defn: z |--> z^5
sage: Frob(97)    
Ring endomorphism of Cyclotomic Field of order 7 and degree 6
  Defn: z |--> -z^5 - z^4 - z^3 - z^2 - z - 1
Preview: (hide)
link

Comments

thank you very much!

cjsh gravatar imagecjsh ( 11 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

Stats

Asked: 11 years ago

Seen: 738 times

Last updated: Dec 12 '13