PA000G

mul_succ_left

Stable checked-use theorem · independently closed

A successor can move through multiplication on the left.

Exact expanded PA statement

forall n m. S n * m = n * m + m

Structural proof guide

Generated structural guide

A successor can move through multiplication on the left.

Use the direct prerequisites add_comm, add_assoc as previously established PA formulas.

The proof proceeds by structural induction (1), certified simplification (2).

Referenced ingredients

Proof neighborhood

Direct dependencies

Direct dependents

Formal native tactic body

Dependencies are introduced as named hypotheses before line 1. Linked names are exact direct references. This Stable checked-use theorem is independently kernel-checked when replayed.

  1. 0001intro n
  2. 0002induction m
  3. 0003simp
  4. 0004specialize add_comm n
  5. 0005specialize add_comm m
  6. 0006simp [IH, add_comm, add_assoc]