document.write( "Question 1160706: Over the last three evenings, Heather received a total of
\n" );
document.write( "69
\n" );
document.write( " phone calls at the call center. The third evening, she received
\n" );
document.write( "3
\n" );
document.write( " times as many calls as the second evening. The first evening, she received
\n" );
document.write( "6
\n" );
document.write( " fewer calls than the second evening. How many phone calls did she receive each evening?
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #784098 by ankor@dixie-net.com(22740) You can put this solution on YOUR website! Over the last three evenings, Heather received a total of 69 phone calls at the call center. \n" ); document.write( "let a = no. calls the 1st evening \n" ); document.write( "let b = no. calls the 2nd \n" ); document.write( "let c = no. calls the 3rd \n" ); document.write( "a + b + c = 69 \n" ); document.write( "The third evening, she received 3 times as many calls as the second evening. \n" ); document.write( "c = 3b \n" ); document.write( "The first evening, she received 6 fewer calls than the second evening. \n" ); document.write( "a = b-6 \n" ); document.write( ": \n" ); document.write( "in the first equation, replace a with (b-6), replace c with 3b \n" ); document.write( "(b-6) + b + 3b = 69 \n" ); document.write( "5b - 6 = 69 \n" ); document.write( "5b = 69 + 6 \n" ); document.write( "b = 75/5 \n" ); document.write( "b = 15 calls on the 2nd evening \n" ); document.write( ": \n" ); document.write( "I'll let you find a and c, ensure that they add up to 69\r \n" ); document.write( "\n" ); document.write( "How many phone calls did she receive each evening? \n" ); document.write( " |