Class Quotient<C extends GcdRingElem<C>>
java.lang.Object
edu.jas.ufd.Quotient<C>
- All Implemented Interfaces:
AbelianGroupElem<Quotient<C>>, Element<Quotient<C>>, GcdRingElem<Quotient<C>>, MonoidElem<Quotient<C>>, QuotPair<GenPolynomial<C>>, RingElem<Quotient<C>>, Serializable, Comparable<Quotient<C>>
public class Quotient<C extends GcdRingElem<C>>
extends Object
implements GcdRingElem<Quotient<C>>, QuotPair<GenPolynomial<C>>
Quotient, that is a rational function, based on GenPolynomial with RingElem
interface. Objects of this class are immutable.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final booleanfinal GenPolynomial<C> Denominator part of the element data structure.private static final org.apache.logging.log4j.Loggerfinal GenPolynomial<C> Numerator part of the element data structure.final QuotientRing<C> Quotient class factory data structure. -
Constructor Summary
ConstructorsModifierConstructorDescriptionQuotient(QuotientRing<C> r) The constructor creates a Quotient object from a ring factory.Quotient(QuotientRing<C> r, GenPolynomial<C> n) The constructor creates a Quotient object from a ring factory and a numerator polynomial.Quotient(QuotientRing<C> r, GenPolynomial<C> n, GenPolynomial<C> d) The constructor creates a Quotient object from a ring factory and a numerator and denominator polynomial.protectedQuotient(QuotientRing<C> r, GenPolynomial<C> n, GenPolynomial<C> d, boolean isred) The constructor creates a Quotient object from a ring factory and a numerator and denominator polynomial. -
Method Summary
Modifier and TypeMethodDescriptionabs()Quotient absolute value.intQuotient comparison.copy()Clone this.Denominator.Quotient division.Extended greatest common divisor.booleanComparison with any other object.factory()Get the corresponding element factory.Greatest common divisor.inthashCode()Hash code for this quotient.inverse()Quotient inverse.booleanIs Qoutient a constant.booleanisONE()Is Quotient one.booleanisUnit()Is Quotient a unit.booleanisZERO()Is Quotient zero.monic()Quotient monic.Quotient multiplication by coefficient.multiply(GenPolynomial<C> b) Quotient multiplication by GenPolynomial.Quotient multiplication.negate()Quotient negate.Numerator.Quotient and remainder by division of this by S.Quotient remainder.intsignum()Quotient signum.Quotient subtraction.Quotient summation.toScript()Get a scripting compatible string representation.Get a scripting compatible string representation of the factory.toString()Get the String representation as RingElem.Methods inherited from interface MonoidElem
leftDivide, leftRemainder, power, rightDivide, rightRemainder, twosidedDivide, twosidedRemainder
-
Field Details
-
logger
private static final org.apache.logging.log4j.Logger logger -
debug
private static final boolean debug -
ring
Quotient class factory data structure. -
num
Numerator part of the element data structure. -
den
Denominator part of the element data structure.
-
-
Constructor Details
-
Quotient
The constructor creates a Quotient object from a ring factory.- Parameters:
r- ring factory.
-
Quotient
The constructor creates a Quotient object from a ring factory and a numerator polynomial. The denominator is assumed to be 1.- Parameters:
r- ring factory.n- numerator polynomial.
-
Quotient
The constructor creates a Quotient object from a ring factory and a numerator and denominator polynomial.- Parameters:
r- ring factory.n- numerator polynomial.d- denominator polynomial.
-
Quotient
The constructor creates a Quotient object from a ring factory and a numerator and denominator polynomial.- Parameters:
r- ring factory.n- numerator polynomial.d- denominator polynomial.isred- true if gcd(n,d) == 1, else false.
-
-
Method Details
-
factory
Get the corresponding element factory.- Specified by:
factoryin interfaceElement<C extends GcdRingElem<C>>- Returns:
- factory for this Element.
- See Also:
-
numerator
Numerator.- Specified by:
numeratorin interfaceQuotPair<C extends GcdRingElem<C>>- See Also:
-
denominator
Denominator.- Specified by:
denominatorin interfaceQuotPair<C extends GcdRingElem<C>>- See Also:
-
copy
-
isZERO
public boolean isZERO()Is Quotient zero.- Specified by:
isZEROin interfaceAbelianGroupElem<C extends GcdRingElem<C>>- Returns:
- If this is 0 then true is returned, else false.
- See Also:
-
isONE
public boolean isONE()Is Quotient one.- Specified by:
isONEin interfaceMonoidElem<C extends GcdRingElem<C>>- Returns:
- If this is 1 then true is returned, else false.
- See Also:
-
isUnit
public boolean isUnit()Is Quotient a unit.- Specified by:
isUnitin interfaceMonoidElem<C extends GcdRingElem<C>>- Returns:
- If this is a unit then true is returned, else false.
- See Also:
-
isConstant
public boolean isConstant()Is Qoutient a constant.- Specified by:
isConstantin interfaceQuotPair<C extends GcdRingElem<C>>- Returns:
- true, if this has constant numerator and denominator, else false.
-
toString
-
toScript
-
toScriptFactory
Get a scripting compatible string representation of the factory.- Specified by:
toScriptFactoryin interfaceElement<C extends GcdRingElem<C>>- Returns:
- script compatible representation for this ElemFactory.
- See Also:
-
compareTo
Quotient comparison.- Specified by:
compareToin interfaceComparable<C extends GcdRingElem<C>>- Specified by:
compareToin interfaceElement<C extends GcdRingElem<C>>- Parameters:
b- Quotient.- Returns:
- sign(this-b).
-
equals
-
hashCode
-
abs
Quotient absolute value.- Specified by:
absin interfaceAbelianGroupElem<C extends GcdRingElem<C>>- Returns:
- the absolute value of this.
- See Also:
-
sum
Quotient summation.- Specified by:
sumin interfaceAbelianGroupElem<C extends GcdRingElem<C>>- Parameters:
S- Quotient.- Returns:
- this+S.
-
negate
Quotient negate.- Specified by:
negatein interfaceAbelianGroupElem<C extends GcdRingElem<C>>- Returns:
- -this.
- See Also:
-
signum
public int signum()Quotient signum.- Specified by:
signumin interfaceAbelianGroupElem<C extends GcdRingElem<C>>- Returns:
- signum(this).
- See Also:
-
subtract
Quotient subtraction.- Specified by:
subtractin interfaceAbelianGroupElem<C extends GcdRingElem<C>>- Parameters:
S- Quotient.- Returns:
- this-S.
-
divide
Quotient division.- Specified by:
dividein interfaceMonoidElem<C extends GcdRingElem<C>>- Parameters:
S- Quotient.- Returns:
- this/S.
-
inverse
Quotient inverse.- Specified by:
inversein interfaceMonoidElem<C extends GcdRingElem<C>>- Returns:
- S with S = 1/this.
- See Also:
-
remainder
Quotient remainder.- Specified by:
remainderin interfaceMonoidElem<C extends GcdRingElem<C>>- Parameters:
S- Quotient.- Returns:
- this - (this/S)*S.
-
quotientRemainder
Quotient and remainder by division of this by S.- Specified by:
quotientRemainderin interfaceMonoidElem<C extends GcdRingElem<C>>- Parameters:
S- a Quotient- Returns:
- [this/S, this - (this/S)*S].
-
multiply
Quotient multiplication.- Specified by:
multiplyin interfaceMonoidElem<C extends GcdRingElem<C>>- Parameters:
S- Quotient.- Returns:
- this*S.
-
multiply
Quotient multiplication by GenPolynomial.- Parameters:
b- GenPolynomial. - Returns:
- this*b.
-
multiply
-
monic
-
gcd
-
egcd
-