Documentation

Mathlib.Data.List.Rotate

List rotation #

This file proves basic results about List.rotate, the list rotation.

Main declarations #

Tags #

rotated, rotation, permutation, cycle

@[simp]
theorem List.rotate_mod {α : Type u} (l : List α) (n : ℕ) :
l.rotate (n % l.length) = l.rotate n
@[simp]
theorem List.rotate_nil {α : Type u} (n : ℕ) :
@[simp]
theorem List.rotate_zero {α : Type u} (l : List α) :
l.rotate 0 = l
theorem List.rotate'_nil {α : Type u} (n : ℕ) :
@[simp]
theorem List.rotate'_zero {α : Type u} (l : List α) :
l.rotate' 0 = l
theorem List.rotate'_cons_succ {α : Type u} (l : List α) (a : α) (n : ℕ) :
(a :: l).rotate' n.succ = (l ++ [a]).rotate' n
@[simp]
theorem List.length_rotate' {α : Type u} (l : List α) (n : ℕ) :
theorem List.rotate'_eq_drop_append_take {α : Type u} {l : List α} {n : ℕ} :
n ≤ l.length → l.rotate' n = drop n l ++ take n l
@[simp]
theorem List.rotate'_rotate' {α : Type u} (l : List α) (n m : ℕ) :
(l.rotate' n).rotate' m = l.rotate' (n + m)
@[simp]
theorem List.rotate'_length {α : Type u} (l : List α) :
@[simp]
theorem List.rotate'_length_mul {α : Type u} (l : List α) (n : ℕ) :
l.rotate' (l.length * n) = l
@[simp]
theorem List.rotate'_mod {α : Type u} (l : List α) (n : ℕ) :
l.rotate' (n % l.length) = l.rotate' n
theorem List.rotate_eq_rotate' {α : Type u} (l : List α) (n : ℕ) :
l.rotate n = l.rotate' n
@[simp]
theorem List.rotate_cons_succ {α : Type u} (l : List α) (a : α) (n : ℕ) :
(a :: l).rotate (n + 1) = (l ++ [a]).rotate n
@[simp]
theorem List.mem_rotate {α : Type u} {l : List α} {a : α} {n : ℕ} :
a ∈ l.rotate n ↔ a ∈ l
@[simp]
theorem List.length_rotate {α : Type u} (l : List α) (n : ℕ) :
@[simp]
theorem List.rotate_replicate {α : Type u} (a : α) (n k : ℕ) :
theorem List.rotate_eq_drop_append_take {α : Type u} {l : List α} {n : ℕ} :
n ≤ l.length → l.rotate n = drop n l ++ take n l
theorem List.rotate_eq_drop_append_take_mod {α : Type u} {l : List α} {n : ℕ} :
l.rotate n = drop (n % l.length) l ++ take (n % l.length) l
@[simp]
theorem List.rotate_append_length_eq {α : Type u} (l l' : List α) :
(l ++ l').rotate l.length = l' ++ l
@[simp]
theorem List.rotate_rotate {α : Type u} (l : List α) (n m : ℕ) :
(l.rotate n).rotate m = l.rotate (n + m)
@[simp]
theorem List.rotate_length {α : Type u} (l : List α) :
@[simp]
theorem List.rotate_length_mul {α : Type u} (l : List α) (n : ℕ) :
l.rotate (l.length * n) = l
theorem List.rotate_perm {α : Type u} (l : List α) (n : ℕ) :
(l.rotate n).Perm l
@[simp]
theorem List.nodup_rotate {α : Type u} {l : List α} {n : ℕ} :
@[simp]
theorem List.rotate_eq_nil_iff {α : Type u} {l : List α} {n : ℕ} :
l.rotate n = [] ↔ l = []
theorem List.nil_eq_rotate_iff {α : Type u} {l : List α} {n : ℕ} :
[] = l.rotate n ↔ [] = l
@[simp]
theorem List.rotate_singleton {α : Type u} (x : α) (n : ℕ) :
theorem List.zipWith_rotate_distrib {α : Type u} {β : Type u_1} {γ : Type u_2} (f : α → β → γ) (l : List α) (l' : List β) (n : ℕ) (h : l.length = l'.length) :
(zipWith f l l').rotate n = zipWith f (l.rotate n) (l'.rotate n)
theorem List.zipWith_rotate_one {α : Type u} {β : Type u_1} (f : α → α → β) (x y : α) (l : List α) :
zipWith f (x :: y :: l) ((x :: y :: l).rotate 1) = f x y :: zipWith f (y :: l) (l ++ [x])
theorem List.getElem?_rotate {α : Type u} {l : List α} {n m : ℕ} (hml : m < l.length) :
(l.rotate n)[m]? = l[(m + n) % l.length]?
@[simp]
theorem List.getElem_rotate {α : Type u} (l : List α) (n k : ℕ) (h : k < (l.rotate n).length) :
(l.rotate n)[k] = l[(k + n) % l.length]
theorem List.get_rotate {α : Type u} (l : List α) (n : ℕ) (k : Fin (l.rotate n).length) :
(l.rotate n).get k = l.get ⟨(↑k + n) % l.length, ⋯⟩
@[simp]
theorem List.head?_rotate {α : Type u} {l : List α} {n : ℕ} (h : n < l.length) :
(l.rotate n).head? = l[n]?
theorem List.get_rotate_one {α : Type u} (l : List α) (k : Fin (l.rotate 1).length) :
(l.rotate 1).get k = l.get ⟨(↑k + 1) % l.length, ⋯⟩
theorem List.getElem_eq_getElem_rotate {α : Type u} (l : List α) (n k : ℕ) (hk : k < l.length) :
l[k] = (l.rotate n)[(l.length - n % l.length + k) % l.length]

A version of List.getElem_rotate that represents l[k] in terms of (List.rotate l n)[⋯], not vice versa. Can be used instead of rewriting List.getElem_rotate from right to left.

theorem List.get_eq_get_rotate {α : Type u} (l : List α) (n : ℕ) (k : Fin l.length) :
l.get k = (l.rotate n).get ⟨(l.length - n % l.length + ↑k) % l.length, ⋯⟩

A version of List.get_rotate that represents List.get l in terms of List.get (List.rotate l n), not vice versa. Can be used instead of rewriting List.get_rotate from right to left.

theorem List.rotate_eq_self_iff_eq_replicate {α : Type u} [hα : Nonempty α] {l : List α} :
(∀ (n : ℕ), l.rotate n = l) ↔ ∃ (a : α), l = replicate l.length a
theorem List.rotate_injective {α : Type u} (n : ℕ) :
Function.Injective fun (l : List α) => l.rotate n
@[simp]
theorem List.rotate_eq_rotate {α : Type u} {l l' : List α} {n : ℕ} :
l.rotate n = l'.rotate n ↔ l = l'
theorem List.rotate_eq_iff {α : Type u} {l l' : List α} {n : ℕ} :
l.rotate n = l' ↔ l = l'.rotate (l'.length - n % l'.length)
@[simp]
theorem List.rotate_eq_singleton_iff {α : Type u} {l : List α} {n : ℕ} {x : α} :
l.rotate n = [x] ↔ l = [x]
@[simp]
theorem List.singleton_eq_rotate_iff {α : Type u} {l : List α} {n : ℕ} {x : α} :
[x] = l.rotate n ↔ [x] = l
theorem List.reverse_rotate {α : Type u} (l : List α) (n : ℕ) :
theorem List.rotate_reverse {α : Type u} (l : List α) (n : ℕ) :
@[simp]
theorem List.map_rotate {α : Type u} {β : Type u_1} (f : α → β) (l : List α) (n : ℕ) :
map f (l.rotate n) = (map f l).rotate n
theorem List.Nodup.rotate_congr {α : Type u} {l : List α} (hl : l.Nodup) (hn : l ≠ []) (i j : ℕ) (h : l.rotate i = l.rotate j) :
i % l.length = j % l.length
theorem List.Nodup.rotate_congr_iff {α : Type u} {l : List α} (hl : l.Nodup) {i j : ℕ} :
l.rotate i = l.rotate j ↔ i % l.length = j % l.length ∨ l = []
theorem List.Nodup.rotate_eq_self_iff {α : Type u} {l : List α} (hl : l.Nodup) {n : ℕ} :
l.rotate n = l ↔ n % l.length = 0 ∨ l = []
def List.IsRotated {α : Type u} (l l' : List α) :

IsRotated l₁ l₂ or l₁ ~r l₂ asserts that l₁ and l₂ are cyclic permutations of each other. This is defined by claiming that ∃ n, l.rotate n = l'.

Equations
Instances For

    IsRotated l₁ l₂ or l₁ ~r l₂ asserts that l₁ and l₂ are cyclic permutations of each other. This is defined by claiming that ∃ n, l.rotate n = l'.

    Equations
    Instances For
      theorem List.IsRotated.refl {α : Type u} (l : List α) :
      l ~r l
      theorem List.IsRotated.symm {α : Type u} {l l' : List α} (h : l ~r l') :
      l' ~r l
      theorem List.isRotated_comm {α : Type u} {l l' : List α} :
      l ~r l' ↔ l' ~r l
      @[simp]
      theorem List.IsRotated.forall {α : Type u} (l : List α) (n : ℕ) :
      l.rotate n ~r l
      theorem List.IsRotated.trans {α : Type u} {l l' l'' : List α} :
      l ~r l' → l' ~r l'' → l ~r l''
      @[deprecated Equivalence.of_isEquiv (since := "2026-09-09")]
      @[instance_reducible]
      def List.IsRotated.setoid (α : Type u_1) :

      The relation List.IsRotated l l' forms a Setoid of cycles.

      Equations
      Instances For
        theorem List.IsRotated.perm {α : Type u} {l l' : List α} (h : l ~r l') :
        l.Perm l'
        theorem List.IsRotated.nodup_iff {α : Type u} {l l' : List α} (h : l ~r l') :
        theorem List.IsRotated.mem_iff {α : Type u} {l l' : List α} (h : l ~r l') {a : α} :
        a ∈ l ↔ a ∈ l'
        @[simp]
        theorem List.isRotated_nil_iff {α : Type u} {l : List α} :
        l ~r [] ↔ l = []
        @[simp]
        theorem List.isRotated_nil_iff' {α : Type u} {l : List α} :
        [] ~r l ↔ [] = l
        @[simp]
        theorem List.isRotated_singleton_iff {α : Type u} {l : List α} {x : α} :
        l ~r [x] ↔ l = [x]
        @[simp]
        theorem List.isRotated_singleton_iff' {α : Type u} {l : List α} {x : α} :
        [x] ~r l ↔ [x] = l
        theorem List.isRotated_concat {α : Type u} (hd : α) (tl : List α) :
        tl ++ [hd] ~r hd :: tl
        theorem List.isRotated_append {α : Type u} {l l' : List α} :
        l ++ l' ~r l' ++ l
        theorem List.IsRotated.reverse {α : Type u} {l l' : List α} (h : l ~r l') :
        theorem List.isRotated_reverse_comm_iff {α : Type u} {l l' : List α} :
        l.reverse ~r l' ↔ l ~r l'.reverse
        @[simp]
        theorem List.isRotated_reverse_iff {α : Type u} {l l' : List α} :
        l.reverse ~r l'.reverse ↔ l ~r l'
        theorem List.isRotated_iff_mod {α : Type u} {l l' : List α} :
        l ~r l' ↔ ∃ (n : ℕ), n ≤ l.length ∧ l.rotate n = l'
        theorem List.isRotated_iff_mem_map_range {α : Type u} {l l' : List α} :
        l ~r l' ↔ l' ∈ map l.rotate (range (l.length + 1))
        theorem List.IsRotated.map {α : Type u} {β : Type u_1} {l₁ l₂ : List α} (h : l₁ ~r l₂) (f : α → β) :
        List.map f l₁ ~r List.map f l₂
        theorem List.IsRotated.cons_append_singleton {α : Type u} {l : List α} {a : α} :
        a :: l ~r l ++ [a]
        theorem List.IsRotated.cons_getLast_dropLast {α : Type u} (L : List α) (hL : L ≠ []) :
        theorem List.IsRotated.dropLast_tail {α : Type u_1} {L : List α} (hL : L ≠ []) (hL' : L.head hL = L.getLast hL) :
        def List.cyclicPermutations {α : Type u} :
        List α → List (List α)

        List of all cyclic permutations of l. The cyclicPermutations of a nonempty list l will always contain List.length l elements. This implies that under certain conditions, there are duplicates in List.cyclicPermutations l. The nth entry is equal to l.rotate n, proven in List.get_cyclicPermutations. The proof that every cyclic permutant of l is in the list is List.mem_cyclicPermutations_iff.

             cyclicPermutations [1, 2, 3, 2, 4] =
               [[1, 2, 3, 2, 4], [2, 3, 2, 4, 1], [3, 2, 4, 1, 2],
                [2, 4, 1, 2, 3], [4, 1, 2, 3, 2]]
        
        Equations
        Instances For
          theorem List.cyclicPermutations_cons {α : Type u} (x : α) (l : List α) :
          (x :: l).cyclicPermutations = (zipWith (fun (x1 x2 : List α) => x1 ++ x2) (x :: l).tails (x :: l).inits).dropLast
          theorem List.cyclicPermutations_of_ne_nil {α : Type u} (l : List α) (h : l ≠ []) :
          l.cyclicPermutations = (zipWith (fun (x1 x2 : List α) => x1 ++ x2) l.tails l.inits).dropLast
          @[simp]
          @[simp]
          theorem List.head_cyclicPermutations {α : Type u} (l : List α) :
          @[simp]
          theorem List.length_mem_cyclicPermutations {α : Type u} {l' : List α} (l : List α) (h : l' ∈ l.cyclicPermutations) :
          @[simp]
          theorem List.mem_cyclicPermutations_iff {α : Type u} {l l' : List α} :
          @[simp]

          If a l : List α is Nodup l, then all of its cyclic permutants are distinct.

          @[instance_reducible]
          instance List.isRotatedDecidable {α : Type u} [DecidableEq α] (l l' : List α) :
          Decidable (l ~r l')
          Equations
          @[instance_reducible]
          instance List.instDecidableR_mathlib {α : Type u} [DecidableEq α] {l l' : List α} :
          Equations