document.write( "Question 840903: the age of a man ten years ago was 35 years more than the twice the age of his son. After how many years from now will the man's age become twice his son's age? \n" ); document.write( "
Algebra.Com's Answer #506703 by ankor@dixie-net.com(22740)![]() ![]() You can put this solution on YOUR website! let m = man's present age \n" ); document.write( "let s = son's present age \n" ); document.write( ": \n" ); document.write( " the age of a man ten years ago was 35 years more than the twice the age of his son. \n" ); document.write( "m - 10 = 2(s-10) + 35 \n" ); document.write( "m - 10 = 2s - 20 + 35 \n" ); document.write( "m - 10 = 2s + 15 \n" ); document.write( "m = 2s + 15 + 10 \n" ); document.write( "m = 2s + 25 \n" ); document.write( ": \n" ); document.write( " After how many years from now will the man's age become twice his son's age? \n" ); document.write( "let y = no. of years for this to be true \n" ); document.write( "m + y = 2(s + y) \n" ); document.write( "m + y = 2s + 2y \n" ); document.write( "m = 2s + 2y - y \n" ); document.write( "m = 2s + y \n" ); document.write( "Look at the 1st equation, for this to be true; y = 25, right? \n" ); document.write( " |