A simple library for working with ring-like algebraic structures in Javascript that implements some common semirings. This library does not validate properties of the defined structures, so you could actually define any algebraic structure that has some notion of 'plus' and 'times'. It is a simple utility library I needed for my own purposes: I am not trying to implement all abstract algebra in here.
Written in Typescript, published as a commonjs modules on NPM and a single-file minified UMD module on GitHub in vulgar ES5.
Note that the set S
on which the operators apply is defined through generics, eg. Semiring<number>
. If you don't use Typescript, this behaviour should come from your own logic.
This library currently implements the following semirings:
I have two uses for this library:
- I want to make a long probabilistic computation 0.1 * 0.1 * ... * 0.1, and at some point Javascript's floating point arithmetic will be unable to represent a number so small, leading to arithmetic underflow. To counter, we use the Log semiring which holds the
-log
value of the probability. So it maps the numbers between 0 and 1 to the numbers between infinity and zero, skewed towards lower probabilities:
- I want to create an arithmetic expression of which values may change over time, i.e. pass around a value like
(x + 5) * 2
, andx
is a pointer to a changing value. So I need an abstract expression tree, basically.
import {
LogSemiring,
makeDeferrable,
BooleanSemiring,
fromProbabilityToMinusLog as fromProbability,
toProbabilityFromMinusLog as toProbability,
AtomicValue,
Bool
} from "semiring";
let minLogProb = fromProbability(1)
/**
* First use case: 1.0 * (0.1 * 0.1 ...a thousand times)
*/
for(let i=0;i<1000;i++) {
minLogProb = LogSemiring.times(
minLogProb,
fromProbability(0.1)
);
}
console.log(minLogProb); // -log(1.0e-1000) = 2302.58, comfortable :)
console.log(toProbability(minLogProb)); // 1.0e-1000, rounded to 0 :(
/**
* Second use case: create an expression tree with some two binary operators
*/
const deferrableBooleanSemiring = makeDeferrable(BooleanSemiring);
const AND = deferrableBooleanSemiring.times;
const OR = deferrableBooleanSemiring.plus;
const changeMyValue = new AtomicValue(false);
const TRUE = Bool.TRUE;
const FALSE = Bool.FALSE;
/**
* OR
* / \
* FALSE AND
* / \
* {false} TRUE
*/
const expressionTree = OR(FALSE, AND(changeMyValue, TRUE));
console.log(expressionTree.resolve()); // > false
changeMyValue.value = !changeMyValue.value; // Change expression tree
/**
* OR
* / \
* FALSE AND
* / \
* {true} TRUE
*/
console.log(expressionTree.resolve()); // > true
This semiring implements common notion of calculating probabilties.
Element set | β | β | 0Μ | 1Μ |
---|---|---|---|---|
Positive real numbers (R+) | + | * | 0.0 | 1.0 |
For example: 0.5 β 1.0 = 0.5
, 0.2 β 0.7 = 0.9
.
import {
ProbabilitySemiring
} from "semiring";
console.log(ProbabilitySemiring.times(0.5, 0.5)); // 0.25
A semiring usually used for multiplying numbers close to zero, to avoid arithmetic underflow.
Element set | β | β | 0Μ | 1Μ |
---|---|---|---|---|
Positive real numbers (R+) including Β±β | -log(e^{-x} + e^{-y}) | + | +β | 0 |
For example:
p = -log(0.1)
q = -log(0.5)
p β q = -log(e^-p + e^-q) = -log(0.6)
.
p β q = p + q = -log(0.05)
.
import {
LogSemiring
} from "semiring";
A semiring that represents Boolean logic.
Element set | β | β | 0Μ | 1Μ |
---|---|---|---|---|
{True, False} | β¨ | β§ | False | True |
For example:
True β False = True
.
True β False = False
.
import {
BooleanSemiring
} from "semiring";
A semiring that describes Tropical geometry. An interesting application of this semiring was made by Paul Klemperer for use in auctions during the financial crisis.
Element set | β | β | 0Μ | 1Μ |
---|---|---|---|---|
Real numbers R including β | min | + | β | 0 |
For example:
4 β β = 4
.
4 β 4 = 8
.
import {
TropicalSemiring
} from "semiring";
A semiring of formal languages. Used in automaton theory. (An unweighted functional transducer can be seen as as a weighted automaton over the string semiring.)
Element set | β | β | 0Μ | 1Μ |
---|---|---|---|---|
All languages over an alphabet Ξ£ | βͺ | L1 β L2 = {wβ v | w β L1, v β L2} | {} | {""} |
For example:
{a, b, c} β {ab} = {a, b, c, ab}
.
{ab, ac} β {ab} = {abab, acab}
.
import {
StringSemiring
} from "semiring";
Maarten Trompper <maartentrompper@freedom.nl>