document.write( "Question 653424: The second of three numbers is 4 times the first number. The third number is 5 less than the second. If the first number is doubled and decreased by the third number, and the result is the same as 23 more than the second number, what are the three numbers? \n" ); document.write( "
| Algebra.Com's Answer #408393 by VirtualMathTutor(26)     You can put this solution on YOUR website! let f be first number \n" ); document.write( "let s be second number \n" ); document.write( "let t be third number\r \n" ); document.write( "\n" ); document.write( "The second of three number is 4 times the first number: \n" ); document.write( "s = 4f\r \n" ); document.write( "\n" ); document.write( "The third number is 5 less than the second: \n" ); document.write( "t = s - 5\r \n" ); document.write( "\n" ); document.write( "If the first number is doubled and decreased by the third number and the result is the same as 23 more than the second number: \n" ); document.write( "2f - t = 23 + s\r \n" ); document.write( "\n" ); document.write( "Now that we have 3 equations, we can solve for f, s, and t:\r \n" ); document.write( "\n" ); document.write( "Input t = s - 5 into the third equation:\r \n" ); document.write( "\n" ); document.write( "2f - (s - 5) = 23 + s\r \n" ); document.write( "\n" ); document.write( "Now replace every s with 4f\r \n" ); document.write( "\n" ); document.write( "2f - (4f - 5) = 23 + 4f\r \n" ); document.write( "\n" ); document.write( "Simplify\r \n" ); document.write( "\n" ); document.write( "2f - 4f + 5 = 23 + 4f \n" ); document.write( "-2f + 5 = 23 + 4f\r \n" ); document.write( "\n" ); document.write( "subract 4f from both sides\r \n" ); document.write( "\n" ); document.write( "-2f + 5 - 4f = 23\r \n" ); document.write( "\n" ); document.write( "-6f + 5 = 23\r \n" ); document.write( "\n" ); document.write( "subtract 5 from both sides\r \n" ); document.write( "\n" ); document.write( "-6f = 18\r \n" ); document.write( "\n" ); document.write( "divide both sides by -6:\r \n" ); document.write( "\n" ); document.write( "f = -3\r \n" ); document.write( "\n" ); document.write( "since s = 4f, then s = 4(-3) = -12\r \n" ); document.write( "\n" ); document.write( "since t = s - 5, then t = -12 - 5 = -17 \n" ); document.write( " |