We are given the natural numbers , , . If the total possible number of ordered triplets such that the expression above is divisible by is , evaluate .
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.
Let's take a look at numbers of the form 2 x modulo 3 . we can see 2 1 is 2 , 2 2 is 1 , 2 3 is 1 again, and more generally 2 x is 2 for odd x and 1 for even x .
Given we can replace each of 2 a , 2 b , and 2 c with either 1 or 2 modulo 3 , how many ways can we do this such that the summation evaluates to a multiple of 3 ?
There are only two: 1 + 1 + 1 and 2 + 2 + 2 .
Thus our answer is (# possible even a)(# possible even b)(# possible even c) + (# possible odd a)(# possible odd b)(# possible odd c)
= ( 5 0 ) ( 2 5 ) ( 1 2 ) + ( 5 0 ) ( 2 5 ) ( 1 3 ) = 3 1 2 5 0