× □ □ 1 2 3 □ □ □ □ □ 8 7 6 □
The above represents an incomplete long multiplication. What is the sum of all the missing digits?
Clarification: The above shows the product of two 2-digit integers that yields a 4-digit integer.
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.
Oh, I'm slightly disappointed that I didn't see a Python solution =P
Log in to reply
Well, you know, funny you should say that... it turns out that when you try every combination of numbers it gives you 5 different possible values for the expression: {1316, 1326, 1386, 2376, 3306}
I tried brute force Python, Pi, I honestly did. T.T
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
|
Log in to reply
I couldn't have asked for a better answer. This is well articulated.
Problem Loading...
Note Loading...
Set Loading...
First, consider that because we're using a long multiplication method: ? 8 × 7 = 1 ? 6
18 is the biggest number we can multiply 7 by before exceeding the largest possible product 1 9 6 , therefore
1 8 × 7 = 1 2 6
From there we know that
1 8 × ? 7 = ? 3 ? ?
If you iterate you can see that 1 8 × 7 7 is the only four digit number where the 2nd digit is 3.
1 8 × 7 7 = 1 3 8 6
Finally, we can see that 1 2 6 + ? 2 ? 0 = 1 3 8 6 ⟹ 1 2 6 + 1 2 ? 0 = 1 3 8 6 ⟹ 1 2 6 + 1 2 6 0 = 1 3 8 6
Add all of your newfound missing answers, and we arrive at 3 2