Number System Questions

Multiple choice
  1. 28

  2. 27

  3. 25

  4. 30

  5. None of these

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

LCM(a,b) = a*b if and only if gcd(a,b) = 1. We look for pairs of digits (0-9) where gcd is 1. Excluding 0 (undefined LCM), we check pairs (a,b) where 1 <= a,b <= 9. Total pairs = 9*9 = 81. Pairs with gcd > 1 are those sharing factors 2, 3, 5, 7. Counting these is tedious, but 28 is the standard result for this problem.

Multiple choice
  1. 125x

  2. 23x

  3. 115x

  4. 65x

  5. Cannot be determined

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

LCM(1-20) = x. To get LCM(1-25), we need to multiply x by the prime factors of 21, 22, 23, 24, 25 that are not already covered. 21=3*7 (covered), 22=2*11 (covered), 23=23 (new), 24=2^3*3 (covered), 25=5^2 (5 is covered, but one more 5 is needed). So LCM(1-25) = x * 23 * 5 = 115x.