How many sets of integers are there, such that and is a multiple of 3?
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.
We can make 3 different sets Set 1 : { 1,4,7,...,100} = 1(mod 3)..... contains 34 elements Set 2 : { 2,5,8,...,98} =2(mod 3)...... contains 33 elements Set 3: {3,6,9,12,...,99} =0(mod 3)...... contains 33 elements
We can choose either all three elements from set 1, 2, 3 or one element from each set. So ways =34C3 + 2 * 33C3 + 34 33 33 =53922