Real Numbers
Euclid's Division Lemma and HCF
What is Euclid’s Division Lemma? Euclid’s Division Lemma states that for any two positive integers a (dividend) and b (divisor), there exist unique integers q (quotient) and r (remainder) such that:
a = b × q + r, where 0 ≤ r < b.
This means: when you divide a by b, you get a quotient and a remainder that is always smaller than the divisor.
Real-life example: If you have 23 candies (a = 23) and want to share equally among 5 friends (b = 5), each friend gets 4 candies (q = 4), and 3 candies are left over (r = 3). Check: 23 = 5 × 4 + 3 ✓
Key properties:
- q is the floor value of a ÷ b (greatest integer less than or equal to a/b)
- r is always a non‑negative number less than b
- For every pair (a, b), q and r are unique — no other pair works
- If r = 0, then b divides a exactly (a is a multiple of b)
┌─────────────────────────────────────────────────────────────┐
│ EUCLID'S DIVISION LEMMA - VISUAL REPRESENTATION │
└─────────────────────────────────────────────────────────────┘
CASE 1: a = 23, b = 5 (r = 3 ≠ 0)
QUOTIENT (q = 4)
│
▼
┌─────────────────────┐
│ a │ = │ b │ × │ q │ + │ r │
└─────────────────────┘
│ │ │ │
▼ ▼ ▼ ▼
23 = 5 × 4 + 3
│ │
└──── 5 × 4 = 20 ────┘
│
└── 20 + 3 = 23 ✓
REMAINDER (r = 3) is less than DIVISOR (b = 5)
CASE 2: a = 20, b = 5 (r = 0)
20 = 5 × 4 + 0
│
└── b divides a exactly
REAL-LIFE APPLICATION:
[23 Pizza Slices] → [5 Tables]
│ │
▼ ▼
┌─────────┐ ┌─────────┐
│ Each │ │ Each │
│ Table │ = │ Table │
│ gets 4 │ │ has 4 │
│ slices │ │ slices │
└─────────┘ └─────────┘
│ │
└────── 3 slices leftover ──┘
(r = 3)- Step 1: Divide 47 by 6 → 6 × 7 = 42, remainder = 5
- Step 2: Write in form a = b × q + r → 47 = 6 × 7 + 5
- Step 3: Check remainder condition: 0 ≤ 5 < 6 ✓
Answer: q = 7, r = 5
- Step 1: Here a = 125 (total notebooks), b = 12 (capacity per box)
- Step 2: 125 ÷ 12 = 10 remainder 5 (since 12 × 10 = 120, 125 − 120 = 5)
- Step 3: 125 = 12 × 10 + 5
Answer: 10 full boxes, 5 notebooks leftover
- Step 1: Use formula a = b × q + r → a = 7 × 8 + 3
- Step 2: Calculate: 7 × 8 = 56, 56 + 3 = 59
- Step 3: Verify: 59 ÷ 7 = 8 remainder 3 (since 7 × 8 = 56, 59 − 56 = 3)
- Step 4: Check if any other (q, r) works? 7 × 7 = 49 gives r = 10 (but 10 ≥ 7, invalid); 7 × 9 = 63 gives r = −4 (invalid)
Answer: a = 59, and q, r are unique
- Euclid’s Division Lemma: a = b × q + r, where 0 ≤ r < b for any positive integers a and b
- q is the quotient (floor of a ÷ b), r is the remainder
- The remainder is always less than the divisor b
- When r = 0, b divides a exactly — this forms the basis of the division algorithm
- q and r are unique for given a and b
- This lemma is the foundation for the Euclidean algorithm (finding HCF)
Fundamental Theorem of Arithmetic
What is the Fundamental Theorem of Arithmetic? Every composite number (greater than 1) can be expressed as a product of prime numbers in exactly one way, except for the order of the primes. This unique factorization is called the prime factorization of the number.
Example: 84 = 2 × 2 × 3 × 7 = \(2^{2} \times 3 \times 7\) (written with exponents)
Real-life analogy: Think of prime numbers as "atoms" or "building blocks". Just as every word is made from a unique set of letters (order doesn't matter), every number is made from a unique set of prime factors.
Key properties:
- Prime numbers (2, 3, 5, 7, 11, …) cannot be broken further — they are the "atoms"
- Composite numbers are made by multiplying primes together
- The order in which you write the primes does NOT matter (2 × 3 × 7 = 3 × 2 × 7)
- This theorem guarantees that prime factorization is unique — no number has two different prime factorizations
┌─────────────────────────────────────────────────────────────┐
│ FUNDAMENTAL THEOREM OF ARITHMETIC - TREE DIAGRAMS │
└─────────────────────────────────────────────────────────────┘
PRIME FACTORIZATION TREE (METHOD 1):
┌─────┐
│ 84 │
└──┬──┘
│
┌────┴────┐
▼ ▼
┌───┐ ┌───┐
│ 2 │ │ 42│
└───┘ └─┬─┘
│
┌────┴────┐
▼ ▼
┌───┐ ┌───┐
│ 2 │ │ 21│
└───┘ └─┬─┘
│
┌────┴────┐
▼ ▼
┌───┐ ┌───┐
│ 3 │ │ 7 │ ← ALL PRIMES
└───┘ └───┘
84 = 2 × 2 × 3 × 7 = 2² × 3 × 7
LIST OF PRIME FACTORS (METHOD 2):
84 ÷ 2 = 42 (2)
42 ÷ 2 = 21 (2)
21 ÷ 3 = 7 (3)
7 ÷ 7 = 1 (7)
Factors: 2, 2, 3, 7
UNIQUENESS DEMONSTRATION:
┌──────────────────────────────────┐
│ 84 = 2 × 2 × 3 × 7 │
│ │ │ │ │ │
│ ANY ORDER is same set: │
│ 7 × 3 × 2 × 2 = 84 │
└──────────────────────────────────┘
No other combination of primes gives 84!- Step 1: Divide by smallest prime (2): 240 ÷ 2 = 120
- Step 2: 120 ÷ 2 = 60
- Step 3: 60 ÷ 2 = 30
- Step 4: 30 ÷ 2 = 15
- Step 5: 15 ÷ 3 = 5
- Step 6: 5 ÷ 5 = 1 (stop when you reach 1)
- Step 7: Write as product: 2 × 2 × 2 × 2 × 3 × 5 = \(2^{4} \times 3 \times 5\)
Answer: 240 = \(2^{4} \times 3 \times 5\)
- Step 1: Prime factor 72: 72 = 8 × 9 = \(2^{3} \times 3^{2}
- Step\) 2: Prime factor 6: 6 = 2 × 3
- Step 3: Multiply: 72 × 6 = (\(2^{3} \times 3^{2}\)) × (2 × 3) = \(2^{4} \times 3^{3}
- Step\) 4: Prime factor 432 directly: 432 ÷ 2 = 216, ÷ 2 = 108, ÷ 2 = 54, ÷ 2 = 27, ÷ 3 = 9, ÷ 3 = 3, ÷ 3 = 1 → \(2^{4} \times 3^{3}
- Step\) 5: Both match → uniqueness confirmed
Answer: 432 = \(2^{4} \times 3^{3}\) (same either way)
- Step 1: Original number N = \(2^{3} \times 3^{2} \times 5^{1}
- Step\) 2: Multiply by 2 × 3 × 5 = \(2^{1} \times 3^{1} \times 5^{1}
- Step\) 3: Add exponents for same prime bases:
- 2: 3 + 1 = 4 → \(2^{4}\)
- 3: 2 + 1 = 3 → \(3^{3}\)
- 5: 1 + 1 = 2 → \(5^{2}
- Step\) 4: New number = \(2^{4} \times 3^{3} \times 5^{2}\)
Answer: \(2^{4} \times 3^{3} \times 5^{2}\)
- Every composite number > 1 has a unique prime factorization (order doesn’t matter)
- Prime numbers are the "building blocks" of all natural numbers > 1
- To find prime factors, repeatedly divide by the smallest prime until you reach 1
- Exponents show how many times a prime is multiplied
- This theorem guarantees no number has two different prime factorizations
- It helps find HCF, LCM, and simplify fractions easily
Irrational Numbers and Decimals
What are irrational numbers? Irrational numbers are real numbers that cannot be expressed as a fraction p/q, where p and q are integers and q ≠ 0. Their decimal expansions are non‑terminating and non‑repeating.
Examples: \(\sqrt{2}\), \(\sqrt{3}\), \(\sqrt{5}\), π, e
What makes a number irrational?
- Its decimal form goes on forever without repeating a pattern
- It cannot be written exactly as a ratio of two integers
- Rational numbers (like 1/2 = 0.5, 2/3 = 0.666… repeating) have terminating or repeating decimals
Proof that \(\sqrt{2}\) is irrational (classic method): Assume \(\sqrt{2}\) = p/q in lowest terms. Squaring: 2 = \(p^{2}\)/\(q^{2}\) → \(p^{2}\) = \(2q^{2}\). So \(p^{2}\) is even → p is even → p = 2k. Then (2k)\(^{2}\) = \(2q^{2}\) → \(4k^{2}\) = \(2q^{2}\) → \(2k^{2}\) = \(q^{2}\) → q is also even. Contradiction (p and q would share factor 2, not in lowest terms). Hence \(\sqrt{2}\) is irrational.
┌─────────────────────────────────────────────────────────────┐
│ IRRATIONAL NUMBERS - VISUAL MAP │
└─────────────────────────────────────────────────────────────┘
REAL NUMBER SYSTEM:
┌─────────────────────────────┐
│ REAL NUMBERS │
└─────────────┬───────────────┘
│
┌───────────────┴───────────────┐
▼ ▼
┌───────────────┐ ┌───────────────┐
│ RATIONAL │ │ IRRATIONAL │
│ NUMBERS │ │ NUMBERS │
└───────┬───────┘ └───────┬───────┘
│ │
┌───────┴────────┐ ┌────────┴────────┐
▼ ▼ ▼ ▼
┌───────┐ ┌──────────┐ ┌──────────┐ ┌─────────┐
│ p/q │ │ Integers │ │ √2, √3 │ │ π, e │
│form │ │ ...-1,0,1│ │ √5, √7 │ │ Golden │
└───────┘ └──────────┘ └──────────┘ │ Ratio φ │
└─────────┘
DECIMAL EXPANSIONS:
RATIONAL (1/3) → 0.333333… (REPEATING)
RATIONAL (1/2) → 0.500000… (TERMINATING)
IRRATIONAL (√2) → 1.414213562… (NON-REPEATING)
IRRATIONAL (π) → 3.141592653… (NON-REPEATING)
PROVING √2 IS IRRATIONAL - PROOF FLOW:
START: Assume √2 = p/q (in simplest form)
│
▼
Square both sides
│
▼
p² = 2q² (p² is even)
│
▼
p is even → p = 2k
│
▼
(2k)² = 2q² → 4k² = 2q²
│
▼
2k² = q² (q² is even)
│
▼
q is even → p and q both even
│
▼
CONTRADICTION (p/q not in lowest terms)
│
▼
∴ √2 is IRRATIONAL- Step 1: Observe the decimal pattern: 0.10 100 1000 10000 …
- Step 2: The pattern never repeats the same block of digits cyclically
- Step 3: Terminating or repeating decimals are rational
- Step 4: This decimal is non‑terminating AND non‑repeating
Answer: It is irrational
- Step 1: Assume 5 + \(\sqrt{3}\) is rational → 5 + \(\sqrt{3}\) = p/q (q ≠ 0, in simplest form)
- Step 2: Then \(\sqrt{3}\) = p/q − 5 = (p − 5q)/q
- Step 3: p and q are integers → (p − 5q) is an integer → (p − 5q)/q is rational
- Step 4: This would mean \(\sqrt{3}\) is rational — but we know \(\sqrt{3}\) is irrational
- Step 5: Contradiction → our assumption is false
Answer: 5 + \(\sqrt{3}\) is irrational
- Step 1: Simplify: (2\(\sqrt{3}\))/(3\(\sqrt{3}\)) = 2/3 (since \(\sqrt{3}\) cancels)
- Step 2: 2/3 is in the form p/q (p = 2, q = 3, q ≠ 0)
- Step 3: This is a terminating decimal (0.666…) = repeating decimal (rational)
Answer: 2/3 is rational (the irrational \(\sqrt{3}\) canceled out)
- Irrational numbers cannot be written as p/q (q ≠ 0)
- Their decimal expansions are non‑terminating and non‑repeating
- \(\sqrt{2}\), \(\sqrt{3}\), \(\sqrt{5}\), π, e are common examples
- Sum/difference of a rational and an irrational is irrational
- Product/quotient of a non‑zero rational and an irrational is irrational
- To prove a number is irrational, use the contradiction method (assume it is rational and derive a contradiction)