| 1 | initial version |
Sage's and SymPy's expressions have different types, but you can convert between them as explained in A Sample Session using SymPy.
In your case:
sage: C[0]._sage_().numerical_approx()
134.810810810811
sage: numerical_approx(C[0]._sage_())
134.810810810811
| 2 | No.2 Revision |
Sage's and SymPy's expressions and numbers have different types, but you can convert between them as explained in A Sample Session using SymPy.
In your case:
sage: C[0]._sage_().numerical_approx()
134.810810810811
sage: numerical_approx(C[0]._sage_())
134.810810810811
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.