PA006V

distinct_primes_left_not_divide_right

Alpha v16 checked-use theorem · independently closed; not Stable

A prime cannot divide a distinct prime.

Exact expanded PA statement

forall p q. ((~(p = 1) /\ forall frm_prime_left_dpn_prime_p frm_prime_right_dpn_prime_p. p = frm_prime_left_dpn_prime_p * frm_prime_right_dpn_prime_p -> frm_prime_left_dpn_prime_p = 1 \/ frm_prime_right_dpn_prime_p = 1)) -> ((~(q = 1) /\ forall frm_prime_left_dpn_prime_q frm_prime_right_dpn_prime_q. q = frm_prime_left_dpn_prime_q * frm_prime_right_dpn_prime_q -> frm_prime_left_dpn_prime_q = 1 \/ frm_prime_right_dpn_prime_q = 1)) -> ~(p = q) -> (~(exists frm_factor_dpn_p_not_q. q = p * frm_factor_dpn_p_not_q))

Structural proof guide

Generated structural guide

A prime cannot divide a distinct prime.

Use the direct prerequisites prime_divisor_eq_one_or_self as previously established PA formulas.

The proof proceeds by case analysis (2), intermediate claims (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 Alpha-v16 checked-use theorem is independently kernel-checked when replayed; it is not a Stable theorem.

  1. 0001intro p
  2. 0002intro q
  3. 0003intro hp
  4. 0004intro hq
  5. 0005intro hpq
  6. 0006intro hdiv
  7. 0007have hfactor : p = 1 \/ q = p
  8. 0008specialize prime_divisor_eq_one_or_self q
  9. 0009specialize prime_divisor_eq_one_or_self p
  10. 0010apply prime_divisor_eq_one_or_self
  11. 0011exact hq
  12. 0012exact hdiv
  13. 0013cases hfactor
  14. 0014cases hp
  15. 0015apply hp_left
  16. 0016exact hfactor_left
  17. 0017apply hpq
  18. 0018symm
  19. 0019exact hfactor_right