2014-08-25 02:58:48 +00:00
|
|
|
import logic
|
2014-09-04 23:36:06 +00:00
|
|
|
|
2014-10-02 23:20:52 +00:00
|
|
|
constant p : num → num → num → Prop
|
2014-07-11 03:08:51 +00:00
|
|
|
axiom H1 : ∃ x y z, p x y z
|
|
|
|
axiom H2 : ∀ {x y z : num}, p x y z → p x x x
|
|
|
|
theorem tst : ∃ x, p x x x
|
2014-12-16 03:05:03 +00:00
|
|
|
:= obtain a b c H, from H1, exists.intro a (H2 H)
|