document.write( "Question 1062364: i have a sets of number 1,2,7,7,7. what is the formula to count how many 3-digit number possible combinations using that sets, with these conditions of combinations must be unique. the result (13 combinations) are
\n" ); document.write( "127
\n" ); document.write( "172
\n" ); document.write( "177
\n" ); document.write( "217
\n" ); document.write( "271
\n" ); document.write( "277
\n" ); document.write( "712
\n" ); document.write( "717
\n" ); document.write( "721
\n" ); document.write( "727
\n" ); document.write( "771
\n" ); document.write( "772
\n" ); document.write( "777
\n" ); document.write( "And if i a have a set of 1,2,3,7,7,7, there will be 34 possible combinations.
\n" ); document.write( "thanks in advance.
\n" ); document.write( "

Algebra.Com's Answer #677307 by Edwin McCravy(20055)\"\" \"About 
You can put this solution on YOUR website!
I have a sets of number 1,2,7,7,7. what is the formula to count how many
\n" ); document.write( "3-digit number possible combinations using that sets, with these conditions
\n" ); document.write( "of combinations must be unique. the result (13 combinations) are
\n" ); document.write( "
\r\n" );
document.write( "\r\n" );
document.write( "\r\n" );
document.write( "For the number of 3-digit numbers with exactly 1 7:\r\n" );
document.write( "\r\n" );
document.write( "Choose the position to put the 7 in 3C1=3 ways.\r\n" );
document.write( "Choose a non-7 for the left-most remaining position in 2C1=2 ways.\r\n" );
document.write( "Choose a non-7 for the right-most remaining position in 1C1=1 ways.\r\n" );
document.write( "\r\n" );
document.write( "(3C1)(2C1)(1C1) = (3)(2)(1) = 6 ways.\r\n" );
document.write( "\r\n" );
document.write( "For the number of 3-digit numbers with exactly 2 7's:\r\n" );
document.write( "\r\n" );
document.write( "Choose the positions to put the 7's in 3C2=3 ways.\r\n" );
document.write( "Choose a non-7 for the only remaining position in 2C1=2 ways.\r\n" );
document.write( "\r\n" );
document.write( "(3C2)(2C1) = (3)(2) = 6 ways.\r\n" );
document.write( "\r\n" );
document.write( "For the number of 3-digit numbers with exactly 3 7's:\r\n" );
document.write( "\r\n" );
document.write( "3C3 = 1 way.  That's 777.\r\n" );
document.write( "\r\n" );
document.write( "Answer: 6+6+1 = 13 ways.\r\n" );
document.write( "\r\n" );
document.write( "---------------------

\n" ); document.write( "And if I have a set of 1,2,3,7,7,7, there will be 34 possible combinations.
\n" ); document.write( "thanks in advance.
\r\n" );
document.write( "\r\n" );
document.write( "For the number of 3-digit numbers with exactly 0 (no) 7s:\r\n" );
document.write( "\r\n" );
document.write( "Choose the position to put the 1 in 3C1 = 3 ways.\r\n" );
document.write( "Choose the position to put the 2 in 2C1 = 2 ways.\r\n" );
document.write( "Choose the position to put the 3 in 1C1 = 1 way.\r\n" );
document.write( "\r\n" );
document.write( "That's (3C1)(2C1)(1C1) = (3)(2)(1) = 6\r\n" );
document.write( "\r\n" );
document.write( "For the number of 3-digit numbers with exactly 1 7:\r\n" );
document.write( "\r\n" );
document.write( "Choose the position to put the 7 in 3C1=3 ways.\r\n" );
document.write( "Choose a non-7 for the left-most remaining position in 3C1=3 ways.\r\n" );
document.write( "Choose a non-7 for the right-most remaining position in 2C1=2 ways.\r\n" );
document.write( "\r\n" );
document.write( "That's (3C1)(3C1)(2C1) = (3)(3)(2) = 18 ways.\r\n" );
document.write( "\r\n" );
document.write( "For the number of 3-digit numbers with exactly 2 7's:\r\n" );
document.write( "\r\n" );
document.write( "Choose the positions to put the 7's in 3C2=3 ways.\r\n" );
document.write( "Choose a non-7 for the only remaining position in 3C1=3 ways.\r\n" );
document.write( "\r\n" );
document.write( "(3C2)(3C1) = (3)(3) = 9 ways.\r\n" );
document.write( "\r\n" );
document.write( "For the number of 3-digit numbers with exactly 3 7's:\r\n" );
document.write( "\r\n" );
document.write( "3C3 = 1 way.  That's 777.\r\n" );
document.write( "\r\n" );
document.write( "Answer: 6+18+9+1 = 34 ways.\r\n" );
document.write( "\r\n" );
document.write( "Here they all are:\r\n" );
document.write( "\r\n" );
document.write( "123, 127, 132, 137, 172, 173, 177, 213, 217, 231, \r\n" );
document.write( "237, 271, 273, 277, 312, 317, 321, 327, 371, 372, \r\n" );
document.write( "377, 712, 713, 717, 721, 723, 727, 731, 732, 737, \r\n" );
document.write( "771, 772, 773, 777.\r\n" );
document.write( "\r\n" );
document.write( "Edwin

\n" ); document.write( "
\n" ); document.write( "
\n" );