Sec 2 · Arithmetic & Number Sense · Deep Study

Understanding
Numbers

This guide explains the why behind every rule — not just what to memorise, but how to think about numbers. Work through each section in order, try every checkpoint question, then reveal the answer to check yourself.

🔢 5 sections 🔍 Worked examples with steps ✅ Checkpoint questions 💡 Intuition-first explanations
1
Types of Numbers
Why mathematicians organise numbers into families

You've been counting since you were very young — 1, 2, 3… These are the natural numbers. But over time, mathematicians needed more. They needed zero, then negatives, then fractions, then something to describe √2. Each new type of number was invented to solve a problem that the previous set couldn't.

💭
Why do we need negative numbers?
Imagine you have $5 in your bank account and spend $8. You owe $3. Natural numbers can't express "owing" — you need numbers below zero. Temperature below freezing, floors below ground level, or debt are all real situations that require integers.
💭
Why do we need fractions?
You can't evenly share 7 apples among 3 people using whole numbers. You need 7/3. Any measurement that falls between whole numbers — half a litre, three-quarter turns — requires rational numbers.

The number families

NameSymbolContainsExamples
Natural numbersCounting numbers from 1 upward1, 2, 3, 100
IntegersAll whole numbers (positive, negative, zero)−5, 0, 3, −100
Rational numbersAny number of the form p/q where q ≠ 01/2, −3, 0.75, 2.333…
Irrational numbersCannot be written as a fraction — decimals go on forever without repeating√2, π, √5
🔑
The nesting rule: Every natural number is also an integer. Every integer is also rational (e.g. 5 = 5/1). The sets nest inside each other: ℕ ⊂ ℤ ⊂ ℚ. Irrational numbers sit outside ℚ — they can't be expressed as any fraction.

Absolute value

The absolute value of a number is its distance from zero on the number line. Distance is always positive (or zero).

Absolute value
|a| = distance from 0   (always ≥ 0)
|7| = 7    |−7| = 7    |0| = 0
★ Easy
Classifying numbers
Classify each number: −4, 7/2, √9, π, 0, √3
Show solution
1
Check each one
−4 → integer (and rational: −4/1)
7/2 = 3.5 → rational (not integer)
√9 = 3 → natural number (also integer, also rational)
π = 3.14159… → irrational
0 → integer (also rational: 0/1)
√3 = 1.732… (non-repeating, non-terminating) → irrational
Note: √9 = 3 is a perfect square — always simplify before classifying!
✅ Checkpoint 1
a) Is every integer a rational number? Explain why.
b) Give one example of a number that is rational but NOT an integer.
c) Which is greater: |−8| or |5|? Why?

a) Yes. Every integer n can be written as n/1, which fits the definition of a rational number (p/q with q ≠ 0).

b) Any example works: 1/2, 0.75, −3/4, etc. — any fraction that doesn't simplify to a whole number.

c) |−8| = 8 and |5| = 5. So |−8| > |5|. Even though −8 < 5, its distance from zero is larger.

2
Order of Operations
Why BEDMAS exists and how to apply it without errors

If everyone calculated 3 + 4 × 2 in their own order, they'd get different answers. One person gets 14 (adding first), another gets 11 (multiplying first). Mathematics needs one agreed-upon convention — that's BEDMAS.

💭
Why multiplication before addition?
Think of 3 + 4 × 2 as "3 plus four pairs of 2." The multiplication groups things together — it's a stronger bond. You assemble the groups first, then combine them. This interpretation is why multiplication (and division) take priority over addition and subtraction.
BEDMAS order
B → E → D&M → A&S
Brackets · Exponents · Division & Multiplication (left→right) · Addition & Subtraction (left→right)
⚠️
D&M and A&S have equal priority. When you reach that level, work strictly left to right.
12 ÷ 4 × 3: do 12 ÷ 4 = 3 first, then 3 × 3 = 9. NOT 12 ÷ 12 = 1.
★ Easy
Straightforward BEDMAS
Evaluate: 5 + 3 × 4 − 2²
Show solution
1
Exponents first
2² = 4    →    5 + 3 × 4 − 4
2
Multiplication
3 × 4 = 12    →    5 + 12 − 4
3
Addition and subtraction (left to right)
5 + 12 = 17    →    17 − 4 = 13
Answer: 13
★★ Medium
Nested brackets
Evaluate: 4 × (3 + (10 − 6)²) ÷ 2
Show solution
1
Inner bracket first
10 − 6 = 4    →    4 × (3 + 4²) ÷ 2
2
Exponent inside the remaining bracket
4² = 16    →    4 × (3 + 16) ÷ 2
3
Finish the bracket
3 + 16 = 19    →    4 × 19 ÷ 2
4
Multiplication and division left to right
4 × 19 = 76    →    76 ÷ 2 = 38
Answer: 38
🧠
Watch out for −3² vs (−3)²
−3² means −(3²) = −9. The exponent only applies to 3, not to the negative sign.
(−3)² means (−3) × (−3) = +9. The bracket makes the negative part of the base.
✅ Checkpoint 2
Evaluate each expression:
a) 20 − 4 × 3 + 1
b) (6 + 2)² ÷ 4 − 3
c) −2² + (−2)²

a) 20 − 4 × 3 + 1
= 20 − 12 + 1 (multiply first)
= 8 + 1 = 9

b) (6 + 2)² ÷ 4 − 3
= 8² ÷ 4 − 3 = 64 ÷ 4 − 3 = 16 − 3 = 13

c) −2² + (−2)² = −4 + 4 = 0
(−2² = −(4) = −4; but (−2)² = +4)

3
Fractions
Why the rules work — not just how to apply them

Fraction rules feel arbitrary until you understand why they work. Let's build from scratch.

💭
Why do you need a common denominator to add fractions?
1/4 + 1/3: you're adding "one quarter" and "one third." They're different-sized pieces. Before you can count them together, you need to cut everything into the same size. Converting to twelfths (LCD = 12) gives you 3/12 + 4/12 = 7/12 — now the pieces are the same size and you can just add the numerators.
💭
Why do you flip when dividing by a fraction?
"How many halves fit in 3?" is the same as 3 ÷ 1/2. Think of it physically: 3 metres ÷ half-metre lengths = 6 lengths. So 3 ÷ 1/2 = 6 = 3 × 2. Dividing by 1/2 is the same as multiplying by 2 (the reciprocal). That's why Keep · Change · Flip works — it converts division into multiplication.
Add / Subtract
Find LCD, then add numerators
Multiply
(a/b) × (c/d) = ac/bd
Divide (KCF)
(a/b) ÷ (c/d) = (a/b) × (d/c)
★ Easy
Adding fractions with different denominators
Calculate: 2/3 + 3/4
Show solution
1
Find the LCD of 3 and 4
LCD = 12
2
Convert both fractions
2/3 = 8/12    (× 4/4)
3/4 = 9/12    (× 3/3)
3
Add the numerators
8/12 + 9/12 = 17/12 = 1 5/12
Answer: 17/12 = 1 5/12
★★ Medium
Division of fractions
Calculate: 5/6 ÷ 5/8
Show solution
1
Keep · Change · Flip
5/6 ÷ 5/8 = 5/6 × 8/5
2
Simplify before multiplying (cross-cancel)
5/6 × 8/5 → cancel the 5s: 1/6 × 8/1 → cancel 2 from 8 and 6: 1/3 × 4/1
3
Multiply
1/3 × 4/1 = 4/3 = 1 1/3
Answer: 4/3 = 1 1/3
✅ Checkpoint 3
a) 3/5 − 1/4    b) 2/3 × 9/10    c) 1 1/2 ÷ 3/4
(Hint for c: convert the mixed number to an improper fraction first.)

a) LCD = 20: 12/20 − 5/20 = 7/20

b) 2/3 × 9/10 = 18/30 = 3/5  (cancel: 2×9 / 3×10 → 1×3 / 1×5)

c) 1 1/2 = 3/2   →   3/2 ÷ 3/4 = 3/2 × 4/3 = 12/6 = 2

4
Decimals & Percentages
The three core problems and how to think about them

Every percentage problem is one of three types. Once you can identify which type you're looking at, the rest is mechanical.

🔑
Percent literally means "per hundred." 35% = 35 per 100 = 35/100 = 0.35. Converting between percent and decimal is just moving the decimal point two places (÷100 to get decimal, ×100 to get percent).
Find the part
part = (%) ÷ 100 × whole
Find the percent
% = (part ÷ whole) × 100
Find the whole
whole = part ÷ (% ÷ 100)
★ Easy
Finding the part
A store offers 15% off a jacket that costs $80. How much is the discount?
Show solution
1
Identify: find the part (discount amount)
part = (15 ÷ 100) × 80 = 0.15 × 80
2
Calculate
0.15 × 80 = $12.00
Answer: $12 discount → sale price = $80 − $12 = $68
★★ Medium
Finding the whole
After a 20% discount, a pair of shoes costs $64. What was the original price?
Show solution
1
Understand what $64 represents

After 20% off, you're paying 80% of the original price. So $64 = 80% of the original.

2
Use "find the whole" formula
whole = 64 ÷ (80 ÷ 100) = 64 ÷ 0.80 = $80
Answer: Original price = $80
✅ Checkpoint 4
a) 45 is what percent of 180?
b) A phone's price increased from $500 to $575. What is the percent increase?
c) 12% of a number is 30. What is the number?

a) % = (45 / 180) × 100 = 0.25 × 100 = 25%

b) % change = ((575 − 500) / 500) × 100 = (75/500) × 100 = 15%

c) whole = 30 ÷ (12/100) = 30 ÷ 0.12 = 250

5
Square Roots
What they really mean and how to estimate them

The square root of a number asks: what number, multiplied by itself, gives this? √25 = 5 because 5 × 5 = 25. Geometrically, √A is the side length of a square with area A.

💭
Why is √2 irrational?
No fraction p/q, when squared, gives exactly 2. Try it: (1/1)² = 1, (3/2)² = 2.25, (7/5)² = 1.96 — you can get close but never exact. The decimal 1.41421356… goes on forever without repeating. This shocked ancient Greek mathematicians who believed all numbers were rational.
Definition
√a = b    means    b² = a    (a ≥ 0)
√a × √b = √(ab)    BUT    √(a + b) ≠ √a + √b
💡
Strategy for estimating √n:
Find the two perfect squares n sits between. The square root is between those roots. Then use the position within the gap to refine.

Example: √50. Since 7² = 49 and 8² = 64, we know √50 is between 7 and 8. 50 is very close to 49, so √50 ≈ 7.1.
★ Easy
Simplifying square roots
Simplify: √72
Show solution
1
Find the largest perfect square factor of 72
72 = 36 × 2    (36 is a perfect square)
2
Use the product rule: √(a×b) = √a × √b
√72 = √36 × √2 = 6√2
Answer: 6√2 ≈ 8.485
★★ Medium
Estimating a square root
Estimate √110 to one decimal place without a calculator.
Show solution
1
Find surrounding perfect squares
10² = 100    11² = 121
So √110 is between 10 and 11
2
Estimate position within the gap
Gap from 100 to 121 = 21    110 − 100 = 10
Fraction of the way: 10/21 ≈ 0.48
√110 ≈ 10 + 0.48 ≈ 10.5
Answer: √110 ≈ 10.5  (calculator: 10.488…)
✅ Checkpoint 5
a) Simplify √48
b) Estimate √30 to one decimal place (no calculator)
c) True or false: √(16 + 9) = √16 + √9. Justify your answer.

a) 48 = 16 × 3 → √48 = √16 × √3 = 4√3

b) 5² = 25, 6² = 36. 30 is 5/11 of the way from 25 to 36. √30 ≈ 5.5. (Calculator: 5.477…)

c) False. √(16 + 9) = √25 = 5. But √16 + √9 = 4 + 3 = 7. These are different. You cannot split a square root over addition.