document.write( "Question 594474: The sum of two integers is 9 and their product is 18. What are the integers? \n" ); document.write( "
Algebra.Com's Answer #376758 by mamiya(56)![]() ![]() ![]() You can put this solution on YOUR website! let x and y be those integers. \n" ); document.write( " by understanding the question, we know that x*y=18 and x+y=9\r \n" ); document.write( "\n" ); document.write( "There are many ways to do this ( especially because 9 and 18 are small numbers).\r \n" ); document.write( "\n" ); document.write( " First, let's take one of the easiest ways \n" ); document.write( " we need to find two numbers whose sum is 9 , we have (1, 8) (2, 7) (3, 6) (4, 5) \n" ); document.write( " Now, we look for the pair of numbers whose product is 18. Among those pairs of numbers, the only one satisfying our need is (3, 6) so 3 and 6 are those integers. \n" ); document.write( " so, the answer is 3 and 6\r \n" ); document.write( "\n" ); document.write( " Second way: \n" ); document.write( " we need to find two numbers whose product is 18, we have (1, 18) (2, 9) (3, 6) \n" ); document.write( "Now, we look for the pair of numbers whose sum is 9. Among those pairs , the only one satisfying our need is (3, 6). \n" ); document.write( " so, the answer is 3 and 6\r \n" ); document.write( "\n" ); document.write( " Another way : \n" ); document.write( " x* y = 18, x+y = 9 \n" ); document.write( " consider x+y=9 and write one letter in term of the other one \n" ); document.write( " x+y=9 --> x = 9 - y \n" ); document.write( "now we plug that in the other equation \n" ); document.write( " x*y = 18 --> (9-y)y = 18 \n" ); document.write( " --> 9y - y^2 = 18 \n" ); document.write( " --> y^2 -9y + 18 = 0 \n" ); document.write( " y = ( 9 - sqrt(9^2 -4(18)))/2 \n" ); document.write( " = ( 9 -sqrt(81 -72))/2 \n" ); document.write( " = ( 9 -sqrt9)/2 \n" ); document.write( " = (9-3)/2 \n" ); document.write( " = 3 \n" ); document.write( "y = ( 9 + sqrt(9^2 -4(18)))/2 \n" ); document.write( " = ( 9 + sqrt(81 -72))/2 \n" ); document.write( " = ( 9+ sqrt9)/2 \n" ); document.write( " = (9+3)/2 \n" ); document.write( " = 6 \n" ); document.write( " With this approach the answer are still 3 and 6 \n" ); document.write( " |