2015-12-06 03:43:48 +00:00
|
|
|
constants {A : Type.{1}} (P : A → Prop) (Q : A → Prop)
|
2016-01-01 04:20:39 +00:00
|
|
|
definition H [forward] : ∀ a, (: P a :) → Exists Q := sorry
|
2015-12-06 03:43:48 +00:00
|
|
|
|
2015-12-07 20:23:01 +00:00
|
|
|
set_option blast.strategy "ematch"
|
2015-12-06 03:43:48 +00:00
|
|
|
|
|
|
|
example (a : A) : P a → Exists Q :=
|
|
|
|
by blast
|