Iterating involutions
Content created by Fredrik Bakke, Egbert Rijke and Jonathan Prieto-Cubides.
Created on 2022-05-06.
Last modified on 2023-10-16.
module foundation.iterating-involutions where
Imports
open import elementary-number-theory.modular-arithmetic-standard-finite-types open import elementary-number-theory.natural-numbers open import foundation.action-on-identifications-functions open import foundation.involutions open import foundation.iterating-functions open import foundation.universe-levels open import foundation-core.coproduct-types open import foundation-core.identity-types open import univalent-combinatorics.standard-finite-types
Definition
Iterating involutions
module _ {l : Level} {X : UU l} (f : X → X) (P : is-involution f) where iterate-involution : (n : ℕ) (x : X) → iterate n f x = iterate (nat-Fin 2 (mod-two-ℕ n)) f x iterate-involution zero-ℕ x = refl iterate-involution (succ-ℕ n) x = ap f (iterate-involution n x) ∙ (cases-iterate-involution (mod-two-ℕ n)) where cases-iterate-involution : (k : Fin 2) → f (iterate (nat-Fin 2 k) f x) = iterate (nat-Fin 2 (succ-Fin 2 k)) f x cases-iterate-involution (inl (inr _)) = refl cases-iterate-involution (inr _) = P x
Recent changes
- 2023-10-16. Fredrik Bakke. Compatibility patch for Agda 2.6.4 (#846).
- 2023-09-11. Fredrik Bakke and Egbert Rijke. Some computations for different notions of equivalence (#711).
- 2023-06-10. Egbert Rijke and Fredrik Bakke. Cleaning up synthetic homotopy theory (#649).
- 2023-06-08. Fredrik Bakke. Remove empty
foundation
modules and replace them by their core counterparts (#644). - 2023-05-01. Fredrik Bakke. Refactor 2, the sequel to refactor (#581).