CAT 2020 Slot 1 — QA Question 12
How many 3-digit numbers are there, for which the product of their digits is more than 2 but less than 7?
Answer & solution
Answer: 21
Easy
The digit product must be one of . For each target value, list the unordered digit triples that multiply to it (digits from –), then count how many distinct 3-digit numbers each triple produces. A 3-digit number has no leading-zero issue here because a digit would make the product .
Translate the condition. If the digits are , the product must lie strictly between and .
Products and (primes). A prime product forces the digits to be that prime with two s, i.e. digit-set . The single distinct digit can sit in any of positions.
Product . Write as a product of three digits in all ways, then count arrangements of each multiset.
Product . Same idea.
Add them up.