2014-08-01 00:48:51 +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
----------------------------------------------------------------------------------------------------
import logic.connectives.basic logic.classes.decidable logic.classes.inhabited
2014-07-27 20:17:55 +00:00
using eq_proofs decidable
2014-07-19 19:09:47 +00:00
2014-07-22 16:49:54 +00:00
namespace bool
inductive bool : Type :=
2014-07-29 02:58:57 +00:00
| ff : bool
| tt : bool
2014-07-19 19:08:52 +00:00
2014-07-29 02:58:57 +00:00
theorem induction_on {p : bool → Prop} (b : bool) (H0 : p ff) (H1 : p tt) : p b :=
bool_rec H0 H1 b
2014-07-04 21:25:44 +00:00
2014-07-29 02:58:57 +00:00
theorem inhabited_bool [instance] : inhabited bool :=
inhabited_intro ff
2014-07-05 05:22:26 +00:00
2014-07-29 02:58:57 +00:00
definition cond {A : Type} (b : bool) (t e : A) :=
bool_rec e t b
2014-07-05 05:22:26 +00:00
2014-07-29 02:58:57 +00:00
theorem dichotomy (b : bool) : b = ff ∨ b = tt :=
induction_on b (or_inl (refl ff)) (or_inr (refl tt))
2014-07-19 19:08:52 +00:00
2014-07-29 02:58:57 +00:00
theorem cond_ff {A : Type} (t e : A) : cond ff t e = e :=
refl (cond ff t e)
2014-07-05 05:22:26 +00:00
2014-07-29 02:58:57 +00:00
theorem cond_tt {A : Type} (t e : A) : cond tt t e = t :=
refl (cond tt t e)
2014-07-19 19:08:52 +00:00
2014-07-29 02:58:57 +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-07-29 02:58:57 +00:00
theorem decidable_eq [instance] (a b : bool) : decidable (a = b) :=
bool_rec
(bool_rec (inl (refl ff)) (inr ff_ne_tt) b)
(bool_rec (inr (ne_symm ff_ne_tt)) (inl (refl tt)) b)
a
2014-07-27 20:17:55 +00:00
2014-07-29 02:58:57 +00:00
definition bor (a b : bool) :=
bool_rec (bool_rec ff tt b) tt a
2014-07-19 19:08:52 +00:00
2014-07-29 02:58:57 +00:00
theorem bor_tt_left (a : bool) : bor tt a = tt :=
refl (bor tt a)
2014-07-19 19:08:52 +00:00
infixl `||`:65 := bor
2014-07-29 02:58:57 +00:00
theorem bor_tt_right (a : bool) : a || tt = tt :=
induction_on a (refl (ff || tt)) (refl (tt || tt))
2014-07-19 19:08:52 +00:00
2014-07-29 02:58:57 +00:00
theorem bor_ff_left (a : bool) : ff || a = a :=
induction_on a (refl (ff || ff)) (refl (ff || tt))
2014-07-19 19:08:52 +00:00
2014-07-29 02:58:57 +00:00
theorem bor_ff_right (a : bool) : a || ff = a :=
induction_on a (refl (ff || ff)) (refl (tt || ff))
2014-07-19 19:08:52 +00:00
2014-07-29 02:58:57 +00:00
theorem bor_id (a : bool) : a || a = a :=
induction_on a (refl (ff || ff)) (refl (tt || tt))
2014-07-19 19:08:52 +00:00
2014-07-29 02:58:57 +00:00
theorem bor_comm (a b : bool) : a || b = b || a :=
induction_on a
(induction_on b (refl (ff || ff)) (refl (ff || tt)))
(induction_on b (refl (tt || ff)) (refl (tt || tt)))
2014-07-19 19:08:52 +00:00
2014-07-29 02:58:57 +00:00
theorem bor_assoc (a b c : bool) : (a || b) || c = a || (b || c) :=
induction_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-27 19:50:57 +00:00
2014-07-29 02:58:57 +00:00
theorem bor_to_or {a b : bool} : a || b = tt → a = tt ∨ b = tt :=
bool_rec
(assume H : ff || b = tt,
have Hb : b = tt, from (bor_ff_left b) ▸ H,
or_inr Hb)
(assume H, or_inl (refl tt))
a
2014-07-27 20:17:55 +00:00
2014-07-29 02:58:57 +00:00
definition band (a b : bool) :=
bool_rec ff (bool_rec ff tt b) a
2014-07-19 19:08:52 +00:00
infixl `&&`:75 := band
2014-07-29 02:58:57 +00:00
theorem band_ff_left (a : bool) : ff && a = ff :=
refl (ff && a)
2014-07-19 19:08:52 +00:00
2014-07-29 02:58:57 +00:00
theorem band_tt_left (a : bool) : tt && a = a :=
induction_on a (refl (tt && ff)) (refl (tt && tt))
2014-07-19 19:08:52 +00:00
2014-07-29 02:58:57 +00:00
theorem band_ff_right (a : bool) : a && ff = ff :=
induction_on a (refl (ff && ff)) (refl (tt && ff))
2014-07-19 19:08:52 +00:00
2014-07-29 02:58:57 +00:00
theorem band_tt_right (a : bool) : a && tt = a :=
induction_on a (refl (ff && tt)) (refl (tt && tt))
2014-07-19 19:08:52 +00:00
2014-07-29 02:58:57 +00:00
theorem band_id (a : bool) : a && a = a :=
induction_on a (refl (ff && ff)) (refl (tt && tt))
2014-07-19 19:08:52 +00:00
2014-07-29 02:58:57 +00:00
theorem band_comm (a b : bool) : a && b = b && a :=
induction_on a
(induction_on b (refl (ff && ff)) (refl (ff && tt)))
(induction_on b (refl (tt && ff)) (refl (tt && tt)))
2014-07-19 19:08:52 +00:00
2014-07-29 02:58:57 +00:00
theorem band_assoc (a b c : bool) : (a && b) && c = a && (b && c) :=
induction_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-27 19:50:57 +00:00
2014-07-29 02:58:57 +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_elim (a = tt)
(calc ff = ff && b : (band_ff_left _)⁻¹
... = a && b : {H0⁻¹}
... = tt : H)
ff_ne_tt)
(assume H1 : a = tt, H1)
2014-07-19 19:08:52 +00:00
2014-07-29 02:58:57 +00:00
theorem band_eq_tt_elim_right {a b : bool} (H : a && b = tt) : b = tt :=
band_eq_tt_elim_left (trans (band_comm b a) H)
2014-07-19 19:08:52 +00:00
2014-07-29 02:58:57 +00:00
definition bnot (a : bool) := bool_rec tt ff a
2014-07-19 19:08:52 +00:00
prefix `!`:85 := bnot
2014-07-29 02:58:57 +00:00
theorem bnot_bnot (a : bool) : !!a = a :=
induction_on a (refl (!!ff)) (refl (!!tt))
2014-07-19 19:08:52 +00:00
2014-07-29 02:58:57 +00:00
theorem bnot_false : !ff = tt := refl _
2014-07-19 19:08:52 +00:00
2014-07-29 02:58:57 +00:00
theorem bnot_true : !tt = ff := refl _
2014-08-01 00:48:51 +00:00
2014-07-29 02:58:57 +00:00
end