2014-09-16 14:58:54 -04:00
|
|
|
import logic algebra.relation
|
2014-09-03 16:00:38 -07:00
|
|
|
open relation
|
2014-08-16 13:50:59 -07:00
|
|
|
|
|
|
|
namespace is_equivalence
|
2014-11-28 23:03:37 -08:00
|
|
|
inductive cls {T : Type} (R : T → T → Prop) : Prop :=
|
2014-09-02 15:03:33 -07:00
|
|
|
mk : is_reflexive R → is_symmetric R → is_transitive R → cls R
|
2014-08-16 13:50:59 -07:00
|
|
|
|
|
|
|
end is_equivalence
|
|
|
|
|
|
|
|
theorem and_inhabited_left {a : Prop} (b : Prop) (Ha : a) : a ∧ b ↔ b :=
|
2014-09-04 21:25:21 -07:00
|
|
|
iff.intro (take Hab, and.elim_right Hab) (take Hb, and.intro Ha Hb)
|
2014-08-16 13:50:59 -07:00
|
|
|
|
|
|
|
theorem test (a b c : Prop) (P : Prop → Prop) (H1 : a ↔ b) (H2 : c ∧ a) : c ∧ b :=
|
2014-09-04 21:25:21 -07:00
|
|
|
iff.subst H1 H2
|
2014-08-16 13:50:59 -07:00
|
|
|
|
|
|
|
theorem test2 (Q R S : Prop) (H3 : R ↔ Q) (H1 : S) : Q ↔ (S ∧ Q) :=
|
2014-09-04 21:25:21 -07:00
|
|
|
iff.symm (and_inhabited_left Q H1)
|
2014-08-16 13:50:59 -07:00
|
|
|
|
|
|
|
theorem test3 (Q R S : Prop) (H3 : R ↔ Q) (H1 : S) : R ↔ (S ∧ Q) :=
|
2014-09-04 21:25:21 -07:00
|
|
|
iff.subst (test2 Q R S H3 H1) H3
|
2014-08-16 13:50:59 -07:00
|
|
|
|
|
|
|
theorem test4 (Q R S : Prop) (H3 : R ↔ Q) (H1 : S) : R ↔ (S ∧ Q) :=
|
2014-09-04 21:25:21 -07:00
|
|
|
iff.subst (iff.symm (and_inhabited_left Q H1)) H3
|