document.write( "Question 1063942: In a row of 6 counters, 3 are red, 2 are blue and 1 is white.
\n" );
document.write( "Find the number of arrangements in which no red counter is
\n" );
document.write( "next to another red counter.
\n" );
document.write( "
\n" );
document.write( "Let the counter be numbered is 1,2,3,4,5,6.So the only places for red ones are
\n" );
document.write( "(1,3,5) (2,4,6) (1,4,6)\r
\n" );
document.write( "\n" );
document.write( "I started this way how to continue? \n" );
document.write( "
Algebra.Com's Answer #679004 by math_helper(2461)![]() ![]() You can put this solution on YOUR website! In combinatorics problems like this one, it is often difficult to enumerate all combinations (this one is possible because the numbers are small, but for problems involving huge numbers of combinations, you will need to reason it out, as enumeration will often be impractical). I will use R,B,W to indicate red, blue, and white, respectively. Below I show you how to solve it if each counter of a given color is identical to others of the same color, and then how to solve even if counters of one color are unique. \n" ); document.write( "— \n" ); document.write( " \r\n" ); document.write( "——————————————————————————————————————————\r\n" ); document.write( "Assuming the counters of the same color are identical:\r\n" ); document.write( "——————————————————————————————————————————\r\n" ); document.write( "\r\n" ); document.write( "To keep the red counters apart by at least one other counter, notice that 2 blue and 1 white provide the separation: B,B,W \r\n" ); document.write( "\r\n" ); document.write( "Now, for this one arrangement of B,B,W, you have 4 spaces to choose for the 3 red counters:\r\n" ); document.write( " 1 B 2 B 3 W 4\r\n" ); document.write( "Hence, you can fit the red ones in in 4C3 = 4!/(3!1!) = 4 ways. (you are choosing 3 spaces out of 4 to place R)\r\n" ); document.write( "\r\n" ); document.write( "But the BBW can be rearranged: the W can be placed amongst the B's in 3C1 = 3 unique ways (the way shown and two additional) so that means we have a total of 4x3 =\n" ); document.write( " |