Ranges of naturals as lists #
This file shows basic results about List.iota
, List.range
, List.range'
and defines List.finRange
.
finRange n
is the list of elements of Fin n
.
iota n = [n, n - 1, ..., 1]
and range n = [0, ..., n - 1]
are basic list constructions used for
tactics. range' a b = [a, ..., a + b - 1]
is there to help prove properties about them.
Actual maths should use List.Ico
instead.
theorem
List.getElem_range'_1
{n : ℕ}
{m : ℕ}
(i : ℕ)
(H : i < (List.range' n m).length)
:
(List.range' n m)[i] = n + i
theorem
List.chain'_range_succ
(r : ℕ → ℕ → Prop)
(n : ℕ)
:
List.Chain' r (List.range n.succ) ↔ ∀ m < n, r m m.succ
theorem
List.chain_range_succ
(r : ℕ → ℕ → Prop)
(n : ℕ)
(a : ℕ)
:
List.Chain r a (List.range n.succ) ↔ r a 0 ∧ ∀ m < n, r m m.succ
theorem
List.pairwise_lt_finRange
(n : ℕ)
:
List.Pairwise (fun (x1 x2 : Fin n) => x1 < x2) (List.finRange n)
theorem
List.pairwise_le_finRange
(n : ℕ)
:
List.Pairwise (fun (x1 x2 : Fin n) => x1 ≤ x2) (List.finRange n)
@[simp]
theorem
List.getElem_finRange
{n : ℕ}
{i : ℕ}
(h : i < (List.finRange n).length)
:
(List.finRange n)[i] = ⟨i, ⋯⟩
theorem
List.get_finRange
{n : ℕ}
{i : ℕ}
(h : i < (List.finRange n).length)
:
(List.finRange n).get ⟨i, h⟩ = ⟨i, ⋯⟩
@[deprecated List.get_range']
theorem
List.nthLe_range'
{n : ℕ}
{m : ℕ}
{step : ℕ}
(i : ℕ)
(H : i < (List.range' n m step).length)
:
(List.range' n m step).get ⟨i, H⟩ = n + step * i
Alias of List.get_range'
.
@[deprecated List.getElem_range'_1]
theorem
List.nthLe_range'_1
{n : ℕ}
{m : ℕ}
(i : ℕ)
(H : i < (List.range' n m).length)
:
(List.range' n m)[i] = n + i
Alias of List.getElem_range'_1
.
@[deprecated List.get_range]
theorem
List.nthLe_range
{n : ℕ}
(i : ℕ)
(H : i < (List.range n).length)
:
(List.range n).get ⟨i, H⟩ = i
Alias of List.get_range
.
@[deprecated List.get_finRange]
theorem
List.nthLe_finRange
{n : ℕ}
{i : ℕ}
(h : i < (List.finRange n).length)
:
(List.finRange n).get ⟨i, h⟩ = ⟨i, ⋯⟩
Alias of List.get_finRange
.
@[simp]
theorem
List.finRange_map_get
{α : Type u}
(l : List α)
:
List.map l.get (List.finRange l.length) = l
@[simp]
From l : List ℕ
, construct l.ranges : List (List ℕ)
such that
l.ranges.map List.length = l
and l.ranges.join = range l.sum
- Example:
[1,2,3].ranges = [[0],[1,2],[3,4,5]]
Equations
Instances For
The members of l.ranges
are pairwise disjoint
See List.ranges_join
for the version about List.sum
.