SurdText Command
- SurdText( <Point> )
-
Creates a text representation of the point, with coordinates in the form a+b√cd.
SurdText((2.414213562373095, 1.414213562373095))
creates the text (1+√2,√2)
- SurdText( <Number> )
-
Creates a text representation of the number in the form a+b√cd.
-
SurdText(2.414213562373095)
creates the text 1+√2 -
SurdText(2.439230484541326)
creates the text 7+3√35
- SurdText( <Number>, <List> )
-
Creates a text representation of the number, rewritten as a multiple of the constants in the list. If the list is empty, the command uses a list of common constants.
-
SurdText(3.718281828459045, {exp(1)})
creates the text e+1 -
SurdText(5.382332347441762, {sqrt(2), sqrt(3), sqrt(5)})
creates the text √5+√3+√2 -
SurdText(1.693147180559945, {ln(2)})
creates the text ln(2)+1
|