Strongly extensional maps
Content created by Fredrik Bakke, Jonathan Prieto-Cubides and Egbert Rijke.
Created on 2022-09-15.
Last modified on 2024-01-17.
module foundation.strongly-extensional-maps where
Idea
Consider a function f : A → B
between types equipped with apartness relations.
Then we say that f
is strongly extensional if
f x # f y → x # y
Definition
strongly-extensional : {l1 l2 l3 l4 : Level} (A : Type-With-Apartness l1 l2) (B : Type-With-Apartness l3 l4) → (type-Type-With-Apartness A → type-Type-With-Apartness B) → UU (l1 ⊔ l2 ⊔ l4) strongly-extensional A B f = (x y : type-Type-With-Apartness A) → apart-Type-With-Apartness B (f x) (f y) → apart-Type-With-Apartness A x y
Properties
is-strongly-extensional :
{l1 l2 l3 l4 : Level} (A : Type-With-Apartness l1 l2)
(B : Type-With-Apartness l3 l4) →
(f : type-Type-With-Apartness A → type-Type-With-Apartness B) →
strongly-extensional A B f
is-strongly-extensional A B f x y H = {!!}
Recent changes
- 2024-01-17. Egbert Rijke. Reformatting commented blocks of code (#1004).
- 2023-06-08. Fredrik Bakke. Remove empty
foundation
modules and replace them by their core counterparts (#644). - 2023-05-16. Fredrik Bakke. Swap from
md
totext
code blocks (#622). - 2023-03-21. Fredrik Bakke. Formatting fixes (#530).
- 2023-03-14. Fredrik Bakke. Remove all unused imports (#502).