Symmetric elements of involutive types
Content created by Jonathan Prieto-Cubides, Fredrik Bakke and Egbert Rijke.
Created on 2023-02-09.
Last modified on 2023-05-16.
module structured-types.symmetric-elements-involutive-types where
Imports
open import foundation.universe-levels open import structured-types.involutive-types open import univalent-combinatorics.2-element-types
Idea
Symmetric elements of involutive types are fixed points of the involution. In
other words, the type of symmetric elements of an involutive type A
is defined
to be
(X : 2-Element-Type lzero) → A X
Definition
symmetric-element-Involutive-Type : {l : Level} (A : Involutive-Type l) → UU (lsuc lzero ⊔ l) symmetric-element-Involutive-Type A = (X : 2-Element-Type lzero) → A X
Recent changes
- 2023-05-16. Fredrik Bakke. Swap from
md
totext
code blocks (#622). - 2023-03-13. Jonathan Prieto-Cubides. More maintenance (#506).
- 2023-03-10. Fredrik Bakke. Additions to
fix-import
(#497). - 2023-03-09. Jonathan Prieto-Cubides. Add hooks (#495).
- 2023-03-07. Fredrik Bakke. Add blank lines between
<details>
tags and markdown syntax (#490).