Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lengyijun committed Oct 13, 2024
1 parent 0a77813 commit 1db5cf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GoldbachTm/Tm31/Prime.lean
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ induction rb with intros i lb l r g p
| zero => use 0
simp! [g]
| succ rb => apply step_12_n_dvd at g
by_cases (lb + 2 ∣ rb + 3) <;> rename_i h
by_cases h : (lb + 2 ∣ rb + 3)
. have g : (lb + 2 ∣ lb + 2) := Nat.dvd_refl _
have g := Nat.dvd_add g h
ring_nf at p g
Expand Down Expand Up @@ -366,7 +366,7 @@ nth_cfg i = some ⟨⟨12, by omega⟩, ⟨Γ.zero,
Turing.ListBlank.mk (List.replicate (lb+rb+4) Γ.one ++ List.cons Γ.zero r)⟩⟩
:= by
induction rb with intros i lb l r g hd
| zero => by_cases (lb+2) ∣ 2 <;> rename_i h
| zero => by_cases h : (lb+2) ∣ 2
. apply step_12_dvd at g
apply g h
. obtain ⟨divisor, _, _, h₃⟩ := hd
Expand Down

0 comments on commit 1db5cf2

Please sign in to comment.