Level 3 — ProductionArithmetic & Number Systems

Arithmetic & Number Systems

45 minutes60 marksprintable — key stays hidden on paper

Level: 3 — Production (from-scratch derivations, code-from-memory, explain-out-loud) Time limit: 45 minutes Total marks: 60

Instructions: Show every step. For "explain-out-loud" parts, write the reasoning as if teaching a peer. For the code question, pseudocode or Python from memory is accepted.


Question 1 — Euclid & the HCF·LCM identity (12 marks)

(a) From scratch, use the Euclidean algorithm to find gcd(1260,882)\gcd(1260, 882). Show each division step with dividend, divisor, quotient, remainder. (4)

(b) Using the identity HCF×LCM=product of the two numbers\text{HCF} \times \text{LCM} = \text{product of the two numbers}, derive LCM(1260,882)\text{LCM}(1260, 882). (3)

(c) Explain out loud: why does the Euclidean algorithm always terminate, and why is the final non-zero remainder the HCF? Argue in 3–4 sentences. (3)

(d) Verify your HCF by prime factorisation of both numbers. (2)


Question 2 — Sieve of Eratosthenes, code from memory (10 marks)

(a) Write pseudocode (or Python) that returns all primes n\le n using the Sieve of Eratosthenes. (5)

(b) Explain out loud: why is it sufficient to start crossing out multiples of pp from p2p^2, and to stop the outer loop once p2>np^2 > n? (3)

(c) List all primes between 40 and 60. (2)


Question 3 — Fractions from scratch (10 marks)

Evaluate, showing all steps and giving the answer as a mixed number in lowest terms: 314+2561783\tfrac{1}{4} + 2\tfrac{5}{6} - 1\tfrac{7}{8} (6)

(b) Explain out loud: why must we find a common denominator before adding fractions, but not before multiplying them? (4)


Question 4 — Percentages, profit & interest (12 marks)

(a) A shopkeeper buys an item for ₹800 and marks it up by 25%. He then gives a 10% discount on the marked price. Find the selling price and the actual profit percent on cost. (5)

(b) Derive the simple interest on ₹12,000 at 7.5% per annum for 2 years 4 months, from the formula I=PRT100I = \dfrac{PRT}{100}. (4)

(c) Explain out loud: why is a 25% increase followed by a 10% decrease not the same as a net 15% increase? (3)


Question 5 — BODMAS, ratio & unitary method (10 marks)

(a) Evaluate, showing bracket order: 120÷[4+2×(73)]3120 \div \big[ 4 + 2 \times (7 - 3) \big] - 3 (4)

(b) Divide ₹5,400 among A, B, C in the ratio 2:3:42 : 3 : 4. (3)

(c) 15 workers build a wall in 8 days. Using the unitary method, how many days for 20 workers (same rate)? State whether this is direct or inverse proportion and why. (3)


Question 6 — Place value & absolute value (6 marks)

(a) Write the number "two crore five lakh thirty thousand seventy" in digits, and state the place value of the digit 5 in it. (3)

(b) Solve on the number line and explain: find all integers xx with x32|x - 3| \le 2. (3)


Answer keyMark scheme & solutions

Question 1 (12)

(a) Euclidean algorithm on (1260,882)(1260, 882):

  • 1260=1×882+3781260 = 1 \times 882 + 378 (1)
  • 882=2×378+126882 = 2 \times 378 + 126 (1)
  • 378=3×126+0378 = 3 \times 126 + 0 (1)
  • Last non-zero remainder =126= 126, so gcd=126\gcd = 126. (1)

(b) LCM=1260×882126=1,111,320126=8820\text{LCM} = \dfrac{1260 \times 882}{126} = \dfrac{1{,}111{,}320}{126} = 8820. (3) (Award 1 for correct identity, 1 for product, 1 for answer.)

(c) Each step replaces the pair by a smaller remainder pair; remainders are non-negative and strictly decreasing, so the process must reach 0 in finitely many steps (termination). At each step gcd(a,b)=gcd(b,amodb)\gcd(a,b)=\gcd(b, a \bmod b) because any common divisor of a,ba,b divides the remainder and vice-versa, so the gcd is preserved; hence the last non-zero remainder is the gcd. (3)

(d) 1260=2232571260 = 2^2 \cdot 3^2 \cdot 5 \cdot 7; 882=23272882 = 2 \cdot 3^2 \cdot 7^2. Common =213271=126= 2^1 \cdot 3^2 \cdot 7^1 = 126. ✓ (2)


Question 2 (10)

(a) (5 marks — 1 array init, 1 loop to √n, 1 inner marking from p², 1 correctness, 1 return)

def sieve(n):
    is_prime = [True]*(n+1)
    is_prime[0] = is_prime[1] = False
    p = 2
    while p*p <= n:
        if is_prime[p]:
            for m in range(p*p, n+1, p):
                is_prime[m] = False
        p += 1
    return [i for i in range(2, n+1) if is_prime[i]]

(b) Any composite mm has a prime factor m\le \sqrt{m}, so it is already crossed out by a prime pmp \le \sqrt{m}; thus once p2>np^2 > n every remaining number is prime and we may stop. We start at p2p^2 because all smaller multiples pkp\cdot k (k<pk<p) were already crossed by the smaller factor kk. (3)

(c) Primes between 40 and 60: 41, 43, 47, 53, 59. (2)


Question 3 (10)

(a) Convert to improper: 314=1343\tfrac14=\tfrac{13}{4}, 256=1762\tfrac56=\tfrac{17}{6}, 178=1581\tfrac78=\tfrac{15}{8}. (1) LCD of 4,6,8 = 24. (1) 134=7824\tfrac{13}{4}=\tfrac{78}{24}, 176=6824\tfrac{17}{6}=\tfrac{68}{24}, 158=4524\tfrac{15}{8}=\tfrac{45}{24}. (2) 78+684524=10124\tfrac{78+68-45}{24}=\tfrac{101}{24}. (1) =4524=4\tfrac{5}{24} (already lowest terms). (1)

(b) Addition combines quantities of the same unit; a common denominator makes the pieces the same size so the numerators can be counted together. Multiplication of ab×cd\tfrac ab \times \tfrac cd means "ab\tfrac ab of cd\tfrac cd" — it scales, so numerators and denominators multiply directly (acbd\tfrac{ac}{bd}) with no need for equal-sized pieces. (4)


Question 4 (12)

(a) Marked price =800×1.25=1000= 800 \times 1.25 = 1000. (1) Discount 10%10\%: SP =1000×0.90=900= 1000 \times 0.90 = 900. (2) Profit =900800=100= 900 - 800 = 100; profit% =100800×100=12.5%= \tfrac{100}{800}\times100 = 12.5\%. (2)

(b) T=2412=213=73T = 2\tfrac{4}{12} = 2\tfrac13 = \tfrac73 years. (1) I=12000×7.5×73100=12000×7.5×7300=630000300=2100I = \dfrac{12000 \times 7.5 \times \tfrac73}{100} = \dfrac{12000 \times 7.5 \times 7}{300} = \dfrac{630000}{300} = 2100. (3) So I=2100I = ₹2100.

(c) The 10% decrease applies to the increased base (125%), not the original: net factor =1.25×0.90=1.125=1.25\times0.90=1.125, i.e. +12.5%, not +15%. Percentages compound on different bases, so they cannot simply be added/subtracted. (3)


Question 5 (10)

(a) Innermost: 73=47-3=4. (1) 2×4=82\times4=8; 4+8=124+8=12. (1) 120÷12=10120\div12=10. (1) 103=710-3=7. (1)

(b) Total parts =2+3+4=9=2+3+4=9; one part =5400/9=600=5400/9=600. (1) A =1200=1200, B =1800=1800, C =2400=2400. (2)

(c) Total work =15×8=120=15\times8=120 worker-days. Days for 20 workers =120/20=6=120/20=6 days. (2) Inverse proportion: more workers ⇒ fewer days. (1)


Question 6 (6)

(a) 2,05,30,0702{,}05{,}30{,}070 (2,05,30,070). (2) The digit 5 is in the lakhs place → place value =5,00,000= 5{,}00{,}000 (five lakh). (1)

(b) x322x321x5|x-3|\le 2 \Rightarrow -2 \le x-3 \le 2 \Rightarrow 1 \le x \le 5. (1) Integers: {1,2,3,4,5}\{1,2,3,4,5\}. (1) On the number line these are all points within distance 2 of 3. (1)


[
  {"claim":"gcd(1260,882)=126 and lcm=8820", "code":"g=gcd(1260,882); l=lcm(1260,882); result=(g==126 and l==8820)"},
  {"claim":"3 1/4 + 2 5/6 - 1 7/8 = 101/24", "code":"result=(Rational(13,4)+Rational(17,6)-Rational(15,8)==Rational(101,24))"},
  {"claim":"SP=900 and profit%=12.5 on cost 800", "code":"sp=800*Rational(125,100)*Rational(90,100); pp=(sp-800)/800*100; result=(sp==900 and pp==Rational(25,2))"},
  {"claim":"Simple interest = 2100", "code":"I=Rational(12000*Rational(15,2)*Rational(7,3),100); result=(I==2100)"},
  {"claim":"BODMAS expression equals 7", "code":"result=(120/(4+2*(7-3))-3==7)"}
]