Skip to content

Commit

Permalink
feat(set_theory/game/pgame): sub_self_equiv (#14272)
Browse files Browse the repository at this point in the history
  • Loading branch information
vihdzp committed May 20, 2022
1 parent a6b90be commit d217e1d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/set_theory/game/pgame.lean
Expand Up @@ -1183,6 +1183,9 @@ theorem zero_le_add_right_neg (x : pgame) : 0 ≤ x + -x :=
theorem add_right_neg_equiv (x : pgame) : x + -x ≈ 0 :=
⟨add_right_neg_le_zero x, zero_le_add_right_neg x⟩

theorem sub_self_equiv : ∀ x, x - x ≈ 0 :=
add_right_neg_equiv

private lemma add_le_add_right' : ∀ {x y z : pgame} (h : x ≤ y), x + z ≤ y + z
| (mk xl xr xL xR) (mk yl yr yL yR) (mk zl zr zL zR) :=
λ h, begin
Expand Down

0 comments on commit d217e1d

Please sign in to comment.