Level 5 — MasteryArithmetic & Number Systems

Arithmetic & Number Systems

75 minutes40 marksprintable — key stays hidden on paper

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 gcd(a,b)\gcd(a,b) by repeated remainders. The relationship HCF(a,b)×LCM(a,b)=a×b\text{HCF}(a,b)\times\text{LCM}(a,b)=a\times b 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 gcd(1134,420)\gcd(1134, 420). (4)

(b) Using your result from (a) and the HCF–LCM identity, compute LCM(1134,420)\text{LCM}(1134,420). Show the division that gives an integer. (3)

(c) Prove that if r=amodbr = a \bmod b (with b>0b>0), then gcd(a,b)=gcd(b,r)\gcd(a,b)=\gcd(b,r). Structure the proof by showing that the set of common divisors of (a,b)(a,b) equals the set of common divisors of (b,r)(b,r). (4)

(d) A number NN has exactly the prime factorization N=23325N = 2^3 \cdot 3^2 \cdot 5. State how many factors (divisors) NN 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 180 km180\ \text{km} using 12 L12\ \text{L} of fuel. Using the unitary method, find the fuel needed for a 315 km315\ \text{km} 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 10%10\% discount, still making a 17%17\% profit on cost. Find the marked price. Show the percentage chain carefully. (4)

(d) Speed of light is often quoted as 3.0×108 m/s3.0\times10^8\ \text{m/s}. Express this in km/s using decimal place-value shifting, and state the effect on the place value when dividing by 10001000. (2)


Question 3 — Order of Operations + Absolute Value + Proof (12 marks)

(a) Evaluate strictly by BODMAS, showing each nested-bracket stage: 7+2×[36÷(323)49]7 + 2\times\left[ 36 \div \left( 3^2 - 3 \right) - \left| 4 - 9 \right| \right] (4)

(b) The absolute value satisfies the triangle inequality x+yx+y|x+y|\le|x|+|y|. Prove it for all real x,yx,y by cases on the signs, OR by squaring. State clearly when equality holds. (5)

(c) Convert 78\dfrac{7}{8} to a decimal and a percentage. Then show that 0.60.\overline{6} (i.e. 0.6660.666\ldots) equals 23\dfrac{2}{3} using an algebraic manipulation with x=0.6x=0.\overline{6}. (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 gcd(1134,420)\gcd(1134, 420) (2 marks — one per correct remainder chain):

  • 1134mod420=2941134 \bmod 420 = 294 (since 1134=2420+2941134 = 2\cdot420 + 294)
  • 420mod294=126420 \bmod 294 = 126 (since 420=1294+126420 = 1\cdot294 + 126)
  • 294mod126=42294 \bmod 126 = 42 (since 294=2126+42294 = 2\cdot126 + 42)
  • 126mod42=0126 \bmod 42 = 0
  • gcd=42\gcd = \boxed{42}

(b) (3 marks) LCM=abHCF=1134×42042=47628042=11340\text{LCM} = \dfrac{a\cdot b}{\text{HCF}} = \dfrac{1134\times420}{42} = \dfrac{476280}{42} = \boxed{11340}. 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 gcd(a,b)=gcd(b,r)\gcd(a,b)=\gcd(b,r) where a=qb+ra = qb + r:

  • Let dd be a common divisor of aa and bb. Then dad\mid a and dbd\mid b, so d(aqb)=rd\mid(a-qb)=r. Hence dd divides both bb and rr. (1.5)
  • Conversely, let dd be a common divisor of bb and rr. Then dqb+r=ad\mid qb+r = a, so dd divides both aa and bb. (1.5)
  • Therefore the sets of common divisors of (a,b)(a,b) and of (b,r)(b,r) are identical; in particular their greatest elements are equal, so gcd(a,b)=gcd(b,r)\gcd(a,b)=\gcd(b,r). (1)

(d) (3 marks) For N=p1e1p2e2N=p_1^{e_1}p_2^{e_2}\cdots, number of divisors =(e1+1)(e2+1)= (e_1+1)(e_2+1)\cdots (2 marks for formula). Here N=233251N=2^3\cdot3^2\cdot5^1 gives (3+1)(2+1)(1+1)=432=24(3+1)(2+1)(1+1)=4\cdot3\cdot2=\boxed{24} divisors (1 mark).


Question 2

(a) (4 marks) Unitary: 1 km needs 12/180=1/1512/180 = 1/15 L. For 315 km: 315×115=21315\times\tfrac{1}{15}=21 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 = 6×8=486\times8 = 48 pipe-hours (2). With 10 pipes: hours =48/10=4.8= 48/10 = 4.8 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 =4000×1.17=4680= 4000\times1.17 = 4680 (1). SP is after 10% discount on Marked Price: SP=0.90×MPSP = 0.90\times MP (1). So MP=4680/0.90=5200MP = 4680/0.90 = 5200. Marked Price = ₹5200 (2).

(d) (2 marks) 3.0×108 m/s=3.0×105 km/s=300000 km/s3.0\times10^8\ \text{m/s} = 3.0\times10^5\ \text{km/s} = 300000\ \text{km/s}. 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: 323=93=63^2 - 3 = 9 - 3 = 6 (1)
  • 36÷6=636 \div 6 = 6; and 49=5=5|4-9| = |-5| = 5 (1)
  • Bracket: 65=16 - 5 = 1 (1)
  • 7+2×1=7+2=97 + 2\times 1 = 7 + 2 = \boxed{9} (1)

(b) (5 marks) Squaring method:

  • Both sides non-negative, so compare squares. (x+y)2=(x+y)2=x2+2xy+y2(|x+y|)^2 = (x+y)^2 = x^2 + 2xy + y^2. (1)
  • (x+y)2=x2+2xy+y2(|x|+|y|)^2 = x^2 + 2|x||y| + y^2. (1)
  • Difference: (x+y)2x+y2=2xy2xy=2(xyxy)0(|x|+|y|)^2 - |x+y|^2 = 2|xy| - 2xy = 2(|xy|-xy)\ge 0 since xyxy|xy|\ge xy always. (2)
  • Hence x+y2(x+y)2|x+y|^2 \le (|x|+|y|)^2, and taking non-negative square roots preserves the inequality: x+yx+y|x+y|\le|x|+|y|. Equality holds iff xy=xyxy=|xy|, i.e. xy0xy\ge0 (same sign or one is zero). (1)

(c) (3 marks) 7/8=0.8757/8 = 0.875 (1); as percentage =87.5%= 87.5\% (1). For 0.60.\overline{6}: let x=0.666x=0.666\ldots, then 10x=6.66610x = 6.666\ldots, subtract: 9x=69x = 6, so x=6/9=2/3x = 6/9 = 2/3. (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))"}
]