[Introduction to Number Theory Series Part 9] How Does Prime Factorization Reveal the Structure of Integers?

한국어 버전

If primes are the building blocks of integers, then prime factorization is the process that reveals how those blocks are assembled.

What this post covers

  • What prime factorization is
  • Several concrete examples
  • Why uniqueness matters
  • How this prepares us to compute divisor counts, gcds, and lcms structurally

Key terms

What is prime factorization?

Prime factorization means breaking an integer greater than 1 all the way down until only primes remain.

For example,

12=2×6=2×2×3=22×312 = 2\times 6 = 2\times 2\times 3 = 2^2\times 3

and

18=2×9=2×3×3=2×32.18 = 2\times 9 = 2\times 3\times 3 = 2\times 3^2.

Reading structure through examples

24

24=23×324=2^3\times 3

45

45=32×545=3^2\times 5

84

84=22×3×784=2^2\times 3\times 7

These forms show which primes appear and how many times they appear. That exponent pattern is exactly the structural information we will use in later computations.

Why is uniqueness important?

It is not enough to say that factorization exists. The essential point is that the prime factorization is unique up to order.

So while

22×32^2\times 3

and

3×2×23\times 2\times 2

look different, they represent the same prime structure.

The fundamental theorem of arithmetic

The formal statement is:

  1. Every integer greater than 1 can be written as a product of primes.
  2. This expression is unique up to the order of the factors.

That is the fundamental theorem of arithmetic.

A preview of gcd and lcm through exponents

Write

12=22×3,18=2×32.12=2^2\times 3, \qquad 18=2\times 3^2.

The gcd takes the smaller exponents:

gcd(12,18)=21×31=6.\gcd(12,18)=2^1\times 3^1=6.

The lcm takes the larger exponents.

Common mistakes

1. Stopping too early

12=2×6 is not a prime factorization yet, because 6 is not prime.

2. Including 1 as a prime factor

1 is not prime, so it does not belong in a prime factorization.

3. Thinking different orders mean different factorizations

Order does not matter for the essential structure.

Wrap-up

Prime factorization turns an integer into a readable prime-exponent structure. The next post uses that structure in practical computation: divisor counts, gcds, and lcms.

💬 댓글

이 글에 대한 의견을 남겨주세요