BT001L

mul_le_mul_left

Stable ยท empty-context checked

Left multiplication preserves the witness-defined order.

Exact expanded PA statement

forall a b c. (exists k. k + a = b) -> exists r. r + c * a = c * b

Structural proof guide

Left multiplication preserves the witness-defined order.

Direct prerequisites: mul_add. The authored body proceeds by case analysis (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 b
  3. 0003intro c
  4. 0004intro h
  5. 0005cases h
  6. 0006exists c * x
  7. 0007trans c * (x + a)
  8. 0008symm
  9. 0009apply mul_add
  10. 0010congr
  11. 0011refl
  12. 0012exact h_witness