document.write( "Question 1152008: There are five people in a room. Each person shakes the hand of every other person exactly one. How many hands shakes are exchanged\r
\n" );
document.write( "\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #773919 by greenestamps(13200)![]() ![]() You can put this solution on YOUR website! \n" ); document.write( "Here is a more sophisticated method for counting the number of handshakes; it is especially useful when the number of people is large. \n" ); document.write( "Suppose the number of people is n. Then each of the n people shakes hands with each of the other (n-1) people, making a total of n*(n-1) handshakes. \n" ); document.write( "But when you count all of the handshakes by all the people in that way, you count each distinct handshake twice; so the actual number of handshakes is (n*(n-1))/2. \n" ); document.write( "In this problem, with 5 people, that gives you (5*(5-1))/2 = (5*4)/2 = 10. \n" ); document.write( "Of course, adding 4+3+2+1 is faster than that.... But if the number of people were 79 instead of 4, you wouldn't want to be adding 78+77+76+...+3+2+1 to find the number of handshakes. \n" ); document.write( " \n" ); document.write( " |