PA000C

multiple_mul_right

Stable checked-use theorem · independently closed

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

Generated structural guide

A right multiple of a multiple remains a multiple.

Use the direct prerequisites mul_assoc as previously established PA formulas.

The proof proceeds by case analysis (1), equality transport (1).

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 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