document.write( "Question 463625: adult tickets sold for 5 dollars
\n" );
document.write( "student tickets sold for 2 dollars
\n" );
document.write( "a total of 16 tickets were sold and a total of 62 dollars was colleceted
\n" );
document.write( "let x = # of adult tickets
\n" );
document.write( "let Y = # of student tickets
\n" );
document.write( "write a linear system that represents this situation \n" );
document.write( "
Algebra.Com's Answer #317597 by aliateach(10) ![]() You can put this solution on YOUR website! let x = number of adult tickets sold \n" ); document.write( "let y = number of student ticket sold\r \n" ); document.write( "\n" ); document.write( "x+ y = 16 \n" ); document.write( "5x+2y = 62 \n" ); document.write( " |