2015-07-06 18:13:24 +00:00
|
|
|
|
/-
|
|
|
|
|
Copyright (c) 2015 Microsoft Corporation. All rights reserved.
|
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
Authors: Leonardo de Moura
|
|
|
|
|
|
|
|
|
|
In the standard library we cannot assume the univalence axiom.
|
|
|
|
|
We say two types are equivalent if they are isomorphic.
|
2015-07-26 20:06:01 +00:00
|
|
|
|
|
|
|
|
|
Two equivalent types have the same cardinality.
|
2015-07-06 18:13:24 +00:00
|
|
|
|
-/
|
|
|
|
|
import data.sum data.nat
|
|
|
|
|
open function
|
|
|
|
|
|
2015-07-06 19:44:51 +00:00
|
|
|
|
structure equiv [class] (A B : Type) :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
(to_fun : A → B)
|
2015-08-27 16:06:02 +00:00
|
|
|
|
(inv_fun : B → A)
|
|
|
|
|
(left_inv : left_inverse inv_fun to_fun)
|
|
|
|
|
(right_inv : right_inverse inv_fun to_fun)
|
2015-07-06 18:13:24 +00:00
|
|
|
|
|
|
|
|
|
namespace equiv
|
2015-08-27 16:06:02 +00:00
|
|
|
|
definition perm [reducible] (A : Type) := equiv A A
|
|
|
|
|
|
2015-09-30 15:06:31 +00:00
|
|
|
|
infix ` ≃ `:50 := equiv
|
2015-07-06 18:13:24 +00:00
|
|
|
|
|
2015-08-27 16:06:02 +00:00
|
|
|
|
definition fn {A B : Type} (e : equiv A B) : A → B :=
|
|
|
|
|
@equiv.to_fun A B e
|
|
|
|
|
|
2015-09-30 15:06:31 +00:00
|
|
|
|
infixr ` ∙ `:100 := fn
|
2015-08-27 16:06:02 +00:00
|
|
|
|
|
|
|
|
|
definition inv {A B : Type} [e : equiv A B] : B → A :=
|
|
|
|
|
@equiv.inv_fun A B e
|
|
|
|
|
|
|
|
|
|
lemma eq_of_to_fun_eq {A B : Type} : ∀ {e₁ e₂ : equiv A B}, fn e₁ = fn e₂ → e₁ = e₂
|
|
|
|
|
| (mk f₁ g₁ l₁ r₁) (mk f₂ g₂ l₂ r₂) h :=
|
|
|
|
|
assert f₁ = f₂, from h,
|
|
|
|
|
assert g₁ = g₂, from funext (λ x,
|
|
|
|
|
assert f₁ (g₁ x) = f₂ (g₂ x), from eq.trans (r₁ x) (eq.symm (r₂ x)),
|
|
|
|
|
have f₁ (g₁ x) = f₁ (g₂ x), by rewrite [-h at this]; exact this,
|
|
|
|
|
show g₁ x = g₂ x, from injective_of_left_inverse l₁ this),
|
|
|
|
|
by congruence; repeat assumption
|
2015-07-06 19:44:51 +00:00
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
protected definition refl [refl] (A : Type) : A ≃ A :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
mk (@id A) (@id A) (λ x, rfl) (λ x, rfl)
|
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
protected definition symm [symm] {A B : Type} : A ≃ B → B ≃ A
|
2015-07-06 18:13:24 +00:00
|
|
|
|
| (mk f g h₁ h₂) := mk g f h₂ h₁
|
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
protected definition trans [trans] {A B C : Type} : A ≃ B → B ≃ C → A ≃ C
|
2015-07-06 18:13:24 +00:00
|
|
|
|
| (mk f₁ g₁ l₁ r₁) (mk f₂ g₂ l₂ r₂) :=
|
|
|
|
|
mk (f₂ ∘ f₁) (g₁ ∘ g₂)
|
2015-07-29 23:11:23 +00:00
|
|
|
|
(show ∀ x, g₁ (g₂ (f₂ (f₁ x))) = x, by intros; rewrite [l₂, l₁]; reflexivity)
|
|
|
|
|
(show ∀ x, f₂ (f₁ (g₁ (g₂ x))) = x, by intros; rewrite [r₁, r₂]; reflexivity)
|
2015-07-06 18:13:24 +00:00
|
|
|
|
|
2015-08-27 16:06:02 +00:00
|
|
|
|
abbreviation id {A : Type} := equiv.refl A
|
|
|
|
|
|
|
|
|
|
namespace ops
|
2015-09-30 15:06:31 +00:00
|
|
|
|
postfix ⁻¹ := equiv.symm
|
|
|
|
|
postfix ⁻¹ := equiv.inv
|
|
|
|
|
notation e₁ ∘ e₂ := equiv.trans e₂ e₁
|
2015-08-27 16:06:02 +00:00
|
|
|
|
end ops
|
|
|
|
|
open equiv.ops
|
|
|
|
|
|
|
|
|
|
lemma id_apply {A : Type} (x : A) : id ∙ x = x :=
|
|
|
|
|
rfl
|
|
|
|
|
|
|
|
|
|
lemma compose_apply {A B C : Type} (g : B ≃ C) (f : A ≃ B) (x : A) : (g ∘ f) ∙ x = g ∙ f ∙ x :=
|
|
|
|
|
begin cases g, cases f, esimp end
|
|
|
|
|
|
|
|
|
|
lemma inverse_apply_apply {A B : Type} : ∀ (e : A ≃ B) (x : A), e⁻¹ ∙ e ∙ x = x
|
|
|
|
|
| (mk f₁ g₁ l₁ r₁) x := begin unfold [equiv.symm, fn], rewrite l₁ end
|
|
|
|
|
|
|
|
|
|
lemma eq_iff_eq_of_injective {A B : Type} {f : A → B} (inj : injective f) (a b : A) : f a = f b ↔ a = b :=
|
|
|
|
|
iff.intro
|
|
|
|
|
(suppose f a = f b, inj this)
|
|
|
|
|
(suppose a = b, by rewrite this)
|
|
|
|
|
|
|
|
|
|
lemma apply_eq_iff_eq {A B : Type} : ∀ (f : A ≃ B) (x y : A), f ∙ x = f ∙ y ↔ x = y
|
|
|
|
|
| (mk f₁ g₁ l₁ r₁) x y := eq_iff_eq_of_injective (injective_of_left_inverse l₁) x y
|
|
|
|
|
|
|
|
|
|
lemma apply_eq_iff_eq_inverse_apply {A B : Type} : ∀ (f : A ≃ B) (x : A) (y : B), f ∙ x = y ↔ x = f⁻¹ ∙ y
|
|
|
|
|
| (mk f₁ g₁ l₁ r₁) x y :=
|
|
|
|
|
begin
|
|
|
|
|
esimp, unfold [equiv.symm, fn], apply iff.intro,
|
|
|
|
|
suppose f₁ x = y, by subst y; rewrite l₁,
|
|
|
|
|
suppose x = g₁ y, by subst x; rewrite r₁
|
|
|
|
|
end
|
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition false_equiv_empty : empty ≃ false :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
mk (λ e, empty.rec _ e) (λ h, false.rec _ h) (λ e, empty.rec _ e) (λ h, false.rec _ h)
|
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition arrow_congr [congr] {A₁ B₁ A₂ B₂ : Type} : A₁ ≃ A₂ → B₁ ≃ B₂ → (A₁ → B₁) ≃ (A₂ → B₂)
|
2015-07-06 18:13:24 +00:00
|
|
|
|
| (mk f₁ g₁ l₁ r₁) (mk f₂ g₂ l₂ r₂) :=
|
|
|
|
|
mk
|
|
|
|
|
(λ (h : A₁ → B₁) (a : A₂), f₂ (h (g₁ a)))
|
|
|
|
|
(λ (h : A₂ → B₂) (a : A₁), g₂ (h (f₁ a)))
|
2015-07-29 23:11:23 +00:00
|
|
|
|
(λ h, funext (λ a, by rewrite [l₁, l₂]; reflexivity))
|
|
|
|
|
(λ h, funext (λ a, by rewrite [r₁, r₂]; reflexivity))
|
2015-07-06 18:13:24 +00:00
|
|
|
|
|
|
|
|
|
section
|
|
|
|
|
open unit
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition arrow_unit_equiv_unit [simp] (A : Type) : (A → unit) ≃ unit :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
mk (λ f, star) (λ u, (λ f, star))
|
|
|
|
|
(λ f, funext (λ x, by cases (f x); reflexivity))
|
|
|
|
|
(λ u, by cases u; reflexivity)
|
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition unit_arrow_equiv [simp] (A : Type) : (unit → A) ≃ A :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
mk (λ f, f star) (λ a, (λ u, a))
|
|
|
|
|
(λ f, funext (λ x, by cases x; reflexivity))
|
|
|
|
|
(λ u, rfl)
|
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition empty_arrow_equiv_unit [simp] (A : Type) : (empty → A) ≃ unit :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
mk (λ f, star) (λ u, λ e, empty.rec _ e)
|
|
|
|
|
(λ f, funext (λ x, empty.rec _ x))
|
|
|
|
|
(λ u, by cases u; reflexivity)
|
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition false_arrow_equiv_unit [simp] (A : Type) : (false → A) ≃ unit :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
calc (false → A) ≃ (empty → A) : arrow_congr false_equiv_empty !equiv.refl
|
|
|
|
|
... ≃ unit : empty_arrow_equiv_unit
|
|
|
|
|
end
|
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition prod_congr [congr] {A₁ B₁ A₂ B₂ : Type} : A₁ ≃ A₂ → B₁ ≃ B₂ → (A₁ × B₁) ≃ (A₂ × B₂)
|
2015-07-06 18:13:24 +00:00
|
|
|
|
| (mk f₁ g₁ l₁ r₁) (mk f₂ g₂ l₂ r₂) :=
|
|
|
|
|
mk
|
|
|
|
|
(λ p, match p with (a₁, b₁) := (f₁ a₁, f₂ b₁) end)
|
|
|
|
|
(λ p, match p with (a₂, b₂) := (g₁ a₂, g₂ b₂) end)
|
2015-07-29 23:11:23 +00:00
|
|
|
|
(λ p, begin cases p, esimp, rewrite [l₁, l₂], reflexivity end)
|
|
|
|
|
(λ p, begin cases p, esimp, rewrite [r₁, r₂], reflexivity end)
|
2015-07-06 18:13:24 +00:00
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition prod_comm [simp] (A B : Type) : (A × B) ≃ (B × A) :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
mk (λ p, match p with (a, b) := (b, a) end)
|
|
|
|
|
(λ p, match p with (b, a) := (a, b) end)
|
|
|
|
|
(λ p, begin cases p, esimp end)
|
|
|
|
|
(λ p, begin cases p, esimp end)
|
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition prod_assoc [simp] (A B C : Type) : ((A × B) × C) ≃ (A × (B × C)) :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
mk (λ t, match t with ((a, b), c) := (a, (b, c)) end)
|
|
|
|
|
(λ t, match t with (a, (b, c)) := ((a, b), c) end)
|
|
|
|
|
(λ t, begin cases t with ab c, cases ab, esimp end)
|
|
|
|
|
(λ t, begin cases t with a bc, cases bc, esimp end)
|
|
|
|
|
|
|
|
|
|
section
|
|
|
|
|
open unit prod.ops
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition prod_unit_right [simp] (A : Type) : (A × unit) ≃ A :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
mk (λ p, p.1)
|
|
|
|
|
(λ a, (a, star))
|
|
|
|
|
(λ p, begin cases p with a u, cases u, esimp end)
|
|
|
|
|
(λ a, rfl)
|
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition prod_unit_left [simp] (A : Type) : (unit × A) ≃ A :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
calc (unit × A) ≃ (A × unit) : prod_comm
|
|
|
|
|
... ≃ A : prod_unit_right
|
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition prod_empty_right [simp] (A : Type) : (A × empty) ≃ empty :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
mk (λ p, empty.rec _ p.2) (λ e, empty.rec _ e) (λ p, empty.rec _ p.2) (λ e, empty.rec _ e)
|
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition prod_empty_left [simp] (A : Type) : (empty × A) ≃ empty :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
calc (empty × A) ≃ (A × empty) : prod_comm
|
|
|
|
|
... ≃ empty : prod_empty_right
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
section
|
|
|
|
|
open sum
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition sum_congr [congr] {A₁ B₁ A₂ B₂ : Type} : A₁ ≃ A₂ → B₁ ≃ B₂ → (A₁ + B₁) ≃ (A₂ + B₂)
|
2015-07-06 18:13:24 +00:00
|
|
|
|
| (mk f₁ g₁ l₁ r₁) (mk f₂ g₂ l₂ r₂) :=
|
|
|
|
|
mk
|
|
|
|
|
(λ s, match s with inl a₁ := inl (f₁ a₁) | inr b₁ := inr (f₂ b₁) end)
|
|
|
|
|
(λ s, match s with inl a₂ := inl (g₁ a₂) | inr b₂ := inr (g₂ b₂) end)
|
2015-07-29 23:11:23 +00:00
|
|
|
|
(λ s, begin cases s, {esimp, rewrite l₁, reflexivity}, {esimp, rewrite l₂, reflexivity} end)
|
|
|
|
|
(λ s, begin cases s, {esimp, rewrite r₁, reflexivity}, {esimp, rewrite r₂, reflexivity} end)
|
2015-07-06 18:13:24 +00:00
|
|
|
|
|
|
|
|
|
open bool unit
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition bool_equiv_unit_sum_unit : bool ≃ (unit + unit) :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
mk (λ b, match b with tt := inl star | ff := inr star end)
|
|
|
|
|
(λ s, match s with inl star := tt | inr star := ff end)
|
|
|
|
|
(λ b, begin cases b, esimp, esimp end)
|
|
|
|
|
(λ s, begin cases s with u u, {cases u, esimp}, {cases u, esimp} end)
|
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition sum_comm [simp] (A B : Type) : (A + B) ≃ (B + A) :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
mk (λ s, match s with inl a := inr a | inr b := inl b end)
|
|
|
|
|
(λ s, match s with inl b := inr b | inr a := inl a end)
|
|
|
|
|
(λ s, begin cases s, esimp, esimp end)
|
|
|
|
|
(λ s, begin cases s, esimp, esimp end)
|
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition sum_assoc [simp] (A B C : Type) : ((A + B) + C) ≃ (A + (B + C)) :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
mk (λ s, match s with inl (inl a) := inl a | inl (inr b) := inr (inl b) | inr c := inr (inr c) end)
|
|
|
|
|
(λ s, match s with inl a := inl (inl a) | inr (inl b) := inl (inr b) | inr (inr c) := inr c end)
|
|
|
|
|
(λ s, begin cases s with ab c, cases ab, repeat esimp end)
|
|
|
|
|
(λ s, begin cases s with a bc, esimp, cases bc, repeat esimp end)
|
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition sum_empty_right [simp] (A : Type) : (A + empty) ≃ A :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
mk (λ s, match s with inl a := a | inr e := empty.rec _ e end)
|
|
|
|
|
(λ a, inl a)
|
|
|
|
|
(λ s, begin cases s with a e, esimp, exact empty.rec _ e end)
|
|
|
|
|
(λ a, rfl)
|
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition sum_empty_left [simp] (A : Type) : (empty + A) ≃ A :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
calc (empty + A) ≃ (A + empty) : sum_comm
|
|
|
|
|
... ≃ A : sum_empty_right
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
section
|
|
|
|
|
open prod.ops
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition arrow_prod_equiv_prod_arrow (A B C : Type) : (C → A × B) ≃ ((C → A) × (C → B)) :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
mk (λ f, (λ c, (f c).1, λ c, (f c).2))
|
|
|
|
|
(λ p, λ c, (p.1 c, p.2 c))
|
|
|
|
|
(λ f, funext (λ c, begin esimp, cases f c, esimp end))
|
|
|
|
|
(λ p, begin cases p, esimp end)
|
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition arrow_arrow_equiv_prod_arrow (A B C : Type) : (A → B → C) ≃ (A × B → C) :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
mk (λ f, λ p, f p.1 p.2)
|
|
|
|
|
(λ f, λ a b, f (a, b))
|
|
|
|
|
(λ f, rfl)
|
|
|
|
|
(λ f, funext (λ p, begin cases p, esimp end))
|
|
|
|
|
|
|
|
|
|
open sum
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition sum_arrow_equiv_prod_arrow (A B C : Type) : ((A + B) → C) ≃ ((A → C) × (B → C)) :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
mk (λ f, (λ a, f (inl a), λ b, f (inr b)))
|
|
|
|
|
(λ p, (λ s, match s with inl a := p.1 a | inr b := p.2 b end))
|
|
|
|
|
(λ f, funext (λ s, begin cases s, esimp, esimp end))
|
|
|
|
|
(λ p, begin cases p, esimp end)
|
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition sum_prod_distrib (A B C : Type) : ((A + B) × C) ≃ ((A × C) + (B × C)) :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
mk (λ p, match p with (inl a, c) := inl (a, c) | (inr b, c) := inr (b, c) end)
|
|
|
|
|
(λ s, match s with inl (a, c) := (inl a, c) | inr (b, c) := (inr b, c) end)
|
|
|
|
|
(λ p, begin cases p with ab c, cases ab, repeat esimp end)
|
|
|
|
|
(λ s, begin cases s with ac bc, cases ac, esimp, cases bc, esimp end)
|
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition prod_sum_distrib (A B C : Type) : (A × (B + C)) ≃ ((A × B) + (A × C)) :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
calc (A × (B + C)) ≃ ((B + C) × A) : prod_comm
|
|
|
|
|
... ≃ ((B × A) + (C × A)) : sum_prod_distrib
|
|
|
|
|
... ≃ ((A × B) + (A × C)) : sum_congr !prod_comm !prod_comm
|
2015-07-26 20:06:01 +00:00
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition bool_prod_equiv_sum (A : Type) : (bool × A) ≃ (A + A) :=
|
2015-07-26 20:06:01 +00:00
|
|
|
|
calc (bool × A) ≃ ((unit + unit) × A) : prod_congr bool_equiv_unit_sum_unit !equiv.refl
|
|
|
|
|
... ≃ (A × (unit + unit)) : prod_comm
|
|
|
|
|
... ≃ ((A × unit) + (A × unit)) : prod_sum_distrib
|
|
|
|
|
... ≃ (A + A) : sum_congr !prod_unit_right !prod_unit_right
|
2015-07-06 18:13:24 +00:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
section
|
|
|
|
|
open sum nat unit prod.ops
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition nat_equiv_nat_sum_unit : nat ≃ (nat + unit) :=
|
2015-07-26 20:06:01 +00:00
|
|
|
|
mk (λ n, match n with zero := inr star | succ a := inl a end)
|
2015-07-06 18:13:24 +00:00
|
|
|
|
(λ s, match s with inl n := succ n | inr star := zero end)
|
|
|
|
|
(λ n, begin cases n, repeat esimp end)
|
|
|
|
|
(λ s, begin cases s with a u, esimp, {cases u, esimp} end)
|
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition nat_sum_unit_equiv_nat [simp] : (nat + unit) ≃ nat :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
equiv.symm nat_equiv_nat_sum_unit
|
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition nat_prod_nat_equiv_nat [simp] : (nat × nat) ≃ nat :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
mk (λ p, mkpair p.1 p.2)
|
|
|
|
|
(λ n, unpair n)
|
|
|
|
|
(λ p, begin cases p, apply unpair_mkpair end)
|
|
|
|
|
(λ n, mkpair_unpair n)
|
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition nat_sum_bool_equiv_nat [simp] : (nat + bool) ≃ nat :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
calc (nat + bool) ≃ (nat + (unit + unit)) : sum_congr !equiv.refl bool_equiv_unit_sum_unit
|
|
|
|
|
... ≃ ((nat + unit) + unit) : sum_assoc
|
|
|
|
|
... ≃ (nat + unit) : sum_congr nat_sum_unit_equiv_nat !equiv.refl
|
|
|
|
|
... ≃ nat : nat_sum_unit_equiv_nat
|
|
|
|
|
|
|
|
|
|
open decidable
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition nat_sum_nat_equiv_nat [simp] : (nat + nat) ≃ nat :=
|
2015-07-06 18:13:24 +00:00
|
|
|
|
mk (λ s, match s with inl n := 2*n | inr n := 2*n+1 end)
|
2015-10-29 19:36:26 +00:00
|
|
|
|
(λ n, if even n then inl (n / 2) else inr ((n - 1) / 2))
|
2015-07-06 18:13:24 +00:00
|
|
|
|
(λ s, begin
|
2015-07-26 20:06:01 +00:00
|
|
|
|
have two_gt_0 : 2 > zero, from dec_trivial,
|
2015-07-06 18:13:24 +00:00
|
|
|
|
cases s,
|
2015-10-23 14:06:20 +00:00
|
|
|
|
{esimp, rewrite [if_pos (even_two_mul _), nat.mul_div_cancel_left _ two_gt_0]},
|
2015-10-29 19:36:26 +00:00
|
|
|
|
{esimp, rewrite [if_neg (not_even_two_mul_plus_one _), nat.add_sub_cancel,
|
2015-10-23 14:06:20 +00:00
|
|
|
|
nat.mul_div_cancel_left _ two_gt_0]}
|
2015-07-06 18:13:24 +00:00
|
|
|
|
end)
|
|
|
|
|
(λ n, by_cases
|
2015-10-29 19:36:26 +00:00
|
|
|
|
(λ h : even n,
|
2015-10-23 14:06:20 +00:00
|
|
|
|
by rewrite [if_pos h]; esimp; rewrite [nat.mul_div_cancel' (dvd_of_even h)])
|
2015-07-06 18:13:24 +00:00
|
|
|
|
(λ h : ¬ even n,
|
|
|
|
|
begin
|
|
|
|
|
rewrite [if_neg h], esimp,
|
|
|
|
|
cases n,
|
|
|
|
|
{exact absurd even_zero h},
|
2015-10-23 14:06:20 +00:00
|
|
|
|
{rewrite [-(add_one a), nat.add_sub_cancel,
|
|
|
|
|
nat.mul_div_cancel' (dvd_of_even (even_of_odd_succ (odd_of_not_even h)))]}
|
2015-07-06 18:13:24 +00:00
|
|
|
|
end))
|
2015-07-26 20:06:01 +00:00
|
|
|
|
|
2015-07-29 23:11:23 +00:00
|
|
|
|
definition prod_equiv_of_equiv_nat {A : Type} : A ≃ nat → (A × A) ≃ A :=
|
2015-07-26 20:06:01 +00:00
|
|
|
|
take e, calc
|
|
|
|
|
(A × A) ≃ (nat × nat) : prod_congr e e
|
|
|
|
|
... ≃ nat : nat_prod_nat_equiv_nat
|
|
|
|
|
... ≃ A : equiv.symm e
|
2015-07-06 18:13:24 +00:00
|
|
|
|
end
|
2015-07-06 19:17:57 +00:00
|
|
|
|
|
|
|
|
|
section
|
|
|
|
|
open decidable
|
|
|
|
|
definition decidable_eq_of_equiv {A B : Type} [h : decidable_eq A] : A ≃ B → decidable_eq B
|
|
|
|
|
| (mk f g l r) :=
|
|
|
|
|
take b₁ b₂, match h (g b₁) (g b₂) with
|
|
|
|
|
| inl he := inl (assert aux : f (g b₁) = f (g b₂), from congr_arg f he,
|
|
|
|
|
begin rewrite *r at aux, exact aux end)
|
|
|
|
|
| inr hn := inr (λ b₁eqb₂, by subst b₁eqb₂; exact absurd rfl hn)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
definition inhabited_of_equiv {A B : Type} [h : inhabited A] : A ≃ B → inhabited B
|
|
|
|
|
| (mk f g l r) := inhabited.mk (f (inhabited.value h))
|
2015-07-06 19:44:51 +00:00
|
|
|
|
|
|
|
|
|
section
|
|
|
|
|
open subtype
|
2015-08-27 16:06:02 +00:00
|
|
|
|
definition subtype_equiv_of_subtype {A B : Type} {p : A → Prop} : A ≃ B → {a : A | p a} ≃ {b : B | p b⁻¹}
|
2015-07-06 19:44:51 +00:00
|
|
|
|
| (mk f g l r) :=
|
|
|
|
|
mk (λ s, match s with tag v h := tag (f v) (eq.rec_on (eq.symm (l v)) h) end)
|
|
|
|
|
(λ s, match s with tag v h := tag (g v) (eq.rec_on (eq.symm (r v)) h) end)
|
|
|
|
|
(λ s, begin cases s, esimp, congruence, rewrite l, reflexivity end)
|
|
|
|
|
(λ s, begin cases s, esimp, congruence, rewrite r, reflexivity end)
|
|
|
|
|
end
|
2015-08-27 16:06:02 +00:00
|
|
|
|
|
|
|
|
|
section swap
|
|
|
|
|
variable {A : Type}
|
|
|
|
|
variable [h : decidable_eq A]
|
|
|
|
|
include h
|
|
|
|
|
open decidable
|
|
|
|
|
|
|
|
|
|
definition swap_core (a b r : A) : A :=
|
|
|
|
|
if r = a then b
|
|
|
|
|
else if r = b then a
|
|
|
|
|
else r
|
|
|
|
|
|
|
|
|
|
lemma swap_core_swap_core (r a b : A) : swap_core a b (swap_core a b r) = r :=
|
|
|
|
|
by_cases
|
|
|
|
|
(suppose r = a, by_cases
|
|
|
|
|
(suppose r = b, begin unfold swap_core, rewrite [if_pos `r = a`, if_pos (eq.refl b), -`r = a`, -`r = b`, if_pos (eq.refl r)] end)
|
|
|
|
|
(suppose ¬ r = b,
|
|
|
|
|
assert b ≠ a, from assume h, begin rewrite h at this, contradiction end,
|
|
|
|
|
begin unfold swap_core, rewrite [*if_pos `r = a`, if_pos (eq.refl b), if_neg `b ≠ a`, `r = a`] end))
|
|
|
|
|
(suppose ¬ r = a, by_cases
|
|
|
|
|
(suppose r = b, begin unfold swap_core, rewrite [if_neg `¬ r = a`, *if_pos `r = b`, if_pos (eq.refl a), this] end)
|
|
|
|
|
(suppose ¬ r = b, begin unfold swap_core, rewrite [*if_neg `¬ r = a`, *if_neg `¬ r = b`, if_neg `¬ r = a`] end))
|
|
|
|
|
|
|
|
|
|
lemma swap_core_self (r a : A) : swap_core a a r = r :=
|
|
|
|
|
by_cases
|
|
|
|
|
(suppose r = a, begin unfold swap_core, rewrite [*if_pos this, this] end)
|
|
|
|
|
(suppose r ≠ a, begin unfold swap_core, rewrite [*if_neg this] end)
|
|
|
|
|
|
|
|
|
|
lemma swap_core_comm (r a b : A) : swap_core a b r = swap_core b a r :=
|
|
|
|
|
by_cases
|
|
|
|
|
(suppose r = a, by_cases
|
|
|
|
|
(suppose r = b, begin unfold swap_core, rewrite [if_pos `r = a`, if_pos `r = b`, -`r = a`, -`r = b`] end)
|
|
|
|
|
(suppose ¬ r = b, begin unfold swap_core, rewrite [*if_pos `r = a`, if_neg `¬ r = b`] end))
|
|
|
|
|
(suppose ¬ r = a, by_cases
|
|
|
|
|
(suppose r = b, begin unfold swap_core, rewrite [if_neg `¬ r = a`, *if_pos `r = b`] end)
|
|
|
|
|
(suppose ¬ r = b, begin unfold swap_core, rewrite [*if_neg `¬ r = a`, *if_neg `¬ r = b`] end))
|
|
|
|
|
|
|
|
|
|
definition swap (a b : A) : perm A :=
|
|
|
|
|
mk (swap_core a b)
|
|
|
|
|
(swap_core a b)
|
|
|
|
|
(λ x, abstract by rewrite swap_core_swap_core end)
|
|
|
|
|
(λ x, abstract by rewrite swap_core_swap_core end)
|
|
|
|
|
|
|
|
|
|
lemma swap_self (a : A) : swap a a = id :=
|
|
|
|
|
eq_of_to_fun_eq (funext (λ x, begin unfold [swap, fn], rewrite swap_core_self end))
|
|
|
|
|
|
|
|
|
|
lemma swap_comm (a b : A) : swap a b = swap b a :=
|
|
|
|
|
eq_of_to_fun_eq (funext (λ x, begin unfold [swap, fn], rewrite swap_core_comm end))
|
|
|
|
|
|
|
|
|
|
lemma swap_apply_def (a b : A) (x : A) : swap a b ∙ x = if x = a then b else if x = b then a else x :=
|
|
|
|
|
rfl
|
|
|
|
|
|
|
|
|
|
lemma swap_apply_left (a b : A) : swap a b ∙ a = b :=
|
|
|
|
|
if_pos rfl
|
|
|
|
|
|
|
|
|
|
lemma swap_apply_right (a b : A) : swap a b ∙ b = a :=
|
|
|
|
|
by_cases
|
|
|
|
|
(suppose b = a, by rewrite [swap_apply_def, this, *if_pos rfl])
|
|
|
|
|
(suppose b ≠ a, by rewrite [swap_apply_def, if_pos rfl, if_neg this])
|
|
|
|
|
|
|
|
|
|
lemma swap_apply_of_ne_of_ne {a b : A} {x : A} : x ≠ a → x ≠ b → swap a b ∙ x = x :=
|
|
|
|
|
assume h₁ h₂, by rewrite [swap_apply_def, if_neg h₁, if_neg h₂]
|
|
|
|
|
|
|
|
|
|
lemma swap_swap (a b : A) : swap a b ∘ swap a b = id :=
|
|
|
|
|
eq_of_to_fun_eq (funext (λ x, begin unfold [swap, fn, equiv.trans, equiv.refl], rewrite swap_core_swap_core end))
|
|
|
|
|
|
|
|
|
|
lemma swap_compose_apply (a b : A) (π : perm A) (x : A) : (swap a b ∘ π) ∙ x = if π ∙ x = a then b else if π ∙ x = b then a else π ∙ x :=
|
|
|
|
|
begin cases π, reflexivity end
|
|
|
|
|
|
|
|
|
|
end swap
|
2015-07-06 18:13:24 +00:00
|
|
|
|
end equiv
|