up previous next
Fraction

returns the quotient of its arguments
Syntax

Fraction(E:OBJECT,F:OBJECT)


Description
This function returns E/F provided the quotient is defined (see Algebraic Operators).

Example
Use R ::= Q[x,y];
Fraction(2,3);
2/3
-------------------------------
Fraction(2,4);
1/2
-------------------------------
Fraction(x,x+y);
x/(x + y)
-------------------------------
Fraction(5%11,6%11);
10 % 11
-------------------------------


See Also