2014-08-07 18:36:44 +00:00
|
|
|
|
-- Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
2014-07-02 15:36:05 +00:00
|
|
|
|
-- Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
-- Author: Leonardo de Moura
|
2014-08-01 00:48:51 +00:00
|
|
|
|
|
2014-08-28 01:39:55 +00:00
|
|
|
|
import logic.core.connectives logic.classes.decidable logic.classes.inhabited
|
2014-08-20 22:49:44 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
open eq_ops eq decidable
|
2014-08-20 02:32:44 +00:00
|
|
|
|
|
|
|
|
|
inductive bool : Type :=
|
2014-09-05 05:31:52 +00:00
|
|
|
|
ff : bool,
|
|
|
|
|
tt : bool
|
2014-07-22 16:49:54 +00:00
|
|
|
|
namespace bool
|
2014-09-15 17:31:03 +00:00
|
|
|
|
abbreviation rec_on [protected] {C : bool → Type} (b : bool) (H₁ : C ff) (H₂ : C tt) : C b :=
|
2014-09-05 05:31:52 +00:00
|
|
|
|
rec H₁ H₂ b
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-15 17:31:03 +00:00
|
|
|
|
abbreviation cases_on [protected] {p : bool → Prop} (b : bool) (H₁ : p ff) (H₂ : p tt) : p b :=
|
2014-09-05 05:31:52 +00:00
|
|
|
|
rec H₁ H₂ b
|
2014-07-05 05:22:26 +00:00
|
|
|
|
|
2014-09-15 17:31:03 +00:00
|
|
|
|
abbreviation cond {A : Type} (b : bool) (t e : A) :=
|
2014-09-05 05:31:52 +00:00
|
|
|
|
rec_on b e t
|
2014-07-05 05:22:26 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem dichotomy (b : bool) : b = ff ∨ b = tt :=
|
|
|
|
|
cases_on b (or.inl rfl) (or.inr rfl)
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem cond_ff {A : Type} (t e : A) : cond ff t e = e :=
|
|
|
|
|
rfl
|
2014-07-05 05:22:26 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem cond_tt {A : Type} (t e : A) : cond tt t e = t :=
|
|
|
|
|
rfl
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem ff_ne_tt : ¬ ff = tt :=
|
|
|
|
|
assume H : ff = tt, absurd
|
|
|
|
|
(calc true = cond tt true false : (cond_tt _ _)⁻¹
|
|
|
|
|
... = cond ff true false : {H⁻¹}
|
|
|
|
|
... = false : cond_ff _ _)
|
|
|
|
|
true_ne_false
|
2014-07-05 07:43:10 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
definition bor (a b : bool) :=
|
|
|
|
|
rec_on a (rec_on b ff tt) tt
|
2014-07-27 20:17:55 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem bor_tt_left (a : bool) : bor tt a = tt :=
|
|
|
|
|
rfl
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
infixl `||` := bor
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem bor_tt_right (a : bool) : a || tt = tt :=
|
|
|
|
|
cases_on a rfl rfl
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem bor_ff_left (a : bool) : ff || a = a :=
|
|
|
|
|
cases_on a rfl rfl
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem bor_ff_right (a : bool) : a || ff = a :=
|
|
|
|
|
cases_on a rfl rfl
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem bor_id (a : bool) : a || a = a :=
|
|
|
|
|
cases_on a rfl rfl
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem bor_comm (a b : bool) : a || b = b || a :=
|
|
|
|
|
cases_on a
|
|
|
|
|
(cases_on b rfl rfl)
|
|
|
|
|
(cases_on b rfl rfl)
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem bor_assoc (a b c : bool) : (a || b) || c = a || (b || c) :=
|
|
|
|
|
cases_on a
|
|
|
|
|
(calc (ff || b) || c = b || c : {bor_ff_left b}
|
|
|
|
|
... = ff || (b || c) : bor_ff_left (b || c)⁻¹)
|
|
|
|
|
(calc (tt || b) || c = tt || c : {bor_tt_left b}
|
|
|
|
|
... = tt : bor_tt_left c
|
|
|
|
|
... = tt || (b || c) : bor_tt_left (b || c)⁻¹)
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem bor_to_or {a b : bool} : a || b = tt → a = tt ∨ b = tt :=
|
|
|
|
|
rec_on a
|
|
|
|
|
(assume H : ff || b = tt,
|
|
|
|
|
have Hb : b = tt, from (bor_ff_left b) ▸ H,
|
|
|
|
|
or.inr Hb)
|
|
|
|
|
(assume H, or.inl rfl)
|
2014-07-27 19:50:57 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
definition band (a b : bool) :=
|
|
|
|
|
rec_on a ff (rec_on b ff tt)
|
2014-07-27 20:17:55 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
infixl `&&` := band
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem band_ff_left (a : bool) : ff && a = ff :=
|
|
|
|
|
rfl
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem band_tt_left (a : bool) : tt && a = a :=
|
|
|
|
|
cases_on a rfl rfl
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem band_ff_right (a : bool) : a && ff = ff :=
|
|
|
|
|
cases_on a rfl rfl
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem band_tt_right (a : bool) : a && tt = a :=
|
|
|
|
|
cases_on a rfl rfl
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem band_id (a : bool) : a && a = a :=
|
|
|
|
|
cases_on a rfl rfl
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem band_comm (a b : bool) : a && b = b && a :=
|
|
|
|
|
cases_on a
|
|
|
|
|
(cases_on b rfl rfl)
|
|
|
|
|
(cases_on b rfl rfl)
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem band_assoc (a b c : bool) : (a && b) && c = a && (b && c) :=
|
|
|
|
|
cases_on a
|
|
|
|
|
(calc (ff && b) && c = ff && c : {band_ff_left b}
|
|
|
|
|
... = ff : band_ff_left c
|
|
|
|
|
... = ff && (b && c) : band_ff_left (b && c)⁻¹)
|
|
|
|
|
(calc (tt && b) && c = b && c : {band_tt_left b}
|
|
|
|
|
... = tt && (b && c) : band_tt_left (b && c)⁻¹)
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem band_eq_tt_elim_left {a b : bool} (H : a && b = tt) : a = tt :=
|
|
|
|
|
or.elim (dichotomy a)
|
|
|
|
|
(assume H0 : a = ff,
|
|
|
|
|
absurd
|
|
|
|
|
(calc ff = ff && b : (band_ff_left _)⁻¹
|
|
|
|
|
... = a && b : {H0⁻¹}
|
|
|
|
|
... = tt : H)
|
|
|
|
|
ff_ne_tt)
|
|
|
|
|
(assume H1 : a = tt, H1)
|
2014-07-27 19:50:57 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem band_eq_tt_elim_right {a b : bool} (H : a && b = tt) : b = tt :=
|
|
|
|
|
band_eq_tt_elim_left (band_comm b a ⬝ H)
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
definition bnot (a : bool) :=
|
|
|
|
|
rec_on a tt ff
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
notation `!` x:max := bnot x
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem bnot_bnot (a : bool) : !!a = a :=
|
|
|
|
|
cases_on a rfl rfl
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem bnot_false : !ff = tt :=
|
|
|
|
|
rfl
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem bnot_true : !tt = ff :=
|
|
|
|
|
rfl
|
2014-07-19 19:08:52 +00:00
|
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
|
theorem is_inhabited [protected] [instance] : inhabited bool :=
|
|
|
|
|
inhabited.mk ff
|
2014-08-01 00:48:51 +00:00
|
|
|
|
|
2014-09-08 05:22:04 +00:00
|
|
|
|
theorem has_decidable_eq [protected] [instance] : decidable_eq bool :=
|
2014-09-09 23:07:07 +00:00
|
|
|
|
take a b : bool,
|
2014-09-08 05:22:04 +00:00
|
|
|
|
rec_on a
|
|
|
|
|
(rec_on b (inl rfl) (inr ff_ne_tt))
|
2014-09-09 23:07:07 +00:00
|
|
|
|
(rec_on b (inr (ne.symm ff_ne_tt)) (inl rfl))
|
2014-08-20 02:32:44 +00:00
|
|
|
|
end bool
|