| org.jscience.mathematics.structure.GroupAdditive
GroupAdditive | public interface GroupAdditive extends Structure<G>(Code) | | This interface represents a structure with a binary additive
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 | opposite() Returns the additive inverse of this object. | G | plus(G that) Returns the sum of this object with the one specified.
Parameters: that - the object to be added. |
opposite | G opposite()(Code) | | Returns the additive inverse of this object. It is the object such as
this.plus(this.opposite()) == ZERO ,
with ZERO being the additive identity.
-this . |
plus | G plus(G that)(Code) | | Returns the sum of this object with the one specified.
Parameters: that - the object to be added. this + that . |
|
|