Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
Data.Semiring.Property
Contents
Synopsis
- neutral_addition_on :: Semigroup r => Rel r -> r -> r -> Bool
- neutral_addition_on' :: Monoid r => Rel r -> r -> Bool
- neutral_multiplication_on :: Semiring r => Rel r -> r -> r -> Bool
- neutral_multiplication_on' :: (Monoid r, Semiring r) => Rel r -> r -> Bool
- associative_addition_on :: Semigroup r => Rel r -> r -> r -> r -> Bool
- associative_multiplication_on :: Semiring r => Rel r -> r -> r -> r -> Bool
- distributive_on :: Semiring r => Rel r -> r -> r -> r -> Bool
- nonunital_on :: (Monoid r, Semiring r) => Rel r -> r -> r -> Bool
- annihilative_multiplication_on :: (Monoid r, Semiring r) => Rel r -> r -> Bool
- homomorphism_boolean :: forall r. (Eq r, Monoid r, Semiring r) => Bool -> Bool -> Bool
- cancellative_addition_on :: Semigroup r => Rel r -> r -> r -> r -> Bool
- cancellative_multiplication_on :: Semiring r => Rel r -> r -> r -> r -> Bool
- commutative_addition_on :: Semigroup r => Rel r -> r -> r -> Bool
- commutative_multiplication_on :: Semiring r => Rel r -> r -> r -> Bool
- distributive_finite_on :: (Monoid r, Semiring r) => Rel r -> [r] -> r -> Bool
- distributive_finite1_on :: Semiring r => Rel r -> NonEmpty r -> r -> Bool
- distributive_cross_on :: (Monoid r, Semiring r) => Rel r -> [r] -> [r] -> Bool
- distributive_cross1_on :: Semiring r => Rel r -> NonEmpty r -> NonEmpty r -> Bool
Properties of pre-semirings & semirings
associative_addition_on :: Semigroup r => Rel r -> r -> r -> r -> Bool Source #
∀a,b,c∈R:(a+b)+c∼a+(b+c)
R must right-associate addition.
This should be verified by the underlying Semigroup
instance,
but is included here for completeness.
This is a required property.
associative_multiplication_on :: Semiring r => Rel r -> r -> r -> r -> Bool Source #
∀a,b,c∈R:(a∗b)∗c∼a∗(b∗c)
R must right-associate multiplication.
This is a required property.
distributive_on :: Semiring r => Rel r -> r -> r -> r -> Bool Source #
∀a,b,c∈R:(a+b)∗c∼(a∗c)+(b∗c)
R must right-distribute multiplication.
When R is a functor and the semiring structure is derived from Alternative
,
this translates to:
(a<|>
b)*>
c = (a*>
c)<|>
(b*>
c)
See https://en.wikibooks.org/wiki/Haskell/Alternative_and_MonadPlus.
This is a required property.
Properties of non-unital (near-)semirings
nonunital_on :: (Monoid r, Semiring r) => Rel r -> r -> r -> Bool Source #
∀a,b∈R:a∗b∼a∗b+b
If R is non-unital (i.e. sunit is not distinct from mempty) then it will instead satisfy a right-absorbtion property.
This follows from right-neutrality and right-distributivity.
Compare codistributive
and closed_stable
.
When R is also left-distributive we get: ∀a,b∈R:a∗b=a+a∗b+b
See also Warning
and https://blogs.ncl.ac.uk/andreymokhov/united-monoids/#whatif.
Properties of unital semirings
annihilative_multiplication_on :: (Monoid r, Semiring r) => Rel r -> r -> Bool Source #
∀a∈R:(z∗a)∼u
A R is unital then its addititive sunit must be right-annihilative, i.e.:
mempty
><
a ~~mempty
For Alternative
instances this property translates to:
empty
*>
a ~~empty
All right semirings must have a right-absorbative addititive sunit,
however note that depending on the Prd
instance this does not preclude
IEEE754-mandated behavior such as:
mempty
><
NaN ~~ NaN
This is a required property.
homomorphism_boolean :: forall r. (Eq r, Monoid r, Semiring r) => Bool -> Bool -> Bool Source #
fromBoolean
must be a semiring homomorphism into R.
This is a required property.
Properties of cancellative semirings
cancellative_addition_on :: Semigroup r => Rel r -> r -> r -> r -> Bool Source #
∀a,b,c∈R:b+a∼c+a⇒b=c
If R is right-cancellative wrt addition then for all a the section (a <>) is injective.
cancellative_multiplication_on :: Semiring r => Rel r -> r -> r -> r -> Bool Source #
∀a,b,c∈R:b∗a∼c∗a⇒b=c
If R is right-cancellative wrt multiplication then for all a the section (a ><) is injective.
Properties of commutative semirings
Properties of distributive semirings
distributive_finite_on :: (Monoid r, Semiring r) => Rel r -> [r] -> r -> Bool Source #
∀M≥0;a1…aM,b∈R:(∑Mi=1ai)∗b∼∑Mi=1ai∗b
R must right-distribute multiplication between finite sums.
For types with exact arithmetic this follows from distributive
& neutral_multiplication
.
distributive_finite1_on :: Semiring r => Rel r -> NonEmpty r -> r -> Bool Source #
∀M≥1;a1…aM,b∈R:(∑Mi=1ai)∗b∼∑Mi=1ai∗b
R must right-distribute multiplication over finite (non-empty) sums.
For types with exact arithmetic this follows from distributive
and the universality of fold1
.