Inductive type variant of Fin
#
Fin
is defined as a subtype of ℕ
. This file defines an equivalent type, Fin2
, which is
defined inductively. This is useful for its induction principle and different definitional
equalities.
Main declarations #
Fin2 n
: Inductive type variant ofFin n
.fz
corresponds to0
andfs n
corresponds ton
.Fin2.toNat
,Fin2.optOfNat
,Fin2.ofNat'
: Conversions to and fromℕ
.ofNat' m
takes a proof thatm < n
through the classFin2.IsLT
.Fin2.add k
: Takesi : Fin2 n
toi + k : Fin2 (n + k)
.Fin2.left
: EmbedsFin2 n
intoFin2 (n + k)
.Fin2.insertPerm a
: Permutation ofFin2 n
which cycles0, ..., a - 1
and leavesa, ..., n - 1
unchanged.Fin2.remapLeft f
: FunctionFin2 (m + k) → Fin2 (n + k)
by applyingf : Fin m → Fin n
to0, ..., m - 1
and sendingm + i
ton + i
.
insertPerm a
is a permutation of Fin2 n
with the following properties:
insertPerm a i = i+1
ifi < a
insertPerm a a = 0
insertPerm a i = i
ifi > a
Equations
Instances For
Equations
- Fin2.instInhabitedOfNatNat = { default := Fin2.fz }
Equations
- One or more equations did not get rendered due to their size.
- Fin2.instFintype 0 = { elems := ∅, complete := Fin2.instFintype.proof_4 }