BT002A

multiple_mul_right

Stable ยท empty-context checked

A right multiple of a multiple remains a multiple.

Exact expanded PA statement

forall a n m. (exists q. n = a * q) -> exists s. n * m = a * s

Structural proof guide

A right multiple of a multiple remains a multiple.

Direct prerequisites: mul_assoc. The authored body proceeds by case analysis (1), equality transport (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 a
  2. 0002intro n
  3. 0003intro m
  4. 0004intro hn
  5. 0005cases hn
  6. 0006exists x * m
  7. 0007rewrite hn_witness
  8. 0008apply mul_assoc