-
-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nth_rewriteの記載追加 #1
Comments
そうですね.conv モードで代替することもできますが,「すべて置き換える」挙動を制御するタクティクは必要ですね. ありがとうございます. rw のページに派生タクティクとして紹介するのが良さそうに思います. 挙げてくださったコード例も簡潔で良いと思います.ただ依存関係がわからないので,minimal working example にして,適宜コメントもつけてもらえますか? |
具体的には,こんな感じでどうでしょうか import Mathlib.Algebra.Group.Basic
import Mathlib.Tactic.NthRewrite
-- `G` は群
variable [Group G]
example (a b : G) : a * b⁻¹ = 1 ↔ a = b := by
-- `one_mul: 1 * b = b` を使って `b` を `1 * b` に書き換える
-- `b` は2回出現するが,2番目だけ置き換える
nth_rewrite 2 [← one_mul b]
-- `mul_inv_eq_iff_eq_mul: a * b⁻¹ = c ↔ a = c * b` を使う
exact mul_inv_eq_iff_eq_mul |
せっかくなので PR を出していただきたいです.
|
Merged
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
rw
は書き換え可能な箇所をすべて書き換えるタクティックですが、これに対して式中で書き換え可能な箇所のうちn
番目のみ書き換えるnth_rewrite
というタクティックがあります。https://leanprover-community.github.io/mathlib_docs/tactic/nth_rewrite/default.html
例えば以下のように用いることができます。
https://github.com/s-taiga/lean-math-workshop-my-solution/blob/d58278dc98ac95129c3ce7d7627dec70110dc2f4/Tutorial/Advanced/Algebra/Lecture1.lean#L262
個人的には先日の勉強会時にはかなりお世話になったタクティックだったので、言及があると良いのではないかと思います。
The text was updated successfully, but these errors were encountered: