F
- a fieldpublic interface Field<F> extends Ring<F>
Modifier and Type | Interface and Description |
---|---|
static class |
Field.InverseNonExistent
This is the exception thrown when the inverse of a field element does not exist.
|
Modifier and Type | Method and Description |
---|---|
F |
divide(F that)
/ : F × F → F
That is the same as
this.multiply(that.inverse()) |
F |
inverse()
For each a in F, there exists an element b in F such that
a × b = b × a = 1.
|
add, minus, opposite, ZERO
F inverse() throws Field.InverseNonExistent
this.multiply(this.inverse()) == this.ONE
Field.InverseNonExistent
- if the inverse does not existF divide(F that) throws Field.InverseNonExistent
this.multiply(that.inverse())
that
- the denominatorField.InverseNonExistent
- if the inverse does not existCopyright © 2010-2020 NM FinTech Ltd.. All Rights Reserved.