mathlib documentation

data.fin.vec_notation

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 a matrix, so ![![a, b], ![c, d]] : fin 2 → fin 2 → α. Later we will define matrix m n α to be m → n → α, so the type of ![![a, b], ![c, d]] can be written as matrix (fin 2) (fin 2) α.

Main definitions #

Implementation notes #

The simp lemmas require that one of the arguments is of the form vec_cons _ _. 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 vec_cons a (vec_cons b vec_empty).

Examples #

Examples of usage can be found in the test/matrix.lean file.

def matrix.vec_empty {α : Type u} :
fin 0 → α

![] is the vector with no entries.

Equations
def matrix.vec_cons {α : Type u} {n : } (h : α) (t : fin n → α) :
fin n.succ → α

vec_cons h t prepends an entry h to a vector t.

The inverse functions are vec_head and vec_tail. The notation ![a, b, ...] expands to vec_cons a (vec_cons b ...).

Equations
def matrix.vec_head {α : Type u} {n : } (v : fin n.succ → α) :
α

vec_head v gives the first entry of the vector v

Equations
def matrix.vec_tail {α : Type u} {n : } (v : fin n.succ → α) :
fin n → α

vec_tail v gives a vector consisting of all entries of v except the first

Equations
@[protected, instance]
def matrix.pi_fin.has_repr {α : Type u} {n : } [has_repr α] :
has_repr (fin n → α)

Use ![...] notation for displaying a vector fin n → α, for example:

#eval ![1, 2] + ![3, 4] -- ![4, 6]
Equations
theorem matrix.empty_eq {α : Type u} (v : fin 0 → α) :
@[simp]
theorem matrix.head_fin_const {α : Type u} {n : } (a : α) :
matrix.vec_head (λ (i : fin (n + 1)), a) = a
@[simp]
theorem matrix.cons_val_zero {α : Type u} {m : } (x : α) (u : fin m → α) :
theorem matrix.cons_val_zero' {α : Type u} {m : } (h : 0 < m.succ) (x : α) (u : fin m → α) :
matrix.vec_cons x u 0, h⟩ = x
@[simp]
theorem matrix.cons_val_succ {α : Type u} {m : } (x : α) (u : fin m → α) (i : fin m) :
@[simp]
theorem matrix.cons_val_succ' {α : Type u} {m i : } (h : i.succ < m.succ) (x : α) (u : fin m → α) :
matrix.vec_cons x u i.succ, h⟩ = u i, _⟩
@[simp]
theorem matrix.head_cons {α : Type u} {m : } (x : α) (u : fin m → α) :
@[simp]
theorem matrix.tail_cons {α : Type u} {m : } (x : α) (u : fin m → α) :
@[simp]
theorem matrix.empty_val' {α : Type u} {n' : Type u_1} (j : n') :
@[simp]
theorem matrix.cons_head_tail {α : Type u} {m : } (u : fin m.succ → α) :
@[simp]
theorem matrix.range_cons {α : Type u} {n : } (x : α) (u : fin n → α) :
@[simp]
theorem matrix.range_empty {α : Type u} (u : fin 0 → α) :
@[simp]
theorem matrix.vec_cons_const {α : Type u} {n : } (a : α) :
matrix.vec_cons a (λ (k : fin n), a) = λ (_x : fin n.succ), a
theorem matrix.vec_single_eq_const {α : Type u} (a : α) :
![a] = λ (_x : fin 1), a
@[simp]
theorem matrix.cons_val_one {α : Type u} {m : } (x : α) (u : fin m.succ → α) :

![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.

@[simp]
theorem matrix.cons_val_fin_one {α : Type u} (x : α) (u : fin 0 → α) (i : fin 1) :
theorem matrix.cons_fin_one {α : Type u} (x : α) (u : fin 0 → α) :
matrix.vec_cons x u = λ (_x : fin 1), x

Numeral (bit0 and bit1) indices #

The following definitions and simp lemmas are to allow any numeral-indexed element of a vector given with matrix notation to be extracted by simp (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).

@[simp]
theorem matrix.empty_append {α : Type u} {n : } (v : fin n → α) :
@[simp]
theorem matrix.cons_append {α : Type u} {m n o : } (ho : o + 1 = m + 1 + n) (x : α) (u : fin m → α) (v : fin n → α) :
def matrix.vec_alt0 {α : Type u} {m n : } (hm : m = n + n) (v : fin m → α) (k : fin n) :
α

vec_alt0 v gives a vector with half the length of v, with only alternate elements (even-numbered).

Equations
def matrix.vec_alt1 {α : Type u} {m n : } (hm : m = n + n) (v : fin m → α) (k : fin n) :
α

vec_alt1 v gives a vector with half the length of v, with only alternate elements (odd-numbered).

Equations
theorem matrix.vec_alt0_append {α : Type u} {n : } (v : fin n → α) :
theorem matrix.vec_alt1_append {α : Type u} {n : } (v : fin (n + 1) → α) :
@[simp]
theorem matrix.vec_head_vec_alt0 {α : Type u} {m n : } (hm : m + 2 = n + 1 + (n + 1)) (v : fin (m + 2) → α) :
@[simp]
theorem matrix.vec_head_vec_alt1 {α : Type u} {m n : } (hm : m + 2 = n + 1 + (n + 1)) (v : fin (m + 2) → α) :
@[simp]
theorem matrix.cons_vec_bit0_eq_alt0 {α : Type u} {n : } (x : α) (u : fin n → α) (i : fin (n + 1)) :
@[simp]
theorem matrix.cons_vec_bit1_eq_alt1 {α : Type u} {n : } (x : α) (u : fin n → α) (i : fin (n + 1)) :
@[simp]
theorem matrix.cons_vec_alt0 {α : Type u} {m n : } (h : m + 1 + 1 = n + 1 + (n + 1)) (x y : α) (u : fin m → α) :
@[simp]
theorem matrix.empty_vec_alt0 (α : Type u_1) {h : 0 = 0 + 0} :
@[simp]
theorem matrix.cons_vec_alt1 {α : Type u} {m n : } (h : m + 1 + 1 = n + 1 + (n + 1)) (x y : α) (u : fin m → α) :
@[simp]
theorem matrix.empty_vec_alt1 (α : Type u_1) {h : 0 = 0 + 0} :
@[simp]
theorem matrix.smul_empty {α : Type u} {M : Type u_4} [has_scalar M α] (x : M) (v : fin 0 → α) :
@[simp]
theorem matrix.smul_cons {α : Type u} {n : } {M : Type u_4} [has_scalar M α] (x : M) (y : α) (v : fin n → α) :
@[simp]
theorem matrix.empty_add_empty {α : Type u} [has_add α] (v w : fin 0 → α) :
@[simp]
theorem matrix.cons_add {α : Type u} {n : } [has_add α] (x : α) (v : fin n → α) (w : fin n.succ → α) :
@[simp]
theorem matrix.add_cons {α : Type u} {n : } [has_add α] (v : fin n.succ → α) (y : α) (w : fin n → α) :
@[simp]
theorem matrix.cons_add_cons {α : Type u} {n : } [has_add α] (x : α) (v : fin n → α) (y : α) (w : fin n → α) :
@[simp]
theorem matrix.head_add {α : Type u} {n : } [has_add α] (a b : fin n.succ → α) :
@[simp]
theorem matrix.tail_add {α : Type u} {n : } [has_add α] (a b : fin n.succ → α) :
@[simp]
theorem matrix.empty_sub_empty {α : Type u} [has_sub α] (v w : fin 0 → α) :
@[simp]
theorem matrix.cons_sub {α : Type u} {n : } [has_sub α] (x : α) (v : fin n → α) (w : fin n.succ → α) :
@[simp]
theorem matrix.sub_cons {α : Type u} {n : } [has_sub α] (v : fin n.succ → α) (y : α) (w : fin n → α) :
@[simp]
theorem matrix.cons_sub_cons {α : Type u} {n : } [has_sub α] (x : α) (v : fin n → α) (y : α) (w : fin n → α) :
@[simp]
theorem matrix.head_sub {α : Type u} {n : } [has_sub α] (a b : fin n.succ → α) :
@[simp]
theorem matrix.tail_sub {α : Type u} {n : } [has_sub α] (a b : fin n.succ → α) :
@[simp]
theorem matrix.zero_empty {α : Type u} [has_zero α] :
@[simp]
theorem matrix.cons_zero_zero {α : Type u} {n : } [has_zero α] :
@[simp]
theorem matrix.head_zero {α : Type u} {n : } [has_zero α] :
@[simp]
theorem matrix.tail_zero {α : Type u} {n : } [has_zero α] :
@[simp]
theorem matrix.cons_eq_zero_iff {α : Type u} {n : } [has_zero α] {v : fin n → α} {x : α} :
matrix.vec_cons x v = 0 x = 0 v = 0
theorem matrix.cons_nonzero_iff {α : Type u} {n : } [has_zero α] {v : fin n → α} {x : α} :
@[simp]
theorem matrix.neg_empty {α : Type u} [has_neg α] (v : fin 0 → α) :
@[simp]
theorem matrix.neg_cons {α : Type u} {n : } [has_neg α] (x : α) (v : fin n → α) :
@[simp]
theorem matrix.head_neg {α : Type u} {n : } [has_neg α] (a : fin n.succ → α) :
@[simp]
theorem matrix.tail_neg {α : Type u} {n : } [has_neg α] (a : fin n.succ → α) :