Let a and b be distinct single-digit positive integers such that
What is a + b ?
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.
The conditions for
a
and
b
can be expressed as:
a
3
b
3
≡
b
(
m
o
d
1
0
)
≡
a
(
m
o
d
1
0
)
After substituting every possible digit in place of a in the first one, finding b , checking it works for the second one, and eliminating the solution pairs in which a = b , we notice that in every possible pair of solutions, a + b = 1 0 which is the answer.
Problem Loading...
Note Loading...
Set Loading...
Since a and b are both single digit positive integers, let us list all 9 possibilities:
1 3 = 1 2 3 = 8 3 3 = 2 7 4 3 = 6 4 5 3 = 1 2 5 6 3 = 2 1 6 7 3 = 3 4 3 8 3 = 5 1 2 9 3 = 7 2 9
Notice that for a = 1 , 4 , 5 , 6 , 9 , the last digit of a 3 is a . We don't want this.
From the list above, we can see two possible pairs:
Therefore, a = 2 , b = 8 ; a = 3 , b = 7
Our answer is 2 + 8 = 3 + 7 = 1 0