document.write( "Question 452441: There are a number of people in a roo and each person shakes hands once with each of the other people.
\n" ); document.write( "a) If there are 5 people in the room, how many handshakes have taken place?
\n" ); document.write( "b) If there are 6 people in the room, how many handshakes have taken place?
\n" ); document.write( "c) If there are 7 people in the room, how many handshakes have taken place?
\n" ); document.write( "d) If there are n people in the room, how many handshakes have taken place? Write a recursive formula and explicit formula.
\n" ); document.write( "e) Where are these numbers on Pascal's Triangle?
\n" ); document.write( "f) If there were 190 handshakes altogether, how many people were in the room?
\n" ); document.write( "

Algebra.Com's Answer #310996 by MathLover1(20849)\"\" \"About 
You can put this solution on YOUR website!

\n" ); document.write( "So let's ay the room has only A and B---two people.\r
\n" ); document.write( "\n" ); document.write( "there is one handshake
\n" ); document.write( "(A with B).\r
\n" ); document.write( "\n" ); document.write( "Three people (A, B, and C), there are three handshakes
\n" ); document.write( "(A with B and C; B with C).\r
\n" ); document.write( "\n" ); document.write( "Now, let's try four people (A, B, C, and D), there are six handshakes
\n" ); document.write( "(A with B, C, and D; B with C and D; C with D).\r
\n" ); document.write( "\n" ); document.write( "So if we have n-1 people, the number of handshakes is the sum of the first n numbers. This is n(n-1)/2\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "a) If there are 5 people in the room, how many handshakes have taken place?\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "\"n%28n-1%29%2F2=5%285-1%29%2F2=5%2A4%2F2=5%2A2=10\"\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "b) If there are 6 people in the room, how many handshakes have taken place?\r
\n" ); document.write( "\n" ); document.write( "\"n%28n-1%29%2F2=6%286-1%29%2F2=6%2A5%2F2=3%2A5=15\"\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "c) If there are 7 people in the room, how many handshakes have taken place?\r
\n" ); document.write( "\n" ); document.write( "\"n%28n-1%29%2F2=7%287-1%29%2F2=7%2A6%2F2=7%2A3=21\"\r
\n" ); document.write( "\n" ); document.write( "d) If there are n people in the room, how many handshakes have taken place? \r
\n" ); document.write( "\n" ); document.write( "Write a recursive formula and explicit formula.\r
\n" ); document.write( "\n" ); document.write( "\"n%28n-1%29%2F2\"\r
\n" ); document.write( "\n" ); document.write( "e) Where are these numbers on Pascal's Triangle?\r
\n" ); document.write( "\n" ); document.write( "these are triangular numbers\r
\n" ); document.write( "\n" ); document.write( "f) If there were 190 handshakes altogether, how many people were in the room?\r
\n" ); document.write( "\n" ); document.write( "\"n%28n-1%29%2F2=190%28190-1%29%2F2=190%2A189%2F2=17955\"\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "Another way to think of this, if you have done some combinations, is for \"6\" people, in how many ways can you pick two. This is \"6C2+=+6%2A5%2F2=+15\"\r
\n" ); document.write( "\n" ); document.write( "for \"190\" people\"190C2+=+190%2A189%2F2=+17955\"\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "
\n" ); document.write( "
\n" );