Matrix and vector notation #
This file defines notation for vectors and matrices. Given a b c d : α
,
the notation allows us to write ![a, b, c, d] : Fin 4 → α
.
Nesting vectors gives coefficients of a matrix, so ![![a, b], ![c, d]] : Fin 2 → Fin 2 → α
.
In later files we introduce !![a, b; c, d]
as notation for Matrix.of ![![a, b], ![c, d]]
.
Main definitions #
vecEmpty
is the empty vector (or0
byn
matrix)![]
vecCons
prepends an entry to a vector, so![a, b]
isvecCons a (vecCons b vecEmpty)
Implementation notes #
The simp
lemmas require that one of the arguments is of the form vecCons _ _
.
This ensures simp
works with entries only when (some) entries are already given.
In other words, this notation will only appear in the output of simp
if it
already appears in the input.
Notations #
The main new notation is ![a, b]
, which gets expanded to vecCons a (vecCons b vecEmpty)
.
Examples #
Examples of usage can be found in the test/matrix.lean
file.
![...]
notation is used to construct a vector Fin n → α
using Matrix.vecEmpty
and
Matrix.vecCons
.
For instance, ![a, b, c] : Fin 3
is syntax for vecCons a (vecCons b (vecCons c vecEmpty))
.
Note that this should not be used as syntax for Matrix
as it generates a term with the wrong type.
The !![a, b; c, d]
syntax (provided by Matrix.matrixNotation
) should be used instead.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Unexpander for the ![x, y, ...]
notation.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Unexpander for the ![]
notation.
Equations
- One or more equations did not get rendered due to their size.
Instances For
vecTail v
gives a vector consisting of all entries of v
except the first
Equations
- Matrix.vecTail v = v ∘ Fin.succ
Instances For
![a, b, ...] 1
is equal to b
.
The simplifier needs a special lemma for length ≥ 2
, in addition to
cons_val_succ
, because 1 : Fin 1 = 0 : Fin 1
.
bit0
and bit1
indices #
The following definitions and simp
lemmas are used to allow
numeral-indexed element of a vector given with matrix notation to
be extracted by simp
in Lean 3 (even when the numeral is larger than the
number of elements in the vector, which is taken modulo that number
of elements by virtue of the semantics of bit0
and bit1
and of
addition on Fin n
).
vecAppend ho u v
appends two vectors of lengths m
and n
to produce
one of length o = m + n
. This is a variant of Fin.append
with an additional ho
argument,
which provides control of definitional equality for the vector length.
This turns out to be helpful when providing simp lemmas to reduce ![a, b, c] n
, and also means
that vecAppend ho u v 0
is valid. Fin.append u v 0
is not valid in this case because there is
no Zero (Fin (m + n))
instance.
Equations
- Matrix.vecAppend ho u v = Fin.append u v ∘ Fin.cast ho