Here is a numbered list of statements, some true, some false, which refer to a specific number (unique positive integer, base 10).
It just so happens that if a statement is true then its index number appears among the number's digits, and if a statement is false then its index number does not appear among the number's digits.
- The sum of the number's digits is a prime.
- The product of the number's digits is odd.
- Each of the number's digits is less than the next digit (if there is one).
- No two of the number's digits are equal.
- None of the number's digits is greater than 4.
- The number has fewer than 6 digits.
- The product of the number's digits is not divisible by 6.
- The number is even.
- No two of the number's digits differ by 1.
- At least one of the number's digits is equal to the sum of two other digits. (Any of the digits may be equal, as long as all 3 digits are distinct... for example: {2, 2, 4} or {2, 3, 5} )
Find the number.
Hi,
Number 23569 will be the solution
0 The sum of the number's digits is a prime i.e., 2+3+5+6+9 = 25 is not a prime --- False
1 The product of the number's digits is odd.I.e., 2*3*5*6*9=1620 is not an odd --- False
2 Each of the number's digits is less than the next digit (if there is one). ---- True
3 No two of the number's digits are equal --True
4 None of the number's digits is greater than 4 -- False
5 The number has fewer than 6 digits --- True
6 The product of the number's digits is not divisible by 6. i.e., 23569 Mod 6 = 3 (Remainder) --- True
7 The number is even. ---- False
8 No two of the number's digits differ by 1--False
9 At least one of the number's digits is equal to the sum of two other digits. (Any of the digits may be equal, as long as all 3 digits are distinct... for example: {2, 2, 4} or {2, 3, 5} ) i.e., 2+3 = 5 & 3 + 6 = 9 ---- True
So all True Indexes are 23569
Which is a solution for this problem
Submitted By
Pandu
|
Posted by Pandu
on 2004-12-30 09:18:37 |