You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import Mathlib
variable (A : Type) (hne : Nonempty A) (hexists : (∃ a : A, true))
example : ∃ a : A , true := byobtain ⟨a,ha⟩ := hexists
use a
example : ∃ a : A , true := by
choose a ha using hexists
use a
example : ∃ a : A , true := by--choose a ha using hne failsobtain ⟨a⟩ := hne
use a
Nonempty
with some easy example before the final level of Quantus.Nonempty
withobtain
, as already explained in the documentation ofNonempty
.Classical.arbitrary
from the final level of Quantus (and thus from the whole Game).As an alternative to the first two points, remove
Nonempty
altogether by spelling out the condition as an existence statement.The text was updated successfully, but these errors were encountered: