lean2/tests/lean/run/blast_simp1.lean

17 lines
416 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

example (a b c : Prop) : a ∧ b ∧ c ↔ c ∧ b ∧ a :=
by blast
example (a b c : Prop) : a ∧ false ∧ c ↔ false :=
by blast
example (a b c : Prop) : a false b ↔ b a :=
by blast
example (a b c : Prop) : ¬ true false b ↔ b :=
by blast
example (a b c : Prop) : if true then a else b ↔ if false then b else a :=
by blast
example (a b : Prop) : a ∧ not a ↔ false :=
by blast