chore: fix invalid proof
This commit is contained in:
parent
0611eb84cc
commit
04b93fc725
1 changed files with 2 additions and 1 deletions
|
|
@ -315,7 +315,8 @@ theorem Iff.comm : (a ↔ b) ↔ (b ↔ a) :=
|
|||
|
||||
theorem Exists.elim {α : Sort u} {p : α → Prop} {b : Prop}
|
||||
(h₁ : Exists (fun x => p x)) (h₂ : ∀ (a : α), p a → b) : b :=
|
||||
h₂ h₁.1 h₁.2
|
||||
match h₁ with
|
||||
| intro a h => h₂ a h
|
||||
|
||||
/- Decidable -/
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue