2014-12-12 04:14:53 +00:00
|
|
|
|
/-
|
|
|
|
|
Copyright (c) 2014 Floris van Doorn. All rights reserved.
|
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
Author: Floris van Doorn
|
|
|
|
|
Ported from Coq HoTT
|
|
|
|
|
|
|
|
|
|
Theorems about products
|
|
|
|
|
-/
|
|
|
|
|
|
2015-02-21 00:30:32 +00:00
|
|
|
|
open eq equiv is_equiv is_trunc prod
|
2014-12-12 04:14:53 +00:00
|
|
|
|
|
|
|
|
|
variables {A A' B B' C D : Type}
|
|
|
|
|
{a a' a'' : A} {b b₁ b₂ b' b'' : B} {u v w : A × B}
|
|
|
|
|
|
|
|
|
|
namespace prod
|
|
|
|
|
|
|
|
|
|
-- prod.eta is already used for the eta rule for strict equality
|
2015-02-21 00:30:32 +00:00
|
|
|
|
protected definition eta (u : A × B) : (pr₁ u , pr₂ u) = u :=
|
2014-12-12 04:14:53 +00:00
|
|
|
|
destruct u (λu1 u2, idp)
|
|
|
|
|
|
2015-02-21 00:30:32 +00:00
|
|
|
|
definition pair_eq (pa : a = a') (pb : b = b') : (a , b) = (a' , b') :=
|
2014-12-12 18:17:50 +00:00
|
|
|
|
eq.rec_on pa (eq.rec_on pb idp)
|
2014-12-12 04:14:53 +00:00
|
|
|
|
|
2015-02-21 00:30:32 +00:00
|
|
|
|
definition prod_eq : (pr₁ u = pr₁ v) → (pr₂ u = pr₂ v) → u = v :=
|
2014-12-12 04:14:53 +00:00
|
|
|
|
begin
|
|
|
|
|
apply (prod.rec_on u), intros (a₁, b₁),
|
|
|
|
|
apply (prod.rec_on v), intros (a₂, b₂, H₁, H₂),
|
2015-02-21 00:30:32 +00:00
|
|
|
|
apply (transport _ (eta (a₁, b₁))),
|
|
|
|
|
apply (transport _ (eta (a₂, b₂))),
|
|
|
|
|
apply (pair_eq H₁ H₂),
|
2014-12-12 04:14:53 +00:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
/- Symmetry -/
|
|
|
|
|
|
2015-02-21 00:30:32 +00:00
|
|
|
|
definition is_equiv_flip [instance] (A B : Type) : is_equiv (@flip A B) :=
|
2014-12-12 04:14:53 +00:00
|
|
|
|
adjointify flip
|
|
|
|
|
flip
|
|
|
|
|
(λu, destruct u (λb a, idp))
|
|
|
|
|
(λu, destruct u (λa b, idp))
|
|
|
|
|
|
2015-02-21 00:30:32 +00:00
|
|
|
|
definition prod_comm_equiv (A B : Type) : A × B ≃ B × A :=
|
2014-12-12 04:14:53 +00:00
|
|
|
|
equiv.mk flip _
|
|
|
|
|
|
2015-02-21 00:30:32 +00:00
|
|
|
|
-- is_trunc_prod is defined in sigma
|
2014-12-12 04:14:53 +00:00
|
|
|
|
|
|
|
|
|
end prod
|