Zulip Chat Archive
Stream: new members
Topic: represent uniqueness
Esteban Estupinan (Jun 15 2023 at 16:05):
Hi all. Please your help. The following proposition needs to be entered in lean order to prove it. Specifically, there is a confusion in representing "one and only one". thanks for your help.
imagen.png
example (m n : ℤ) : ∃ x, m + x = n ∧ ∀ ???? = x :=
David Renshaw (Jun 15 2023 at 16:10):
example (m n : ℤ) : ∃! x, m + x = n := sorry
David Renshaw (Jun 15 2023 at 16:11):
Eric Wieser (Jun 15 2023 at 16:17):
Or m + x = n ↔ x = n - m
which not only says there is a unique solution, but says what it is!
Last updated: Dec 20 2023 at 11:08 UTC