document.write( "Question 1146445: There is quite a pile of playing cards sitting at my house.
\n" );
document.write( " A discovery I have made is as follows.
\n" );
document.write( "if 2 people are playing cards one card will be leftover.
\n" );
document.write( " if 3 people are playing cards 2 cards will be leftover.
\n" );
document.write( "if 4 people are playing cards 3 cards will be leftover .
\n" );
document.write( "if 5 people are playing cards for cards will be leftover.
\n" );
document.write( " if 6 people are playing cards 5 cards will be leftover.
\n" );
document.write( "if seven people are playing cards no cards will be leftover
\n" );
document.write( "if I have the minimum amount of cards to satisfy the above conditions how many cards do I have? \n" );
document.write( "
Algebra.Com's Answer #767706 by Glaviolette(140)![]() ![]() You can put this solution on YOUR website! Since there are no cards left over when 5 or 7 people are playing, that means the number of cards is divisible by 5 and 7. \n" ); document.write( "5 * 7 = 35 \n" ); document.write( "35/2 = 17 r 1 \n" ); document.write( "35/3 = 11 r 2 \n" ); document.write( "35/4 = 8 r 3 \n" ); document.write( "35/6 = 5 r 5\r \n" ); document.write( "\n" ); document.write( "Therefore, 35 is the minimum number of cards possible. \n" ); document.write( " |