17 lines
252 B
Text
17 lines
252 B
Text
exit
|
||
open nat
|
||
variables (P : ℕ → Prop)
|
||
|
||
example (H1 : ∃n, P n) : ∃n, P n :=
|
||
begin
|
||
cases H1 with n p,
|
||
apply (exists.intro n),
|
||
assumption
|
||
end
|
||
|
||
example (H1 : ∃n, P n) : ∃n, P n :=
|
||
begin
|
||
cases H1 with n p,
|
||
existsi n,
|
||
assumption
|
||
end
|