BT0006

mul_comm

Stable ยท empty-context checked

Multiplication is commutative.

Exact expanded PA statement

forall n m. n * m = m * n

Structural proof guide

Multiplication is commutative.

Direct prerequisites: mul_zero_left, mul_succ_left. 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 [mul_zero_left]
  4. 0004simp [IH, mul_succ_left]