Question 30:
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
@Chew-Seong Cheong Sir, How you approximated s to (3231) 6/((5) 222) as there is no any occurrence of 5/6 in your solution ? Could you please tell me the logic behind it and the way of thinking 765 as the solution ?
Log in to reply
The most important fact is the sum of all six numbers is 2 2 2 s . This means that the sum of six numbers is independent of the individual digits of a , b , and c so long as they add up to s . To get the sixth number we just 2 2 2 s − 3 2 3 1 = n 6 . Then we check the digital sum of n 6 , s ′ to see if s ′ = s . Therefore even without finding the average value of s , we can still solve the problem. See the table below:
s 1 6 1 7 1 8 1 9 2 0 2 2 2 s 3 5 5 2 3 7 7 4 3 9 9 6 4 2 1 8 4 4 4 0 n 6 3 2 1 5 4 3 7 6 5 9 8 7 1 2 0 9 s ′ 6 1 2 1 8 2 4 N / A
I have added the on how I estimate s in my solution.
Let a , b , and c be the digits. The sum of the 6 permutations of these digits is 2 2 2 ( a + b + c ) . Without loss of generality, a < b < c .
As a first step, I consider the various multiples of 2 2 2 :
{ 2 2 2 ∗ n : 1 ≤ n ≤ 9 } = { 2 2 2 , 4 4 4 , 6 6 6 , 8 8 8 , 1 1 1 0 , 1 3 3 2 , 1 5 5 4 , 1 7 7 6 , 1 9 9 8 } .
Clearly c cannot be a low digit, since 2 2 2 ( a + b + c ) ≤ 2 2 2 ( 3 c − 3 ) , but 2 2 2 ( a + b + c ) > 3 2 3 1 .
We can quickly dismiss c ≤ 6 , as the maximum sum subject to this constraint is 2 2 2 ( 4 + 5 + 6 ) = 8 8 8 + 1 1 1 0 + 1 3 3 2 = 3 3 3 0 , but 3 3 3 0 − 3 2 3 1 = 9 9 , which is too small.
My general approach will be to search over triples a , b , c by considering the expression 2 2 2 ( a + b + c ) − 3 2 3 1 and testing to see if this difference is a three-digit permutation of the digits a , b , and c .
With c ≥ 7 , in theory I only have ( 2 6 ) + ( 2 7 ) + ( 2 8 ) = 1 5 + 2 1 + 2 8 = 6 4 triples to search!
My search starts with c = 7 . To maximize a + b + c , I let a = 5 and b = 6 and I get lucky!
2 2 2 ∗ ( 5 + 6 + 7 ) = 3 9 9 6 and 3 9 9 6 − 3 2 3 1 = 7 6 5 , which is a permutation of the three chosen digits.
Found the answer relatively quickly. Not promising no other solutions exist.
Each digit appears twice in the hundreds, the tens and the units column amongst the six numbers which can be formed. If the digits are a, b, c and the missing number is c, then 3231 + — 222(a + b + c). Then = 222m — 3231 must have three distinct digits that add to m. So m > 3231/222 = 15B. Try m — 16, 17, . . ..
222 x 16 - 3231 — 3552 - 3231 = 321, 3 +2 + 1 16
222 x 17 - 3231 — 3774 3231 — 543, = 12 17
222 x 18 - 3231 — 3996 - 3231 = 765,
So the sixth number is 765, 7+6+5 = 18
hence (765).
Problem Loading...
Note Loading...
Set Loading...
Let the three different non-zero digits be a , b , and c . The three digits are even distributed in the six numbers that they form. That is each of them appears twice as the hundreds digit, twice as the tens digit, and twice as units digit in the six numbers. Therefore, the sum of the six numbers is 2 2 2 ( a + b + c ) or 2 2 2 s , where s = a + b + c , the sum of digits.
a a b b c c b c a c a b c b c a b a
Now, let us estimate the sum of digit s . 6 2 2 2 s ≈ 5 3 2 3 1 ⟹ s ≈ 5 3 2 3 1 × 2 2 2 6 ≈ 1 7 . 4 6 . Therefore s is likely to be 1 7 or 1 8 . Since 3 2 3 1 is divisible by 9 as its digital sum is divisible by 9 , s is more likely to be 1 8 , which is also divisible by 9 .
To find the sixth number, we just use n 6 = 2 2 2 s − 3 2 3 1 and for s = 1 8 we have n 6 = 3 9 9 6 − 3 2 3 1 = 7 6 5 . And we note that n 6 = 7 6 5 has a digital sum of 1 8 . Therefore our assumption is correct and 7 6 5 is the sixth number. Using other s do not give the correct result.