Documentation

Mathlib.Data.Vector.Defs

The type Vector represents lists with fixed length.

def Mathlib.Vector (α : Type u) (n : ) :

Vector α n is the type of lists of length n with elements of type α.

Equations
Instances For
Equations
@[match_pattern]

The empty vector with elements of type α

Equations
  • Mathlib.Vector.nil = [],
@[match_pattern]
def Mathlib.Vector.cons {α : Type u_1} {n : } :
αMathlib.Vector α nMathlib.Vector α n.succ

If a : α and l : Vector α n, then cons a l, is the vector of length n + 1 whose first element is a and with l as the rest of the list.

Equations
@[reducible]
def Mathlib.Vector.length {α : Type u_1} {n : } :

The length of a vector.

Equations
  • x.length = n
def Mathlib.Vector.head {α : Type u_1} {n : } :
Mathlib.Vector α n.succα

The first element of a vector with length at least 1.

Equations
theorem Mathlib.Vector.head_cons {α : Type u_1} {n : } (a : α) (v : Mathlib.Vector α n) :
(Mathlib.Vector.cons a v).head = a

The head of a vector obtained by prepending is the element prepended.

def Mathlib.Vector.tail {α : Type u_1} {n : } :
Mathlib.Vector α nMathlib.Vector α (n - 1)

The tail of a vector, with an empty vector having empty tail.

Equations
theorem Mathlib.Vector.tail_cons {α : Type u_1} {n : } (a : α) (v : Mathlib.Vector α n) :
(Mathlib.Vector.cons a v).tail = v

The tail of a vector obtained by prepending is the vector prepended. to

@[simp]
theorem Mathlib.Vector.cons_head_tail {α : Type u_1} {n : } (v : Mathlib.Vector α n.succ) :
Mathlib.Vector.cons v.head v.tail = v

Prepending the head of a vector to its tail gives the vector.

def Mathlib.Vector.toList {α : Type u_1} {n : } (v : Mathlib.Vector α n) :
List α

The list obtained from a vector.

Equations
  • v.toList = v
def Mathlib.Vector.get {α : Type u_1} {n : } (l : Mathlib.Vector α n) (i : Fin n) :
α

nth element of a vector, indexed by a Fin type.

Equations
def Mathlib.Vector.append {α : Type u_1} {n m : } :
Mathlib.Vector α nMathlib.Vector α mMathlib.Vector α (n + m)

Appending a vector to another.

Equations
def Mathlib.Vector.elim {α : Type u_5} {C : {n : } → Mathlib.Vector α nSort u} (H : (l : List α) → C l, ) {n : } (v : Mathlib.Vector α n) :
C v

Elimination rule for Vector.

Equations
def Mathlib.Vector.map {α : Type u_1} {β : Type u_2} {n : } (f : αβ) :

Map a vector under a function.

Equations
@[simp]
theorem Mathlib.Vector.map_nil {α : Type u_1} {β : Type u_2} (f : αβ) :
Mathlib.Vector.map f Mathlib.Vector.nil = Mathlib.Vector.nil

A nil vector maps to a nil vector.

@[simp]
theorem Mathlib.Vector.map_cons {α : Type u_1} {β : Type u_2} {n : } (f : αβ) (a : α) (v : Mathlib.Vector α n) :

map is natural with respect to cons.

def Mathlib.Vector.pmap {α : Type u_1} {β : Type u_2} {n : } {p : αProp} (f : (a : α) → p aβ) (v : Mathlib.Vector α n) :
(∀ (x : α), x v.toListp x)Mathlib.Vector β n

Map a vector under a partial function.

Equations
@[simp]
theorem Mathlib.Vector.pmap_nil {α : Type u_1} {β : Type u_2} {p : αProp} (f : (a : α) → p aβ) (hp : ∀ (x : α), x Mathlib.Vector.nil.toListp x) :
Mathlib.Vector.pmap f Mathlib.Vector.nil hp = Mathlib.Vector.nil
def Mathlib.Vector.map₂ {α : Type u_1} {β : Type u_2} {φ : Type u_4} {n : } (f : αβφ) :

Mapping two vectors under a curried function of two variables.

Equations
def Mathlib.Vector.replicate {α : Type u_1} (n : ) (a : α) :

Vector obtained by repeating an element.

Equations
def Mathlib.Vector.drop {α : Type u_1} {n : } (i : ) :
Mathlib.Vector α nMathlib.Vector α (n - i)

Drop i elements from a vector of length n; we can have i > n.

Equations
def Mathlib.Vector.take {α : Type u_1} {n : } (i : ) :

Take i elements from a vector of length n; we can have i > n.

Equations
def Mathlib.Vector.eraseIdx {α : Type u_1} {n : } (i : Fin n) :
Mathlib.Vector α nMathlib.Vector α (n - 1)

Remove the element at position i from a vector of length n.

Equations
@[deprecated Mathlib.Vector.eraseIdx]
def Mathlib.Vector.removeNth {α : Type u_1} {n : } (i : Fin n) :
Mathlib.Vector α nMathlib.Vector α (n - 1)

Alias of Mathlib.Vector.eraseIdx.


Remove the element at position i from a vector of length n.

Equations
def Mathlib.Vector.ofFn {α : Type u_1} {n : } :
(Fin nα)Mathlib.Vector α n

Vector of length n from a function on Fin n.

Equations
def Mathlib.Vector.congr {α : Type u_1} {n m : } (h : n = m) :

Create a vector from another with a provably equal length.

Equations
def Mathlib.Vector.mapAccumr {α : Type u_1} {β : Type u_2} {σ : Type u_3} {n : } (f : ασσ × β) :
Mathlib.Vector α nσσ × Mathlib.Vector β n

Runs a function over a vector returning the intermediate results and a final result.

Equations
def Mathlib.Vector.mapAccumr₂ {α : Type u_1} {β : Type u_2} {σ : Type u_3} {φ : Type u_4} {n : } (f : αβσσ × φ) :
Mathlib.Vector α nMathlib.Vector β nσσ × Mathlib.Vector φ n

Runs a function over a pair of vectors returning the intermediate results and a final result.

Equations

Shift Primitives #

def Mathlib.Vector.shiftLeftFill {α : Type u_1} {n : } (v : Mathlib.Vector α n) (i : ) (fill : α) :

shiftLeftFill v i is the vector obtained by left-shifting v i times and padding with the fill argument. If v.length < i then this will return replicate n fill.

Equations
def Mathlib.Vector.shiftRightFill {α : Type u_1} {n : } (v : Mathlib.Vector α n) (i : ) (fill : α) :

shiftRightFill v i is the vector obtained by right-shifting v i times and padding with the fill argument. If v.length < i then this will return replicate n fill.

Equations

Basic Theorems #

theorem Mathlib.Vector.eq {α : Type u_1} {n : } (a1 a2 : Mathlib.Vector α n) :
a1.toList = a2.toLista1 = a2

Vector is determined by the underlying list.

theorem Mathlib.Vector.eq_nil {α : Type u_1} (v : Mathlib.Vector α 0) :
v = Mathlib.Vector.nil

A vector of length 0 is a nil vector.

@[simp]
theorem Mathlib.Vector.toList_mk {α : Type u_1} {n : } (v : List α) (P : v.length = n) :

Vector of length from a list v with witness that v has length n maps to v under toList.

@[simp]
theorem Mathlib.Vector.toList_nil {α : Type u_1} :
Mathlib.Vector.nil.toList = []

A nil vector maps to a nil list.

@[simp]
theorem Mathlib.Vector.toList_length {α : Type u_1} {n : } (v : Mathlib.Vector α n) :
v.toList.length = n

The length of the list to which a vector of length n maps is n.

@[simp]
theorem Mathlib.Vector.toList_cons {α : Type u_1} {n : } (a : α) (v : Mathlib.Vector α n) :
(Mathlib.Vector.cons a v).toList = a :: v.toList

toList of cons of a vector and an element is the cons of the list obtained by toList and the element

@[simp]
theorem Mathlib.Vector.toList_append {α : Type u_1} {n m : } (v : Mathlib.Vector α n) (w : Mathlib.Vector α m) :
(v.append w).toList = v.toList ++ w.toList

Appending of vectors corresponds under toList to appending of lists.

@[simp]
theorem Mathlib.Vector.toList_drop {α : Type u_1} {n m : } (v : Mathlib.Vector α m) :
(Mathlib.Vector.drop n v).toList = List.drop n v.toList

drop of vectors corresponds under toList to drop of lists.

@[simp]
theorem Mathlib.Vector.toList_take {α : Type u_1} {n m : } (v : Mathlib.Vector α m) :
(Mathlib.Vector.take n v).toList = List.take n v.toList

take of vectors corresponds under toList to take of lists.

instance Mathlib.Vector.instGetElemNatLt {α : Type u_1} {n : } :
GetElem (Mathlib.Vector α n) α fun (x : Mathlib.Vector α n) (i : ) => i < n
Equations
  • Mathlib.Vector.instGetElemNatLt = { getElem := fun (x : Mathlib.Vector α n) (i : ) (h : i < n) => x.get i, h }
theorem Mathlib.Vector.getElem_def {α : Type u_1} {n : } (v : Mathlib.Vector α n) (i : ) {hi : i < n} :
v[i] = v.toList[i]
theorem Mathlib.Vector.toList_getElem {α : Type u_1} {n : } (v : Mathlib.Vector α n) (i : ) {hi : i < v.toList.length} :
v.toList[i] = v[i]