Package edu.jas.ufd
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>>,java.io.Serializable,java.lang.Comparable<Quotient<C>>
public class Quotient<C extends GcdRingElem<C>> extends java.lang.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.- Author:
- Heinz Kredel
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description GenPolynomial<C>denDenominator part of the element data structure.GenPolynomial<C>numNumerator part of the element data structure.QuotientRing<C>ringQuotient class factory data structure.
-
Constructor Summary
Constructors Modifier Constructor Description Quotient(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
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Quotient<C>abs()Quotient absolute value.intcompareTo(Quotient<C> b)Quotient comparison.Quotient<C>copy()Clone this.GenPolynomial<C>denominator()Denominator.Quotient<C>divide(Quotient<C> S)Quotient division.Quotient<C>[]egcd(Quotient<C> b)Extended greatest common divisor.booleanequals(java.lang.Object b)Comparison with any other object.QuotientRing<C>factory()Get the corresponding element factory.Quotient<C>gcd(Quotient<C> b)Greatest common divisor.inthashCode()Hash code for this quotient.Quotient<C>inverse()Quotient inverse.booleanisConstant()Is Qoutient a constant.booleanisONE()Is Quotient one.booleanisUnit()Is Quotient a unit.booleanisZERO()Is Quotient zero.Quotient<C>monic()Quotient monic.Quotient<C>multiply(C b)Quotient multiplication by coefficient.Quotient<C>multiply(GenPolynomial<C> b)Quotient multiplication by GenPolynomial.Quotient<C>multiply(Quotient<C> S)Quotient multiplication.Quotient<C>negate()Quotient negate.GenPolynomial<C>numerator()Numerator.Quotient<C>[]quotientRemainder(Quotient<C> S)Quotient and remainder by division of this by S.Quotient<C>remainder(Quotient<C> S)Quotient remainder.intsignum()Quotient signum.Quotient<C>subtract(Quotient<C> S)Quotient subtraction.Quotient<C>sum(Quotient<C> S)Quotient summation.java.lang.StringtoScript()Get a scripting compatible string representation.java.lang.StringtoScriptFactory()Get a scripting compatible string representation of the factory.java.lang.StringtoString()Get the String representation as RingElem.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface edu.jas.structure.MonoidElem
leftDivide, leftRemainder, power, rightDivide, rightRemainder, twosidedDivide, twosidedRemainder
-
-
-
-
Field Detail
-
ring
public final QuotientRing<C extends GcdRingElem<C>> ring
Quotient class factory data structure.
-
num
public final GenPolynomial<C extends GcdRingElem<C>> num
Numerator part of the element data structure.
-
den
public final GenPolynomial<C extends GcdRingElem<C>> den
Denominator part of the element data structure.
-
-
Constructor Detail
-
Quotient
public Quotient(QuotientRing<C> r)
The constructor creates a Quotient object from a ring factory.- Parameters:
r- ring factory.
-
Quotient
public Quotient(QuotientRing<C> r, GenPolynomial<C> n)
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
public 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.- Parameters:
r- ring factory.n- numerator polynomial.d- denominator polynomial.
-
Quotient
protected Quotient(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.- Parameters:
r- ring factory.n- numerator polynomial.d- denominator polynomial.isred- true if gcd(n,d) == 1, else false.
-
-
Method Detail
-
factory
public QuotientRing<C> factory()
Get the corresponding element factory.- Specified by:
factoryin interfaceElement<C extends GcdRingElem<C>>- Returns:
- factory for this Element.
- See Also:
Element.factory()
-
numerator
public GenPolynomial<C> numerator()
Numerator.- Specified by:
numeratorin interfaceQuotPair<C extends GcdRingElem<C>>- See Also:
QuotPair.numerator()
-
denominator
public GenPolynomial<C> denominator()
Denominator.- Specified by:
denominatorin interfaceQuotPair<C extends GcdRingElem<C>>- See Also:
QuotPair.denominator()
-
copy
public Quotient<C> copy()
Clone this.- Specified by:
copyin interfaceElement<C extends GcdRingElem<C>>- Returns:
- Creates and returns a copy of this Element.
- See Also:
Object.clone()
-
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:
AbelianGroupElem.isZERO()
-
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:
MonoidElem.isONE()
-
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:
MonoidElem.isUnit()
-
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
public java.lang.String toString()
Get the String representation as RingElem.- Overrides:
toStringin classjava.lang.Object- See Also:
Object.toString()
-
toScript
public java.lang.String toScript()
Get a scripting compatible string representation.- Specified by:
toScriptin interfaceElement<C extends GcdRingElem<C>>- Returns:
- script compatible representation for this Element.
- See Also:
Element.toScript()
-
toScriptFactory
public java.lang.String 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:
Element.toScriptFactory()
-
compareTo
public int compareTo(Quotient<C> b)
Quotient comparison.- Specified by:
compareToin interfacejava.lang.Comparable<C extends GcdRingElem<C>>- Specified by:
compareToin interfaceElement<C extends GcdRingElem<C>>- Parameters:
b- Quotient.- Returns:
- sign(this-b).
-
equals
public boolean equals(java.lang.Object b)
Comparison with any other object.- Specified by:
equalsin interfaceElement<C extends GcdRingElem<C>>- Overrides:
equalsin classjava.lang.Object- Returns:
- true if this is equal to b, else false.
- See Also:
Object.equals(java.lang.Object)
-
hashCode
public int hashCode()
Hash code for this quotient.- Specified by:
hashCodein interfaceElement<C extends GcdRingElem<C>>- Overrides:
hashCodein classjava.lang.Object- Returns:
- the hashCode.
- See Also:
Object.hashCode()
-
abs
public Quotient<C> abs()
Quotient absolute value.- Specified by:
absin interfaceAbelianGroupElem<C extends GcdRingElem<C>>- Returns:
- the absolute value of this.
- See Also:
AbelianGroupElem.abs()
-
sum
public Quotient<C> sum(Quotient<C> S)
Quotient summation.- Specified by:
sumin interfaceAbelianGroupElem<C extends GcdRingElem<C>>- Parameters:
S- Quotient.- Returns:
- this+S.
-
negate
public Quotient<C> negate()
Quotient negate.- Specified by:
negatein interfaceAbelianGroupElem<C extends GcdRingElem<C>>- Returns:
- -this.
- See Also:
AbelianGroupElem.negate()
-
signum
public int signum()
Quotient signum.- Specified by:
signumin interfaceAbelianGroupElem<C extends GcdRingElem<C>>- Returns:
- signum(this).
- See Also:
AbelianGroupElem.signum()
-
subtract
public Quotient<C> subtract(Quotient<C> S)
Quotient subtraction.- Specified by:
subtractin interfaceAbelianGroupElem<C extends GcdRingElem<C>>- Parameters:
S- Quotient.- Returns:
- this-S.
-
divide
public Quotient<C> divide(Quotient<C> S)
Quotient division.- Specified by:
dividein interfaceMonoidElem<C extends GcdRingElem<C>>- Parameters:
S- Quotient.- Returns:
- this/S.
-
inverse
public Quotient<C> inverse()
Quotient inverse.- Specified by:
inversein interfaceMonoidElem<C extends GcdRingElem<C>>- Returns:
- S with S = 1/this.
- See Also:
MonoidElem.inverse()
-
remainder
public Quotient<C> remainder(Quotient<C> S)
Quotient remainder.- Specified by:
remainderin interfaceMonoidElem<C extends GcdRingElem<C>>- Parameters:
S- Quotient.- Returns:
- this - (this/S)*S.
-
quotientRemainder
public Quotient<C>[] quotientRemainder(Quotient<C> S)
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
public Quotient<C> multiply(Quotient<C> S)
Quotient multiplication.- Specified by:
multiplyin interfaceMonoidElem<C extends GcdRingElem<C>>- Parameters:
S- Quotient.- Returns:
- this*S.
-
multiply
public Quotient<C> multiply(GenPolynomial<C> b)
Quotient multiplication by GenPolynomial.- Parameters:
b- GenPolynomial. - Returns:
- this*b.
-
multiply
public Quotient<C> multiply(C b)
Quotient multiplication by coefficient.- Parameters:
b- coefficient.- Returns:
- this*b.
-
gcd
public Quotient<C> gcd(Quotient<C> b)
Greatest common divisor.- Specified by:
gcdin interfaceRingElem<C extends GcdRingElem<C>>- Parameters:
b- other element.- Returns:
- gcd(this,b).
-
-