\n" );
document.write( "Hi
\n" );
document.write( "My recommendation would be to follow the following steps:
\n" );
document.write( "I.Defining the variable(s), might recommend using x for consistency
\n" );
document.write( " majority of problems can be written in terms of one variable,
\n" );
document.write( " Some require two variables and two equations, rare to see them here.
\n" );
document.write( "II.Stating the Question Algebraically
\n" );
document.write( "III.Solving for x
\n" );
document.write( "IV.CHECKING the Answer***\r
\n" );
document.write( "\n" );
document.write( "Example: a movie was was attended by 212 people.
\n" );
document.write( "Children's tickets were $4 and adult tickets were $8. If the amount from
\n" );
document.write( " tickets sales was $1448, how many children and how many adults attended?\r
\n" );
document.write( "\n" );
document.write( "I.Let x and (212-x) represent the number of adult and children's tickets respectively
\n" );
document.write( "II.Question states***
\n" );
document.write( " 8x + 4(212-x) = 1448
\n" );
document.write( "III.Solving for x
\n" );
document.write( " 4x = 600
\n" );
document.write( " x = 150, number of adult tickets. 62 children's tickets. (212-150)
\n" );
document.write( "
\n" );
document.write( "Iv.CHECKING our Answer***
\n" );
document.write( " $8*150 + $4*62 = $1200 + $248 = $1448
\n" );
document.write( "
\n" );
document.write( "