document.write( "Question 910302: The total travel time for a family to reach a campsite is 2 hours. They drive 81 miles and hike 2 miles.
\n" );
document.write( "If they drive 50 mph faster than they hike, what is their average driving speed?
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #552382 by Alan3354(69443)![]() ![]() You can put this solution on YOUR website! The total travel time for a family to reach a campsite is 2 hours. They drive 81 miles and hike 2 miles. \n" ); document.write( "If they drive 50 mph faster than they hike, what is their average driving speed? \n" ); document.write( "-----------------\r \n" ); document.write( "\n" ); document.write( "d = r*t \n" ); document.write( "t = d/r \n" ); document.write( "====== \n" ); document.write( "r = hiking speed \n" ); document.write( "2/r + 81/(r+50) = 2 \n" ); document.write( "2(r+50) + 81r = 2r*(r+50) = 2r^2 + 100r \n" ); document.write( "2r + 100 + 81r = 2r^2 + 100r \n" ); document.write( "2r^2 + 17r - 100 = 0 \n" ); document.write( "(r - 4)*(2r + 25) = 0 (Ignore the negative solution) \n" ); document.write( "r = 4 mi/hr \n" ); document.write( "Driving speed = 54 mi/hr \n" ); document.write( " |