Question:

To decide whether an $n$-digit number is divisible by 7, a process is defined by using weights of powers of 3 from the right: i.e., for number $abc$, compute $a \cdot 3^2 + b \cdot 3^1 + c \cdot 3^0$ Given: $259 \Rightarrow 2 \cdot 9 + 5 \cdot 3 + 9 = 18 + 15 + 9 = 42$ Now for number 203, how many such stages are needed to reduce it to 7?

Show Hint

For special divisibility tests, follow the weighted transformation rules exactly and repeat until desired form appears.
Updated On: Aug 7, 2025
  • 2
  • 3
  • 4
  • 1
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is A

Solution and Explanation

Apply weighted sum process: Stage 1: \[ 203 \Rightarrow 2 \cdot 9 + 0 \cdot 3 + 3 = 18 + 0 + 3 = 21 \] Stage 2: \[ 21 \Rightarrow 2 \cdot 3 + 1 = 6 + 1 = \boxed{7} \] So, 2 stages needed.
Was this answer helpful?
0
0