BT0005

mul_succ_left

Stable ยท empty-context checked

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

A successor can move through multiplication on the left.

Direct prerequisites: add_comm, add_assoc. The authored body proceeds by structural induction (1).

Proof neighborhood

Direct dependencies

Direct dependents

Formal native tactic body

Dependencies are hypotheses of this body receipt. The focused endpoint audits separately check the complete empty-context certificates.

  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]