Macaulay2 » Documentation
Packages » Macaulay2Doc > The Macaulay2 language > operators > /
next | previous | forward | backward | up | index | toc

/ -- a binary operator, usually used for division

Synopsis

Description

This operator is currently used in several ways in Macaulay2.
i1 : 2/3

     2
o1 = -
     3

o1 : QQ
i2 : 2./3

o2 = .666666666666667

o2 : RR (of precision 53)

Intervals

If one of the inputs is an RRi, the output is an interval containing all quotients of pairs in the inputs.

i3 : 2/interval(1,3)

o3 = [.666666666666667,2]

o3 : RRi (of precision 53)
i4 : interval(-1,2)/interval(1,3)

o4 = [-1,2]

o4 : RRi (of precision 53)
i5 : interval(1,2)/interval(1,2)

o5 = [.5,2]

o5 : RRi (of precision 53)

See also

Ways to use symbol / :

For the programmer

The object / is a keyword.

This operator may be used as a binary operator in an expression like x/y. The user may install binary methods for handling such expressions with code such as

         X / Y := (x,y) -> ...

where X is the class of x and Y is the class of y.