Ask Your Question
2

numerical approximations of complex_embedding

asked 11 years ago

cjsh gravatar image

updated 10 years ago

vdelecroix gravatar image

How can I get a numerical approximation of an expression like 3^(1/2)/2 which is not 0.866025403784439?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 10 years ago

vdelecroix gravatar image

updated 10 years ago

Complex embeddings are defined for number fields. You can for example do:

sage: e = QQbar(3^(1/2)/2)
sage: K,e1,phi = e.as_number_field_element()
sage: g = e1.galois_conjugate(QQbar)
sage: g      # these are arbitrary precision
[-0.866025403784439?, 0.866025403784439?]
sage: g[0].numerical_approx(digits=100)
-0.86602540378443864676372317075293618347140262690519

But since your example is a square root the embeddings are itself and its negative, so you can do in a more straightforward way:

sage: (-3^(1/2)/2).numerical_approx(digits=50)
-0.86602540378443864676372317075293618347140262690519

Vincent

Preview: (hide)
link

Comments

thank you very much!

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

2 followers

Stats

Asked: 11 years ago

Seen: 1,154 times

Last updated: Jul 07 '14