BT0007

mul_add

Stable ยท empty-context checked

Multiplication distributes over addition on the right.

Exact expanded PA statement

forall n m k. n * (m + k) = n * m + n * k

Structural proof guide

Multiplication distributes over addition on the right.

Direct prerequisites: 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. 0002intro m
  3. 0003induction k
  4. 0004simp
  5. 0005simp [IH, add_assoc]