document.write( "Question 101201: 2 passenger trains are traveling on the same track heading in opposite directions. the trains are currently 170 miles apart. the first train is going 9mph and the second train is going 8mph. in how many hours will these 2 trains meet and how far does each train travel? \n" ); document.write( "
Algebra.Com's Answer #73660 by Nate(3500)![]() ![]() ![]() You can put this solution on YOUR website! First train: \n" ); document.write( "rate = 9 \n" ); document.write( "time = t \n" ); document.write( "distance = 9t \n" ); document.write( "Second train: \n" ); document.write( "rate = 8 \n" ); document.write( "time = t \n" ); document.write( "distance = 8t \n" ); document.write( "They both must travel 170 miles in order to close the distance between the two: \n" ); document.write( "9t + 8t = 170 \n" ); document.write( "17t = 170 \n" ); document.write( "t = 10 hours \n" ); document.write( " |