document.write( "Question 647616: Find two numbers whose difference is 4 and the difference of their squares is 88. \n" ); document.write( "
Algebra.Com's Answer #407153 by lwsshak3(11628)![]() ![]() ![]() You can put this solution on YOUR website! Find two numbers whose difference is 4 and the difference of their squares is 88. \n" ); document.write( "** \n" ); document.write( "let x=one of 2 numbers \n" ); document.write( "let y=other number \n" ); document.write( ".. \n" ); document.write( "x-y=4 \n" ); document.write( "x=y+4 \n" ); document.write( ".. \n" ); document.write( "x^2-y^2=88 \n" ); document.write( "(y+4)^2-y^2=88 \n" ); document.write( "y^2+8y+16-y^2=88 \n" ); document.write( "8y=88-16=72 \n" ); document.write( "y=72/8=9 \n" ); document.write( "x=y+4=13 \n" ); document.write( "numbers are: 9 and 13 \n" ); document.write( " |