2015-02-21 00:30:32 +00:00
|
|
|
/-
|
|
|
|
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
Author: Jeremy Avigad, Jakob von Raumer
|
|
|
|
|
|
|
|
Ported from Coq HoTT
|
|
|
|
-/
|
|
|
|
|
2014-12-12 18:17:50 +00:00
|
|
|
prelude
|
|
|
|
import .path .function
|
2015-06-24 21:59:17 +00:00
|
|
|
open eq function lift
|
2014-12-12 04:14:53 +00:00
|
|
|
|
2015-02-21 00:30:32 +00:00
|
|
|
/- Equivalences -/
|
2014-12-12 04:14:53 +00:00
|
|
|
|
|
|
|
-- This is our definition of equivalence. In the HoTT-book it's called
|
|
|
|
-- ihae (half-adjoint equivalence).
|
|
|
|
structure is_equiv [class] {A B : Type} (f : A → B) :=
|
2015-04-24 22:51:16 +00:00
|
|
|
mk' ::
|
2014-12-12 04:14:53 +00:00
|
|
|
(inv : B → A)
|
2015-07-29 12:17:16 +00:00
|
|
|
(right_inv : Πb, f (inv b) = b)
|
|
|
|
(left_inv : Πa, inv (f a) = a)
|
2015-04-27 19:39:36 +00:00
|
|
|
(adj : Πx, right_inv (f x) = ap f (left_inv x))
|
2014-12-12 04:14:53 +00:00
|
|
|
|
2015-03-05 06:20:20 +00:00
|
|
|
attribute is_equiv.inv [quasireducible]
|
2014-12-12 04:14:53 +00:00
|
|
|
|
2015-02-21 00:30:32 +00:00
|
|
|
-- A more bundled version of equivalence
|
2014-12-12 04:14:53 +00:00
|
|
|
structure equiv (A B : Type) :=
|
|
|
|
(to_fun : A → B)
|
|
|
|
(to_is_equiv : is_equiv to_fun)
|
|
|
|
|
2015-02-21 00:30:32 +00:00
|
|
|
namespace is_equiv
|
|
|
|
/- Some instances and closure properties of equivalences -/
|
2015-10-01 19:52:28 +00:00
|
|
|
postfix ⁻¹ := inv
|
2015-04-24 22:51:16 +00:00
|
|
|
/- a second notation for the inverse, which is not overloaded -/
|
2015-10-09 20:21:03 +00:00
|
|
|
postfix [parsing_only] `⁻¹ᶠ`:std.prec.max_plus := inv
|
2014-12-12 04:14:53 +00:00
|
|
|
|
2015-02-21 00:30:32 +00:00
|
|
|
section
|
2014-12-12 04:14:53 +00:00
|
|
|
variables {A B C : Type} (f : A → B) (g : B → C) {f' : A → B}
|
|
|
|
|
2015-04-24 22:51:16 +00:00
|
|
|
-- The variant of mk' where f is explicit.
|
2015-05-14 02:01:48 +00:00
|
|
|
protected abbreviation mk [constructor] := @is_equiv.mk' A B f
|
2015-04-24 22:51:16 +00:00
|
|
|
|
2014-12-12 04:14:53 +00:00
|
|
|
-- The identity function is an equivalence.
|
2015-06-04 01:41:21 +00:00
|
|
|
definition is_equiv_id (A : Type) : (is_equiv (id : A → A)) :=
|
2015-04-24 22:51:16 +00:00
|
|
|
is_equiv.mk id id (λa, idp) (λa, idp) (λa, idp)
|
2014-12-12 04:14:53 +00:00
|
|
|
|
|
|
|
-- The composition of two equivalences is, again, an equivalence.
|
2015-08-07 14:44:57 +00:00
|
|
|
definition is_equiv_compose [constructor] [Hf : is_equiv f] [Hg : is_equiv g]
|
|
|
|
: is_equiv (g ∘ f) :=
|
|
|
|
is_equiv.mk (g ∘ f) (f⁻¹ ∘ g⁻¹)
|
|
|
|
(λc, ap g (right_inv f (g⁻¹ c)) ⬝ right_inv g c)
|
|
|
|
(λa, ap (inv f) (left_inv g (f a)) ⬝ left_inv f a)
|
|
|
|
(λa, (whisker_left _ (adj g (f a))) ⬝
|
|
|
|
(ap_con g _ _)⁻¹ ⬝
|
|
|
|
ap02 g ((ap_con_eq_con (right_inv f) (left_inv g (f a)))⁻¹ ⬝
|
|
|
|
(ap_compose f (inv f) _ ◾ adj f a) ⬝
|
|
|
|
(ap_con f _ _)⁻¹
|
|
|
|
) ⬝
|
|
|
|
(ap_compose g f _)⁻¹
|
|
|
|
)
|
2014-12-12 04:14:53 +00:00
|
|
|
|
|
|
|
-- Any function equal to an equivalence is an equivlance as well.
|
2015-05-02 21:17:50 +00:00
|
|
|
variable {f}
|
2015-06-17 19:58:58 +00:00
|
|
|
definition is_equiv_eq_closed [Hf : is_equiv f] (Heq : f = f') : is_equiv f' :=
|
|
|
|
eq.rec_on Heq Hf
|
2015-02-21 00:30:32 +00:00
|
|
|
end
|
2014-12-12 04:14:53 +00:00
|
|
|
|
2015-04-22 02:17:59 +00:00
|
|
|
section
|
2014-12-12 04:14:53 +00:00
|
|
|
parameters {A B : Type} (f : A → B) (g : B → A)
|
2015-07-29 12:17:16 +00:00
|
|
|
(ret : Πb, f (g b) = b) (sec : Πa, g (f a) = a)
|
|
|
|
|
2015-08-31 16:23:34 +00:00
|
|
|
private abbreviation adjointify_left_inv' (a : A) : g (f a) = a :=
|
2015-07-29 12:17:16 +00:00
|
|
|
ap g (ap f (inverse (sec a))) ⬝ ap g (ret (f a)) ⬝ sec a
|
|
|
|
|
2015-09-10 22:32:52 +00:00
|
|
|
private theorem adjointify_adj' (a : A) : ret (f a) = ap f (adjointify_left_inv' a) :=
|
2015-07-29 12:17:16 +00:00
|
|
|
let fgretrfa := ap f (ap g (ret (f a))) in
|
|
|
|
let fgfinvsect := ap f (ap g (ap f (sec a)⁻¹)) in
|
|
|
|
let fgfa := f (g (f a)) in
|
|
|
|
let retrfa := ret (f a) in
|
|
|
|
have eq1 : ap f (sec a) = _,
|
|
|
|
from calc ap f (sec a)
|
|
|
|
= idp ⬝ ap f (sec a) : by rewrite idp_con
|
|
|
|
... = (ret (f a) ⬝ (ret (f a))⁻¹) ⬝ ap f (sec a) : by rewrite con.right_inv
|
|
|
|
... = ((ret fgfa)⁻¹ ⬝ ap (f ∘ g) (ret (f a))) ⬝ ap f (sec a) : by rewrite con_ap_eq_con
|
|
|
|
... = ((ret fgfa)⁻¹ ⬝ fgretrfa) ⬝ ap f (sec a) : by rewrite ap_compose
|
|
|
|
... = (ret fgfa)⁻¹ ⬝ (fgretrfa ⬝ ap f (sec a)) : by rewrite con.assoc,
|
|
|
|
have eq2 : ap f (sec a) ⬝ idp = (ret fgfa)⁻¹ ⬝ (fgretrfa ⬝ ap f (sec a)),
|
|
|
|
from !con_idp ⬝ eq1,
|
|
|
|
have eq3 : idp = _,
|
|
|
|
from calc idp
|
|
|
|
= (ap f (sec a))⁻¹ ⬝ ((ret fgfa)⁻¹ ⬝ (fgretrfa ⬝ ap f (sec a))) : eq_inv_con_of_con_eq eq2
|
|
|
|
... = ((ap f (sec a))⁻¹ ⬝ (ret fgfa)⁻¹) ⬝ (fgretrfa ⬝ ap f (sec a)) : by rewrite con.assoc'
|
|
|
|
... = (ap f (sec a)⁻¹ ⬝ (ret fgfa)⁻¹) ⬝ (fgretrfa ⬝ ap f (sec a)) : by rewrite ap_inv
|
|
|
|
... = ((ap f (sec a)⁻¹ ⬝ (ret fgfa)⁻¹) ⬝ fgretrfa) ⬝ ap f (sec a) : by rewrite con.assoc'
|
|
|
|
... = ((retrfa⁻¹ ⬝ ap (f ∘ g) (ap f (sec a)⁻¹)) ⬝ fgretrfa) ⬝ ap f (sec a) : by rewrite con_ap_eq_con
|
2015-08-31 16:23:34 +00:00
|
|
|
... = ((retrfa⁻¹ ⬝ fgfinvsect) ⬝ fgretrfa) ⬝ ap f (sec a) : by rewrite ap_compose
|
2015-07-29 12:17:16 +00:00
|
|
|
... = (retrfa⁻¹ ⬝ (fgfinvsect ⬝ fgretrfa)) ⬝ ap f (sec a) : by rewrite con.assoc'
|
|
|
|
... = retrfa⁻¹ ⬝ ap f (ap g (ap f (sec a)⁻¹) ⬝ ap g (ret (f a))) ⬝ ap f (sec a) : by rewrite ap_con
|
|
|
|
... = retrfa⁻¹ ⬝ (ap f (ap g (ap f (sec a)⁻¹) ⬝ ap g (ret (f a))) ⬝ ap f (sec a)) : by rewrite con.assoc'
|
|
|
|
... = retrfa⁻¹ ⬝ ap f ((ap g (ap f (sec a)⁻¹) ⬝ ap g (ret (f a))) ⬝ sec a) : by rewrite -ap_con,
|
|
|
|
have eq4 : ret (f a) = ap f ((ap g (ap f (sec a)⁻¹) ⬝ ap g (ret (f a))) ⬝ sec a),
|
|
|
|
from eq_of_idp_eq_inv_con eq3,
|
|
|
|
eq4
|
2014-12-12 04:14:53 +00:00
|
|
|
|
2015-05-14 02:01:48 +00:00
|
|
|
definition adjointify [constructor] : is_equiv f :=
|
2015-07-29 12:17:16 +00:00
|
|
|
is_equiv.mk f g ret adjointify_left_inv' adjointify_adj'
|
2014-12-12 04:14:53 +00:00
|
|
|
end
|
|
|
|
|
2015-06-17 19:58:58 +00:00
|
|
|
-- Any function pointwise equal to an equivalence is an equivalence as well.
|
2015-08-07 14:44:57 +00:00
|
|
|
definition homotopy_closed [constructor] {A B : Type} (f : A → B) {f' : A → B} [Hf : is_equiv f]
|
2015-06-17 19:58:58 +00:00
|
|
|
(Hty : f ~ f') : is_equiv f' :=
|
|
|
|
adjointify f'
|
|
|
|
(inv f)
|
|
|
|
(λ b, (Hty (inv f b))⁻¹ ⬝ right_inv f b)
|
|
|
|
(λ a, (ap (inv f) (Hty a))⁻¹ ⬝ left_inv f a)
|
|
|
|
|
|
|
|
definition inv_homotopy_closed [constructor] {A B : Type} {f : A → B} {f' : B → A}
|
|
|
|
[Hf : is_equiv f] (Hty : f⁻¹ ~ f') : is_equiv f :=
|
|
|
|
adjointify f
|
|
|
|
f'
|
|
|
|
(λ b, ap f !Hty⁻¹ ⬝ right_inv f b)
|
|
|
|
(λ a, !Hty⁻¹ ⬝ left_inv f a)
|
|
|
|
|
2015-08-31 16:23:34 +00:00
|
|
|
definition is_equiv_up [instance] [constructor] (A : Type)
|
|
|
|
: is_equiv (up : A → lift A) :=
|
2015-06-24 21:59:17 +00:00
|
|
|
adjointify up down (λa, by induction a;reflexivity) (λa, idp)
|
|
|
|
|
2015-02-21 00:30:32 +00:00
|
|
|
section
|
2015-03-13 22:27:29 +00:00
|
|
|
variables {A B C : Type} (f : A → B) {f' : A → B} [Hf : is_equiv f] (g : B → C)
|
2014-12-12 04:14:53 +00:00
|
|
|
include Hf
|
|
|
|
|
2015-03-13 22:27:29 +00:00
|
|
|
--The inverse of an equivalence is, again, an equivalence.
|
2015-08-07 14:44:57 +00:00
|
|
|
definition is_equiv_inv [instance] [constructor] : is_equiv f⁻¹ :=
|
2015-04-27 19:39:36 +00:00
|
|
|
adjointify f⁻¹ f (left_inv f) (right_inv f)
|
2015-02-11 20:49:27 +00:00
|
|
|
|
2015-02-21 00:30:32 +00:00
|
|
|
definition cancel_right (g : B → C) [Hgf : is_equiv (g ∘ f)] : (is_equiv g) :=
|
2015-03-13 22:27:29 +00:00
|
|
|
have Hfinv [visible] : is_equiv f⁻¹, from is_equiv_inv f,
|
2015-04-27 19:39:36 +00:00
|
|
|
@homotopy_closed _ _ _ _ (is_equiv_compose f⁻¹ (g ∘ f)) (λb, ap g (@right_inv _ _ f _ b))
|
2014-12-12 04:14:53 +00:00
|
|
|
|
2015-02-21 00:30:32 +00:00
|
|
|
definition cancel_left (g : C → A) [Hgf : is_equiv (f ∘ g)] : (is_equiv g) :=
|
2015-03-13 22:27:29 +00:00
|
|
|
have Hfinv [visible] : is_equiv f⁻¹, from is_equiv_inv f,
|
2015-04-27 19:39:36 +00:00
|
|
|
@homotopy_closed _ _ _ _ (is_equiv_compose (f ∘ g) f⁻¹) (λa, left_inv f (g a))
|
2014-12-12 04:14:53 +00:00
|
|
|
|
2015-05-22 08:35:38 +00:00
|
|
|
definition eq_of_fn_eq_fn' {x y : A} (q : f x = f y) : x = y :=
|
|
|
|
(left_inv f x)⁻¹ ⬝ ap f⁻¹ q ⬝ left_inv f y
|
|
|
|
|
2015-08-31 16:23:34 +00:00
|
|
|
theorem ap_eq_of_fn_eq_fn' {x y : A} (q : f x = f y) : ap f (eq_of_fn_eq_fn' f q) = q :=
|
|
|
|
begin
|
|
|
|
rewrite [↑eq_of_fn_eq_fn',+ap_con,ap_inv,-+adj,-ap_compose,con.assoc,
|
|
|
|
ap_con_eq_con_ap (right_inv f) q,inv_con_cancel_left,ap_id],
|
|
|
|
end
|
|
|
|
|
2015-05-22 08:35:38 +00:00
|
|
|
definition is_equiv_ap [instance] (x y : A) : is_equiv (ap f : x = y → f x = f y) :=
|
|
|
|
adjointify
|
|
|
|
(ap f)
|
|
|
|
(eq_of_fn_eq_fn' f)
|
2015-02-21 00:30:32 +00:00
|
|
|
(λq, !ap_con
|
|
|
|
⬝ whisker_right !ap_con _
|
2015-02-28 00:02:18 +00:00
|
|
|
⬝ ((!ap_inv ⬝ inverse2 (adj f _)⁻¹)
|
2015-06-23 16:47:52 +00:00
|
|
|
◾ (inverse (ap_compose f f⁻¹ _))
|
2014-12-12 04:14:53 +00:00
|
|
|
◾ (adj f _)⁻¹)
|
2015-04-27 19:39:36 +00:00
|
|
|
⬝ con_ap_con_eq_con_con (right_inv f) _ _
|
2015-02-28 00:50:06 +00:00
|
|
|
⬝ whisker_right !con.left_inv _
|
2015-02-21 00:30:32 +00:00
|
|
|
⬝ !idp_con)
|
2015-06-23 16:47:52 +00:00
|
|
|
(λp, whisker_right (whisker_left _ (ap_compose f⁻¹ f _)⁻¹) _
|
2015-04-27 19:39:36 +00:00
|
|
|
⬝ con_ap_con_eq_con_con (left_inv f) _ _
|
2015-02-28 00:50:06 +00:00
|
|
|
⬝ whisker_right !con.left_inv _
|
2015-02-21 00:30:32 +00:00
|
|
|
⬝ !idp_con)
|
2014-12-12 04:14:53 +00:00
|
|
|
|
|
|
|
-- The function equiv_rect says that given an equivalence f : A → B,
|
|
|
|
-- and a hypothesis from B, one may always assume that the hypothesis
|
|
|
|
-- is in the image of e.
|
|
|
|
|
|
|
|
-- In fibrational terms, if we have a fibration over B which has a section
|
|
|
|
-- once pulled back along an equivalence f : A → B, then it has a section
|
|
|
|
-- over all of B.
|
|
|
|
|
2015-08-31 16:23:34 +00:00
|
|
|
definition is_equiv_rect (P : B → Type) (g : Πa, P (f a)) (b : B) : P b :=
|
|
|
|
right_inv f b ▸ g (f⁻¹ b)
|
|
|
|
|
|
|
|
definition is_equiv_rect' (P : A → B → Type) (g : Πb, P (f⁻¹ b) b) (a : A) : P a (f a) :=
|
|
|
|
left_inv f a ▸ g (f a)
|
2014-12-12 04:14:53 +00:00
|
|
|
|
2015-08-04 17:00:12 +00:00
|
|
|
definition is_equiv_rect_comp (P : B → Type)
|
|
|
|
(df : Π (x : A), P (f x)) (x : A) : is_equiv_rect f P df (f x) = df x :=
|
2015-07-29 12:17:16 +00:00
|
|
|
calc
|
2015-08-04 17:00:12 +00:00
|
|
|
is_equiv_rect f P df (f x)
|
2015-07-29 12:17:16 +00:00
|
|
|
= right_inv f (f x) ▸ df (f⁻¹ (f x)) : by esimp
|
|
|
|
... = ap f (left_inv f x) ▸ df (f⁻¹ (f x)) : by rewrite -adj
|
2015-08-06 13:09:49 +00:00
|
|
|
... = left_inv f x ▸ df (f⁻¹ (f x)) : by rewrite -tr_compose
|
2015-07-29 12:17:16 +00:00
|
|
|
... = df x : by rewrite (apd df (left_inv f x))
|
2014-12-12 04:14:53 +00:00
|
|
|
|
2015-08-31 16:23:34 +00:00
|
|
|
theorem adj_inv (b : B) : left_inv f (f⁻¹ b) = ap f⁻¹ (right_inv f b) :=
|
|
|
|
is_equiv_rect f _
|
|
|
|
(λa,
|
|
|
|
eq.cancel_right (whisker_left _ !ap_id⁻¹ ⬝ (ap_con_eq_con_ap (left_inv f) (left_inv f a))⁻¹) ⬝
|
|
|
|
!ap_compose ⬝ ap02 f⁻¹ (adj f a)⁻¹)
|
|
|
|
b
|
|
|
|
|
2014-12-12 04:14:53 +00:00
|
|
|
end
|
|
|
|
|
2015-03-13 22:27:29 +00:00
|
|
|
section
|
|
|
|
variables {A B : Type} {f : A → B} [Hf : is_equiv f] {a : A} {b : B}
|
|
|
|
include Hf
|
|
|
|
|
|
|
|
--Rewrite rules
|
|
|
|
definition eq_of_eq_inv (p : a = f⁻¹ b) : f a = b :=
|
2015-04-27 19:39:36 +00:00
|
|
|
ap f p ⬝ right_inv f b
|
2015-03-13 22:27:29 +00:00
|
|
|
|
|
|
|
definition eq_of_inv_eq (p : f⁻¹ b = a) : b = f a :=
|
|
|
|
(eq_of_eq_inv p⁻¹)⁻¹
|
|
|
|
|
|
|
|
definition inv_eq_of_eq (p : b = f a) : f⁻¹ b = a :=
|
2015-04-27 19:39:36 +00:00
|
|
|
ap f⁻¹ p ⬝ left_inv f a
|
2015-03-13 22:27:29 +00:00
|
|
|
|
|
|
|
definition eq_inv_of_eq (p : f a = b) : a = f⁻¹ b :=
|
|
|
|
(inv_eq_of_eq p⁻¹)⁻¹
|
|
|
|
end
|
|
|
|
|
2014-12-12 04:14:53 +00:00
|
|
|
--Transporting is an equivalence
|
2015-08-31 16:23:34 +00:00
|
|
|
definition is_equiv_tr [instance] [constructor] {A : Type} (P : A → Type) {x y : A}
|
|
|
|
(p : x = y) : (is_equiv (transport P p)) :=
|
2015-08-07 14:44:57 +00:00
|
|
|
is_equiv.mk _ (transport P p⁻¹) (tr_inv_tr p) (inv_tr_tr p) (tr_inv_tr_lemma p)
|
2015-02-21 00:30:32 +00:00
|
|
|
|
2015-08-31 16:23:34 +00:00
|
|
|
section
|
|
|
|
variables {A : Type} {B C : A → Type} (f : Π{a}, B a → C a) [H : Πa, is_equiv (@f a)]
|
|
|
|
{g : A → A} (h : Π{a}, B a → B (g a)) (h' : Π{a}, C a → C (g a))
|
|
|
|
include H
|
|
|
|
definition inv_commute' (p : Π⦃a : A⦄ (b : B a), f (h b) = h' (f b)) {a : A} (c : C a) :
|
|
|
|
f⁻¹ (h' c) = h (f⁻¹ c) :=
|
|
|
|
eq_of_fn_eq_fn' f (right_inv f (h' c) ⬝ ap h' (right_inv f c)⁻¹ ⬝ (p (f⁻¹ c))⁻¹)
|
|
|
|
|
|
|
|
definition fun_commute_of_inv_commute' (p : Π⦃a : A⦄ (c : C a), f⁻¹ (h' c) = h (f⁻¹ c))
|
|
|
|
{a : A} (b : B a) : f (h b) = h' (f b) :=
|
|
|
|
eq_of_fn_eq_fn' f⁻¹ (left_inv f (h b) ⬝ ap h (left_inv f b)⁻¹ ⬝ (p (f b))⁻¹)
|
|
|
|
|
|
|
|
definition ap_inv_commute' (p : Π⦃a : A⦄ (b : B a), f (h b) = h' (f b)) {a : A} (c : C a) :
|
|
|
|
ap f (inv_commute' @f @h @h' p c)
|
|
|
|
= right_inv f (h' c) ⬝ ap h' (right_inv f c)⁻¹ ⬝ (p (f⁻¹ c))⁻¹ :=
|
|
|
|
!ap_eq_of_fn_eq_fn'
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2014-12-12 04:14:53 +00:00
|
|
|
end is_equiv
|
2015-02-21 00:30:32 +00:00
|
|
|
open is_equiv
|
2015-05-07 02:48:11 +00:00
|
|
|
|
|
|
|
namespace eq
|
|
|
|
definition tr_inv_fn {A : Type} {B : A → Type} {a a' : A} (p : a = a') :
|
|
|
|
transport B p⁻¹ = (transport B p)⁻¹ := idp
|
|
|
|
definition tr_inv {A : Type} {B : A → Type} {a a' : A} (p : a = a') (b : B a') :
|
|
|
|
p⁻¹ ▸ b = (transport B p)⁻¹ b := idp
|
|
|
|
|
|
|
|
definition cast_inv_fn {A B : Type} (p : A = B) : cast p⁻¹ = (cast p)⁻¹ := idp
|
2015-08-31 16:23:34 +00:00
|
|
|
definition cast_inv {A B : Type} (p : A = B) (b : B) : cast p⁻¹ b = (cast p)⁻¹ b := idp
|
2015-05-07 02:48:11 +00:00
|
|
|
end eq
|
|
|
|
|
2014-12-12 04:14:53 +00:00
|
|
|
namespace equiv
|
2015-02-26 18:19:54 +00:00
|
|
|
namespace ops
|
|
|
|
attribute to_fun [coercion]
|
|
|
|
end ops
|
|
|
|
open equiv.ops
|
2015-01-26 19:31:12 +00:00
|
|
|
attribute to_is_equiv [instance]
|
2014-12-12 04:14:53 +00:00
|
|
|
|
2015-10-01 19:52:28 +00:00
|
|
|
infix ` ≃ `:25 := equiv
|
2014-12-12 04:14:53 +00:00
|
|
|
|
2015-08-31 16:23:34 +00:00
|
|
|
section
|
2015-02-26 18:19:54 +00:00
|
|
|
variables {A B C : Type}
|
2014-12-12 04:14:53 +00:00
|
|
|
|
2015-05-14 02:01:48 +00:00
|
|
|
protected definition MK [reducible] [constructor] (f : A → B) (g : B → A)
|
2015-07-29 12:17:16 +00:00
|
|
|
(right_inv : Πb, f (g b) = b) (left_inv : Πa, g (f a) = a) : A ≃ B :=
|
2015-04-27 19:39:36 +00:00
|
|
|
equiv.mk f (adjointify f g right_inv left_inv)
|
2015-02-28 06:16:20 +00:00
|
|
|
|
2015-07-07 23:37:06 +00:00
|
|
|
definition to_inv [reducible] [unfold 3] (f : A ≃ B) : B → A := f⁻¹
|
2015-07-29 12:17:16 +00:00
|
|
|
definition to_right_inv [reducible] [unfold 3] (f : A ≃ B) (b : B) : f (f⁻¹ b) = b :=
|
|
|
|
right_inv f b
|
|
|
|
definition to_left_inv [reducible] [unfold 3] (f : A ≃ B) (a : A) : f⁻¹ (f a) = a :=
|
|
|
|
left_inv f a
|
2014-12-12 04:14:53 +00:00
|
|
|
|
2015-05-21 07:24:00 +00:00
|
|
|
protected definition refl [refl] [constructor] : A ≃ A :=
|
2015-02-26 18:19:54 +00:00
|
|
|
equiv.mk id !is_equiv_id
|
2014-12-12 04:14:53 +00:00
|
|
|
|
2015-08-07 14:44:57 +00:00
|
|
|
protected definition symm [symm] (f : A ≃ B) : B ≃ A :=
|
2015-02-28 00:02:18 +00:00
|
|
|
equiv.mk f⁻¹ !is_equiv_inv
|
2014-12-12 04:14:53 +00:00
|
|
|
|
2015-08-07 14:44:57 +00:00
|
|
|
protected definition trans [trans] (f : A ≃ B) (g : B ≃ C) : A ≃ C :=
|
2015-02-26 18:19:54 +00:00
|
|
|
equiv.mk (g ∘ f) !is_equiv_compose
|
2014-12-12 04:14:53 +00:00
|
|
|
|
2015-05-22 08:35:44 +00:00
|
|
|
infixl `⬝e`:75 := equiv.trans
|
2015-10-09 20:21:03 +00:00
|
|
|
postfix [parsing_only] `⁻¹ᵉ`:(max + 1) := equiv.symm
|
2015-05-22 08:35:44 +00:00
|
|
|
-- notation for inverse which is not overloaded
|
|
|
|
abbreviation erfl [constructor] := @equiv.refl
|
|
|
|
|
2015-10-09 20:21:03 +00:00
|
|
|
definition to_inv_trans [reducible] [unfold_full] (f : A ≃ B) (g : B ≃ C)
|
2015-08-07 14:44:57 +00:00
|
|
|
: to_inv (f ⬝e g) = to_fun (g⁻¹ᵉ ⬝e f⁻¹ᵉ) :=
|
|
|
|
idp
|
|
|
|
|
2015-06-17 19:58:58 +00:00
|
|
|
definition equiv_change_fun [constructor] (f : A ≃ B) {f' : A → B} (Heq : f ~ f') : A ≃ B :=
|
2015-08-07 14:44:57 +00:00
|
|
|
equiv.mk f' (is_equiv.homotopy_closed f Heq)
|
2015-06-17 19:58:58 +00:00
|
|
|
|
|
|
|
definition equiv_change_inv [constructor] (f : A ≃ B) {f' : B → A} (Heq : f⁻¹ ~ f')
|
|
|
|
: A ≃ B :=
|
|
|
|
equiv.mk f (inv_homotopy_closed Heq)
|
2014-12-12 04:14:53 +00:00
|
|
|
|
2015-06-04 01:41:21 +00:00
|
|
|
--rename: eq_equiv_fn_eq_of_is_equiv
|
|
|
|
definition eq_equiv_fn_eq [constructor] (f : A → B) [H : is_equiv f] (a b : A) : (a = b) ≃ (f a = f b) :=
|
2015-02-26 18:19:54 +00:00
|
|
|
equiv.mk (ap f) !is_equiv_ap
|
2014-12-12 04:14:53 +00:00
|
|
|
|
2015-06-04 01:41:21 +00:00
|
|
|
--rename: eq_equiv_fn_eq
|
|
|
|
definition eq_equiv_fn_eq_of_equiv [constructor] (f : A ≃ B) (a b : A) : (a = b) ≃ (f a = f b) :=
|
2015-02-26 18:19:54 +00:00
|
|
|
equiv.mk (ap f) !is_equiv_ap
|
|
|
|
|
2015-09-03 04:46:11 +00:00
|
|
|
definition equiv_ap [constructor] (P : A → Type) {a b : A} (p : a = b) : (P a) ≃ (P b) :=
|
2015-02-26 18:19:54 +00:00
|
|
|
equiv.mk (transport P p) !is_equiv_tr
|
2014-12-12 04:14:53 +00:00
|
|
|
|
2015-05-22 08:35:38 +00:00
|
|
|
definition eq_of_fn_eq_fn (f : A ≃ B) {x y : A} (q : f x = f y) : x = y :=
|
|
|
|
(left_inv f x)⁻¹ ⬝ ap f⁻¹ q ⬝ left_inv f y
|
|
|
|
|
|
|
|
definition eq_of_fn_eq_fn_inv (f : A ≃ B) {x y : B} (q : f⁻¹ x = f⁻¹ y) : x = y :=
|
|
|
|
(right_inv f x)⁻¹ ⬝ ap f q ⬝ right_inv f y
|
|
|
|
|
2015-02-21 00:30:32 +00:00
|
|
|
--we need this theorem for the funext_of_ua proof
|
|
|
|
theorem inv_eq {A B : Type} (eqf eqg : A ≃ B) (p : eqf = eqg) : (to_fun eqf)⁻¹ = (to_fun eqg)⁻¹ :=
|
2015-02-26 18:19:54 +00:00
|
|
|
eq.rec_on p idp
|
2014-12-12 04:14:53 +00:00
|
|
|
|
2015-06-23 16:47:52 +00:00
|
|
|
definition equiv_of_equiv_of_eq [trans] {A B C : Type} (p : A = B) (q : B ≃ C) : A ≃ C := p⁻¹ ▸ q
|
|
|
|
definition equiv_of_eq_of_equiv [trans] {A B C : Type} (p : A ≃ B) (q : B = C) : A ≃ C := q ▸ p
|
2015-03-03 21:37:38 +00:00
|
|
|
|
2015-09-03 04:46:11 +00:00
|
|
|
definition equiv_lift [constructor] (A : Type) : A ≃ lift A := equiv.mk up _
|
2015-06-24 21:59:17 +00:00
|
|
|
|
2015-08-31 16:23:34 +00:00
|
|
|
definition equiv_rect (f : A ≃ B) (P : B → Type) (g : Πa, P (f a)) (b : B) : P b :=
|
|
|
|
right_inv f b ▸ g (f⁻¹ b)
|
|
|
|
|
|
|
|
definition equiv_rect' (f : A ≃ B) (P : A → B → Type) (g : Πb, P (f⁻¹ b) b) (a : A) : P a (f a) :=
|
|
|
|
left_inv f a ▸ g (f a)
|
2015-08-04 17:00:12 +00:00
|
|
|
|
|
|
|
definition equiv_rect_comp (f : A ≃ B) (P : B → Type)
|
|
|
|
(df : Π (x : A), P (f x)) (x : A) : equiv_rect f P df (f x) = df x :=
|
|
|
|
calc
|
|
|
|
equiv_rect f P df (f x)
|
|
|
|
= right_inv f (f x) ▸ df (f⁻¹ (f x)) : by esimp
|
|
|
|
... = ap f (left_inv f x) ▸ df (f⁻¹ (f x)) : by rewrite -adj
|
2015-08-06 13:09:49 +00:00
|
|
|
... = left_inv f x ▸ df (f⁻¹ (f x)) : by rewrite -tr_compose
|
2015-08-04 17:00:12 +00:00
|
|
|
... = df x : by rewrite (apd df (left_inv f x))
|
2015-08-31 16:23:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
section
|
|
|
|
variables {A : Type} {B C : A → Type} (f : Π{a}, B a ≃ C a)
|
|
|
|
{g : A → A} (h : Π{a}, B a → B (g a)) (h' : Π{a}, C a → C (g a))
|
|
|
|
|
|
|
|
definition inv_commute (p : Π⦃a : A⦄ (b : B a), f (h b) = h' (f b)) {a : A} (c : C a) :
|
|
|
|
f⁻¹ (h' c) = h (f⁻¹ c) :=
|
|
|
|
inv_commute' @f @h @h' p c
|
|
|
|
|
|
|
|
definition fun_commute_of_inv_commute (p : Π⦃a : A⦄ (c : C a), f⁻¹ (h' c) = h (f⁻¹ c))
|
|
|
|
{a : A} (b : B a) : f (h b) = h' (f b) :=
|
|
|
|
fun_commute_of_inv_commute' @f @h @h' p b
|
|
|
|
end
|
2015-08-04 17:00:12 +00:00
|
|
|
|
|
|
|
|
2015-05-07 02:48:11 +00:00
|
|
|
namespace ops
|
2015-10-01 19:52:28 +00:00
|
|
|
postfix ⁻¹ := equiv.symm -- overloaded notation for inverse
|
2015-05-07 02:48:11 +00:00
|
|
|
end ops
|
2014-12-12 04:14:53 +00:00
|
|
|
end equiv
|
2015-05-22 08:35:38 +00:00
|
|
|
|
2015-08-31 16:23:34 +00:00
|
|
|
open equiv equiv.ops
|
|
|
|
namespace is_equiv
|
|
|
|
|
|
|
|
definition is_equiv_of_equiv_of_homotopy [constructor] {A B : Type} (f : A ≃ B)
|
|
|
|
{f' : A → B} (Hty : f ~ f') : is_equiv f' :=
|
|
|
|
homotopy_closed f Hty
|
|
|
|
|
|
|
|
end is_equiv
|
|
|
|
|
2015-10-09 20:21:03 +00:00
|
|
|
export [unfold_hints] equiv
|
|
|
|
export [unfold_hints] is_equiv
|