Real Numbers
The set of real numbers is the union of rational and irrational numbers. This chapter formalises everything you already know about numbers — and proves a few results that you will reuse in every later topic.
1. Euclid's Division Lemma
Statement. Given positive integers and , there exist unique integers and satisfying , where .
In plain English: when you divide by , you always get a quotient and a remainder that is strictly less than the divisor.
Example. Take , . So and .
Euclid's division algorithm (HCF)
To find where :
- Apply the lemma: .
- If , then . Done.
- Otherwise apply the lemma to and , and continue.
The last non-zero remainder is the HCF.
Worked example — HCF(135, 225):
| Step | Division | Remainder |
|---|---|---|
| 1 | 90 | |
| 2 | 45 | |
| 3 | 0 |
So .
2. The Fundamental Theorem of Arithmetic
Every composite number can be expressed as a product of primes, and this factorisation is unique apart from the order of the primes.
This is the result behind every HCF/LCM calculation you'll do.
HCF and LCM via prime factorisation.
For two numbers :
- product of the smallest power of each common prime.
- product of the greatest power of each prime that appears.
Worked example — , .
Sanity check: . ✓
3. Revisiting Irrational Numbers
A number is irrational if it cannot be expressed as for integers and with .
Classic proof: is irrational
Assume for contradiction that in lowest terms. Then , so is even, so is even — write . Substituting: , so is also even. But then both and are divisible by 2, contradicting "lowest terms". Hence is irrational.
The same argument works for where is any prime.
4. Decimal Expansions of Rational Numbers
A rational number (in lowest terms) has a terminating decimal expansion if and only if the prime factorisation of is of the form .
Quick check.
| Fraction | Denominator factored | Terminates? |
|---|---|---|
| 3/8 | Yes | |
| 7/40 | Yes | |
| 11/30 | No (3 in denom) |
Key formulas to memorise
- (for two numbers).
- For three numbers : in general — work via primes.
- , .
Practice (try before checking)
- Find the HCF of 196 and 38220 using Euclid's algorithm.
- Show that is irrational.
- Without long division, decide whether terminates.
- The HCF of two numbers is 27 and their LCM is 162. If one number is 54, find the other.
Answers
- 196 (verify by primes: , , common ).
- Suppose is rational. Then , which would make rational. Contradiction.
- . The form is , so the decimal terminates.
- .
What's next
Once Real Numbers is solid, Polynomials builds on the prime factorisation idea but applies it to algebraic expressions — zeroes, the division algorithm and the relationship between coefficients and roots.
