Zulip Chat Archive
Stream: new members
Topic: Natural Number Game
Olonbayar Temuulen (Dec 17 2023 at 09:46):
image.png
What is the best way to solve this, without relying on simp?
Kevin Buzzard (Dec 17 2023 at 11:11):
Is an acceptable reply "you shouldn't be in this state in the first place"? Are you trying to prove by induction instead of just multiplying it out?
Kevin Buzzard (Dec 17 2023 at 11:12):
The Pow.pow
is a bit miserable in the hypotheses, how did that end up there? The user is supposed to never see that.
Jon Eugster (Dec 17 2023 at 12:41):
Kevin Buzzard said:
The
Pow.pow
is a bit miserable in the hypotheses, how did that end up there? The user is supposed to never see that.
That's been a "fix" in the new mathlib version turning a ^ b
into Pow.pow a b
. I pushed a fix for this a couple days ago, but haven't updated the live version yet. I'll do that now.
Olonbayar Temuulen (Dec 17 2023 at 13:07):
Via "being a bit overly adventurous with induction and trying to pin down exactly how add_assoc , add_mul, mul_assoc, mul_comm and to slightly lesser extent add_mul" worked, since the documentation felt a big vague. The notes on the left mention the user to check the targeting function comments of "rw", but i felt that the explanation there was lacking too.
Last updated: Dec 20 2023 at 11:08 UTC