Finite intervals of multisets #
This file provides the LocallyFiniteOrder
instance for Multiset α
and calculates the
cardinality of its finite intervals.
Implementation notes #
We implement the intervals via the intervals on DFinsupp
, rather than via filtering
Multiset.Powerset
; this is because (Multiset.replicate n x).Powerset
has 2^n
entries not n+1
entries as it contains duplicates. We do not go via Finsupp
as this would be noncomputable, and
multisets are typically used computationally.
Equations
- One or more equations did not get rendered due to their size.