document.write( "Question 814082: I need help setting up these word problems: 1.) Adult tickets to a pay cost of $22. Tickets for children cost $15. Tickets for a graph of 11 people cost a total of $228. Write and solve a system of equations to find how many children and how many adults were in the group.\r
\n" );
document.write( "\n" );
document.write( "2.) A school is planning a field trip for 142 people. The trip will use six drivers and two types of vehicles: buses and vans. A bus can seat 51 passengers. A van can seat 10 passengers. Write and solve a system of equations to find how many buses and vans will be needed.\r
\n" );
document.write( "\n" );
document.write( "3.)In talent show of singing and comedy acts, singing acts are 5 minutes long and comedy acts are 3 minutes long. The show has 12 acts and lasts 50 minutes. How many singing acts and how many comedy acts are in the show? \n" );
document.write( "
Algebra.Com's Answer #490320 by ankor@dixie-net.com(22740) You can put this solution on YOUR website! 1.) Adult tickets to a pay cost of $22. \n" ); document.write( " Tickets for children cost $15. Tickets for a group of 11 people cost a total of $228. \n" ); document.write( " Write and solve a system of equations to find how many children and how many adults were in the group. \n" ); document.write( "let a = no. of adults \n" ); document.write( "let c = no. of children \n" ); document.write( "Two equations \n" ); document.write( "a + c = 11 \n" ); document.write( "a = (11-c), use this form for substitution \n" ); document.write( "and \n" ); document.write( "22a + 15c = 228 \n" ); document.write( ": \n" ); document.write( "2.) A school is planning a field trip for 142 people. \n" ); document.write( " The trip will use six drivers and two types of vehicles: buses and vans \n" ); document.write( ". A bus can seat 51 passengers. A van can seat 10 passengers. \n" ); document.write( " Write and solve a system of equations to find how many buses and vans will be needed. \n" ); document.write( "b = no. of buses \n" ); document.write( "v = no. of vans \n" ); document.write( "Two equations \n" ); document.write( "b + v = 6 \n" ); document.write( "v = (6-b) \n" ); document.write( "and \n" ); document.write( "51b + 10v = 142 \n" ); document.write( ": \n" ); document.write( "3.)In talent show of singing and comedy acts, \n" ); document.write( " singing acts are 5 minutes long and comedy acts are 3 minutes long. \n" ); document.write( " The show has 12 acts and lasts 50 minutes. \n" ); document.write( " How many singing acts and how many comedy acts are in the show? \n" ); document.write( "let s = no. of singing acts \n" ); document.write( "let c = no. comedies \n" ); document.write( "Two equations \n" ); document.write( "s + c = 12 \n" ); document.write( "c = (12-s) \n" ); document.write( "and \n" ); document.write( "5s + 3c = 50 \n" ); document.write( " |