c53233ea26
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
7 lines
219 B
Text
7 lines
219 B
Text
Variable N : Type
|
|
Variables a b c : N
|
|
Variables P : N -> N -> N -> Bool
|
|
|
|
Theorem T1 (f : N -> N) (H : P (f a) b (f (f c))) : exists x y z, P x y z := ExistsIntro _ (ExistsIntro _ (ExistsIntro _ H))
|
|
|
|
Show Environment 1.
|