Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix one Lean misformalisation #217

Merged
merged 1 commit into from
Sep 25, 2024
Merged

Commits on Sep 24, 2024

  1. Fix 2017 A1 (again)

    The hypotheses were contradictory without the missing positivity guard
    as the following succeeds without the change included here:
    ```
      exfalso
      have : IsQualifying S := hS.1
      rw [IsQualifying_def] at this
      obtain ⟨h₁, h₂, h₃, h₄⟩ := this
      have : -7 ∈ S := h₃ (-7) (h₄ 2 h₂)
      replace this : 0 < -7 := h₁ _ this
      linarith
    ```
    
    This was previously "fixed" in c4512ca
    but unfortunately an error remained.
    ocfnash committed Sep 24, 2024
    Configuration menu
    Copy the full SHA
    a3d5752 View commit details
    Browse the repository at this point in the history