Additional theorems and definitions about the Vector type #
This file introduces the infix notation ::ᵥ for Vector.cons.
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.
Instances For
The empty Vector is a Subsingleton.
Opposite direction of Vector.pmap_cons
The natural equivalence between length-n vectors and functions from Fin n.
Instances For
The tail of a nil vector is nil.
The tail of a vector made up of one element is nil.
The list that makes up a Vector made up of a single element,
retrieved via toList, is equal to the list of that single element.
Mapping under id does not change a vector.
Reverse a vector.
Instances For
The List of a vector after a reverse, retrieved by toList is equal
to the List.reverse after retrieving a vector's toList.
Accessing the nth element of a vector made up
of one element x : α is x itself.
The last element of a Vector, given that the vector is at least one element.
Instances For
The last element of a Vector, given that the vector is at least one element.
The last element of a vector is the head of the reverse vector.
Providing an empty vector to scanl gives the starting value b : β.
The recursive step of scanl splits a vector x ::ᵥ v : Vector α (n + 1)
into the provided starting value b : β and the recursed scanl
f b x : β as the starting value.
This lemma is the cons version of scanl_get.
The recursive step of scanl splits a vector made up of a single element
x ::ᵥ nil : Vector α 1 into a Vector of the provided starting value b : β
and the mapped f b x : β as the last value.
The first element of scanl of a vector v : Vector α n,
retrieved via head, is the starting value b : β.
For an index i : Fin n, the nth element of scanl of a
vector v : Vector α n at i.succ, is equal to the application
function f : β → α → β of the castSucc i element of
scanl f b v and get v i.
This lemma is the get version of scanl_cons.
Monadic analog of Vector.ofFn.
Given a monadic function on Fin n, return a Vector α n inside the monad.
Instances For
Apply a monadic function to each component of a vector, returning a vector inside the monad.
Instances For
Define C v by induction on v : Vector α n.
This function has two arguments: nil handles the base case on C nil,
and cons defines the inductive step using ∀ x : α, C w → C (x ::ᵥ w).
It is used as the default induction principle for the induction tactic.
Instances For
Define C v w by induction on a pair of vectors v : Vector α n and w : Vector β n.
Instances For
Define C u v w by induction on a triplet of vectors
u : Vector α n, v : Vector β n, and w : Vector γ b.
Instances For
Define motive v₁ v₂ by case-analysis on v₁ : Vector α n and v₂ : Vector β n.
Instances For
Define motive v₁ v₂ v₃ by case-analysis on v₁ : Vector α n, v₂ : Vector β n, and
v₃ : Vector γ n.
Instances For
Cast a vector to an array.
Instances For
v.insertIdx a i inserts a into the vector v at position i
(and shifting later components to the right).
Instances For
Erasing an element after inserting an element, at different indices.
set v n a replaces the nth element of v with a.
Instances For
Variant of List.Vector.prod_set that multiplies by the inverse of the replaced element
Variant of List.Vector.sum_set that subtracts the inverse of the replaced element
Apply an applicative function to each component of a vector.