Arithmetic & Number Systems
Level 5 — Mastery (Cross-domain: Math + Physics + Coding) Time limit: 75 minutes Total marks: 40
Instructions: Show all reasoning. Where a proof is asked, state each logical step. Where an algorithm/pseudocode is asked, present it clearly and trace it on the given input.
Question 1 — Number theory + Coding (14 marks)
The Euclidean algorithm computes by repeated remainders. The relationship links the two.
(a) Write pseudocode for a function gcd(a, b) using the iterative Euclidean algorithm (with the modulo/remainder operation). Then trace every step (show each remainder) for . (4)
(b) Using your result from (a) and the HCF–LCM identity, compute . Show the division that gives an integer. (3)
(c) Prove that if (with ), then . Structure the proof by showing that the set of common divisors of equals the set of common divisors of . (4)
(d) A number has exactly the prime factorization . State how many factors (divisors) has, and give the general formula for the number of divisors from a prime factorization. (3)
Question 2 — Physics + Ratio/Unitary + Percentages (14 marks)
A cyclist and a runner start together. Data is given in mixed units — read carefully.
(a) A car travels using of fuel. Using the unitary method, find the fuel needed for a journey. State whether this is direct or inverse proportion and justify physically. (4)
(b) A tank is filled by 6 identical pipes in 8 hours. Using inverse proportion, find the time for 10 such pipes. Explain why the product (pipes × hours) is conserved in terms of total "pipe-hours" of work. (4)
(c) A shopkeeper buys a bicycle for ₹4000, marks it up, then offers a discount, still making a profit on cost. Find the marked price. Show the percentage chain carefully. (4)
(d) Speed of light is often quoted as . Express this in km/s using decimal place-value shifting, and state the effect on the place value when dividing by . (2)
Question 3 — Order of Operations + Absolute Value + Proof (12 marks)
(a) Evaluate strictly by BODMAS, showing each nested-bracket stage: (4)
(b) The absolute value satisfies the triangle inequality . Prove it for all real by cases on the signs, OR by squaring. State clearly when equality holds. (5)
(c) Convert to a decimal and a percentage. Then show that (i.e. ) equals using an algebraic manipulation with . (3)
Answer keyMark scheme & solutions
Question 1
(a) Pseudocode (2 marks):
function gcd(a, b):
while b != 0:
r = a mod b
a = b
b = r
return a
Trace for (2 marks — one per correct remainder chain):
- (since )
- (since )
- (since )
(b) (3 marks) . Why: HCF×LCM = product; dividing product by HCF must give an integer since HCF divides both factors. (1 mark for identity, 1 for arithmetic, 1 for integer check.)
(c) (4 marks) Proof that where :
- Let be a common divisor of and . Then and , so . Hence divides both and . (1.5)
- Conversely, let be a common divisor of and . Then , so divides both and . (1.5)
- Therefore the sets of common divisors of and of are identical; in particular their greatest elements are equal, so . (1)
(d) (3 marks) For , number of divisors (2 marks for formula). Here gives divisors (1 mark).
Question 2
(a) (4 marks) Unitary: 1 km needs L. For 315 km: L. Answer: 21 L. (2 marks). This is direct proportion: more distance ⇒ more fuel; ratio distance/fuel constant physically (constant consumption rate). (2 marks)
(b) (4 marks) Inverse: pipes × hours = constant = pipe-hours (2). With 10 pipes: hours h. Answer: 4.8 hours (1). The total work to fill the tank is fixed ("48 pipe-hours"), so if more pipes share it, each contributes less time; the product is conserved (1).
(c) (4 marks) Cost = 4000. Profit 17% ⇒ Selling Price (1). SP is after 10% discount on Marked Price: (1). So . Marked Price = ₹5200 (2).
(d) (2 marks) . Dividing by 1000 shifts the decimal point 3 places left, reducing each digit's place value by three orders (m → km). (1 answer + 1 explanation)
Question 3
(a) (4 marks)
- Innermost: (1)
- ; and (1)
- Bracket: (1)
- (1)
(b) (5 marks) Squaring method:
- Both sides non-negative, so compare squares. . (1)
- . (1)
- Difference: since always. (2)
- Hence , and taking non-negative square roots preserves the inequality: . Equality holds iff , i.e. (same sign or one is zero). (1)
(c) (3 marks) (1); as percentage (1). For : let , then , subtract: , so . (1)
[
{"claim":"gcd(1134,420)=42","code":"result = (gcd(1134,420)==42)"},
{"claim":"LCM(1134,420)=11340 via product/gcd","code":"result = (1134*420//gcd(1134,420)==11340)"},
{"claim":"divisors of 2^3*3^2*5 = 24","code":"result = ((3+1)*(2+1)*(1+1)==24)"},
{"claim":"fuel for 315km at 180km/12L is 21L","code":"result = (Rational(12,180)*315==21)"},
{"claim":"marked price 5200 gives 17% profit after 10% discount","code":"result = (Rational(4680,90)*100==5200 and 4000*Rational(117,100)==4680)"},
{"claim":"nested BODMAS expression equals 9","code":"result = (7+2*(36//(3**2-3)-abs(4-9))==9)"},
{"claim":"0.666... repeating equals 2/3","code":"result = (Rational(6,9)==Rational(2,3))"}
]