An artist is planning on mixing together any number of different colors from her palette. A mixture results as long as the artist combines at least two colors. If the number of possible mixtures is less than 500, what is the greatest number of colors the artist could have in her palette?
Assume that no two different mixtures produce the same color.
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 n the number of colors the artist have
The number of possible mixtures for k colors from n colors is ( k n )
Since a mixture needs at least two colors then then the number of possible mixtures is
( 2 n ) + ( 3 n ) + ( 4 n ) + ( 5 n ) + … + ( n n )
We have
( 0 n ) + ( 1 n ) + ( 2 n ) + ( 3 n ) + … + ( n n ) = 2 n
Since
( 2 n ) + ( 3 n ) + ( 4 n ) + ( 5 n ) + … + ( n n ) < 5 0 0
2 n − ( 1 n ) − ( 0 n ) < 5 0 0
2 n − n − 1 < 5 0 0
2 n − n < 5 0 1
n = 8