Zulip Chat Archive

Stream: new members

Topic: simple proof


Rohan Joshi (Jun 25 2024 at 02:21):

Hi, I was just getting through the Natural Number Game and I had proven the following a + n = b + n → a = b, and I ended up at a = b → a = b. Is there any way to show that the above statement is true? I tried rfl, symm, everything but it doesnt work

Damiano Testa (Jun 25 2024 at 03:57):

Does exact id work?

Kyle Miller (Jun 25 2024 at 04:15):

You can also do intro h followed by exact h or assumption

Kyle Miller (Jun 25 2024 at 04:15):

(exact id should work, but it's not the sort of thing that NNG teaches)

Kevin Buzzard (Jun 25 2024 at 05:43):

I always use exact id when speedrunning but it was a conscious choice not to tell the user about this option

Rohan Joshi (Jun 25 2024 at 06:08):

Thanks for the suggestion!
Originally, I decided to use induction n with c hc, so we can solve the intermediate goal. However (after I solved the first goal), when I'm solving goal 2, it keeps repeating the same assumption and desired goal. How should I proceed from here? I tried using exact h, but it showed up as an error . I tried using simp:
Screenshot-2024-06-25-at-1.07.16PM.png

Ruben Van de Velde (Jun 25 2024 at 06:39):

Probably rw [hc] at the top of your screenshot does not do what you expect

Ruben Van de Velde (Jun 25 2024 at 06:40):

I think you want apply hc at that point instead


Last updated: May 02 2025 at 03:31 UTC