numerical approximations of complex_embedding
How can I get a numerical approximation of an expression like 3^(1/2)/2 which is not 0.866025403784439?
How can I get a numerical approximation of an expression like 3^(1/2)/2 which is not 0.866025403784439?
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
thank you very much!
Asked: 11 years ago
Seen: 1,154 times
Last updated: Jul 07 '14