Zulip Chat Archive

Stream: new members

Topic: Question regarding the natural numbers game


metakuntyyy (Jun 02 2024 at 22:06):

Objects:
**ab**: 

Goal:

a * a + (b * b + (a * b + a * b)) = a * a + (b * b + 2 * a * b)

Why can't i use the tactic add_left_cancel here?

metakuntyyy (Jun 02 2024 at 22:07):

I have tried for 20 minutes with rw and apply nothing worked

Richard Osborn (Jun 02 2024 at 23:25):

First, see #backticks. Also, add_left_cancel takes a proof of a + b = a + c and generates b = c. You want the theorem which takes b = c and proves a + b = a + c. Remember that the goal is not something you can give to theorems. It is something that needs to be proven true. What other theorems do you have available to you?


Last updated: May 02 2025 at 03:31 UTC