Welcome to Whizmath's Comprehensive Number Theory Lesson! Number theory is the branch of mathematics devoted to the study of integers and their properties. Often called the "Queen of Mathematics," it combines beautiful theoretical concepts with powerful practical applications in cryptography and computer science.
From prime numbers to modular arithmetic, this guide will take you through the fascinating world of integers and their patterns.
By the end of this lesson, you will:
A prime number is a natural number greater than 1 with no positive divisors other than 1 and itself.
Every integer greater than 1 can be represented uniquely as a product of prime powers.
n = p₁a₁ × p₂a₂ × ... × pₖaₖ
Factorize 84 into its prime factors:
84 = 2 × 42 = 2 × 2 × 21 = 2 × 2 × 3 × 7 = 2² × 3¹ × 7¹
Divisibility: We say a|b (a divides b) if b = ka for some integer k.
The largest integer that divides two numbers. For 24 and 36:
GCD(24,36) = 12
The smallest positive integer divisible by both numbers. For 6 and 8:
LCM(6,8) = 24
An efficient method for finding GCD:
We say a ≡ b (mod m) if m divides (a - b).
Calculate 17 × 23 mod 5:
17 ≡ 2 mod 5 and 23 ≡ 3 mod 5
17 × 23 ≡ 2 × 3 ≡ 6 ≡ 1 mod 5
If p is prime and a is not divisible by p:
ap-1 ≡ 1 (mod p)
For coprime a and n:
aφ(n) ≡ 1 (mod n)
where φ(n) is Euler's totient function (count of numbers ≤ n coprime to n)
Polynomial equations where we seek integer solutions.
Equations of form ax + by = c have solutions iff GCD(a,b) divides c.
General solution if (x₀,y₀) is one solution:
x = x₀ + (b/d)t, y = y₀ - (a/d)t where d = GCD(a,b)
Find all integer solutions to 6x + 9y = 21:
GCD(6,9)=3 divides 21, so solutions exist.
Particular solution: x=2, y=1
General solution: x=2+3t, y=1-2t for any integer t
Number theory reveals the hidden patterns and structures within the integers, with applications ranging from pure mathematics to modern cryptography. By mastering these concepts, you'll develop a deeper appreciation for the beauty and utility of numbers.
Continue your number theory journey with Whizmath! 👑