| org.jscience.mathematics.structure.GroupMultiplicative
GroupMultiplicative | public interface GroupMultiplicative extends Structure<G>(Code) | | This interface represents a structure with a binary multiplicative
operation (·), satisfying the group axioms (associativity, neutral element,
inverse element and closure).
author: Jean-Marie Dautelle version: 3.0, February 13, 2006 See Also:
* Wikipedia: Mathematical Group |
Method Summary | |
G | inverse() Returns the multiplicative inverse of this object. | G | times(G that) Returns the product of this object with the one specified.
Parameters: that - the object multiplier. |
inverse | G inverse()(Code) | | Returns the multiplicative inverse of this object. It it the object
such as this.times(this.inverse()) == ONE ,
with ONE being the multiplicative identity.
ONE / this . |
times | G times(G that)(Code) | | Returns the product of this object with the one specified.
Parameters: that - the object multiplier. this · that . |
|
|