document.write( "Question 626167: A 40-member club will elect a president and elect a vice president. How many possible ways can a president and vice president be elected from this club/\r
\n" );
document.write( "\n" );
document.write( "Suppose the 40 member club instead elects two co-presidents. How many possible ways can co-presidents be elected from this club?\r
\n" );
document.write( "\n" );
document.write( "How are these questions alike and how are they different? \n" );
document.write( "
Algebra.Com's Answer #394026 by Theo(13342)![]() ![]() You can put this solution on YOUR website! n = 40 \n" ); document.write( "want to elect a president and vice president. \n" ); document.write( "formula is P(40,2) \n" ); document.write( "P is for permutation with n = 40 and x = 2. \n" ); document.write( "the number of possible permutation is equal to 40! / (38!) which becomes: \n" ); document.write( "40 * 39 = 1560\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "n = 40 \n" ); document.write( "want to elect 2 co-presidents. \n" ); document.write( "formuls is C(40,2) \n" ); document.write( "C is for combination with n = 40 and x = 2. \n" ); document.write( "the number of possible combinations is equal to 40! / (38! * 2!) which becomes: \n" ); document.write( "40 * 39 / 2 = 1560 / 2 = 780\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "the difference is in the first case order was important and in the second case order was not.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "this is easier to see if n = 3. \n" ); document.write( "you want to elect a president and vice president. \n" ); document.write( "the formuls now becomes P(3,2) which becomes 3! / 1! which becomes 3*2 = 6 possible ways. \n" ); document.write( "those ways are: \n" ); document.write( " \r\n" ); document.write( "president vice president\r\n" ); document.write( " a b\r\n" ); document.write( " a c\r\n" ); document.write( " b c\r\n" ); document.write( " b a\r\n" ); document.write( " c a\r\n" ); document.write( " c b\r\n" ); document.write( " \n" ); document.write( "order was important because candidate A could be president or vice president. \n" ); document.write( "now you want to elect 2 co-presidents. \n" ); document.write( "the formula now becomes C(3,2) which becomes 3! / (1! * 2!) becomes 3*2/2 = 3 \n" ); document.write( "those ways are: \n" ); document.write( " \r\n" ); document.write( "co-president co-president\r\n" ); document.write( " a b\r\n" ); document.write( " a c\r\n" ); document.write( " b c\r\n" ); document.write( " \n" ); document.write( "order was not important here since there is no difference between a co-president and a co-president \n" ); document.write( "candidate A can be one of the candidates for co-president while candidate B can be one of the candidates for co-president - which co-president position each takes doesn't matter. \n" ); document.write( " \n" ); document.write( " |