document.write( "Question 871126: a hicker walks 2 kilometers to the north,3 kilometers to the west,4 kilometers to the south,5 kilometers to the east,1 more kilometer to south and finally 2 kilometers west, how far did he end up ? from where he started ?
\n" );
document.write( "hint : what is resultant ? \n" );
document.write( "
Algebra.Com's Answer #525351 by Fombitz(32388) You can put this solution on YOUR website! The hiker starts at (0,0). \n" ); document.write( "Break up the walk into East-West (+x,-x) and North-South (+y,-y). \n" ); document.write( "East-West : -3+5-2=0 \n" ); document.write( "North-South : 2-4-1=-3 \n" ); document.write( "(0,0)+(0,-3)=(0,-3) \n" ); document.write( "He's 3 km south of where she started. \n" ); document.write( " |