Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

There R represents the field of real numbers with given precision. It is just used for conversion. You can try it with the following example

sage: R=RealField()
sage: 1
1
sage: type(1)
sage.rings.integer.Integer
sage: R(1)
1.00000000000000
sage: type(R(1))
sage.rings.real_mpfr.RealNumber