Prime Number

Context: FIT1058_MOC Β· the multiplicative β€œatoms” of Β· defined via proper divisors Β· every integer is a product of primes (proved by strong induction)

Quick Revision

  • 🎯 Objective: an integer with no proper divisors βž” the multiplicative atoms of .
  • πŸ“¦ Core Components: proper divisor βž” prime vs composite βž” existence of prime factorisation.
  • ⚑ Key Constraint: existence (strong induction) is separate from uniqueness (Fundamental Theorem).

πŸ“ Core

1. The Definition

  • Proper divisor βž” a divisor neither 1 nor .
  • Prime βž” integer with no proper divisors (); else composite.
  • Atoms βž” indivisible; every positive integer assembles from them.

2. Existence Theorem

  • Claim βž” every integer is a product of primes.
  • Strong induction βž” composite with ; both factor by hypothesis.
  • Why strong βž” can be far below , so all smaller needed.

3. Uniqueness Is Separate

  • Existence βž” this theorem.
  • Uniqueness βž” Fundamental Theorem of Arithmetic (stronger, later).
  • excluded βž” admitting it wrecks unique factorisation.

βš–οΈ Core Decision Matrix

ConceptAboutTest difficulty
primalityone number, no proper divisorharder
Coprimalitytwo numbers, easy (Euclid)
factorisationproduct of primeshardest
from primality

When It Flips: primality is a property of one number; coprimality a relation between two. Testing coprimality is easy; testing primality is harder and factorising harder still β€” the gap cryptography depends on.

πŸ“Š Exam Execution Trace

Manual Execution Trace

Factoring 84:

Step / Statesmallest prime
0 (Init)84242
142221
22137
3771

⚠️ Common Mistakes

  • πŸ’‘ Existence β‰  uniqueness βž” this proves a factorisation exists; that it is unique is the Fundamental Theorem, proved separately.

🧠 Active Recall