document.write( "Question 950544: Find three consecutive positive odd intergers such that the sum of the squares of the first two integers is 15 less than the square of the third \n" ); document.write( "
Algebra.Com's Answer #580468 by jhaashok630(18)![]() ![]() ![]() You can put this solution on YOUR website! three consecutive positive odd intergers such that the sum of the squares of the first two integers is 15 less than the square of the third\r \n" ); document.write( "\n" ); document.write( "let x= first odd integer \n" ); document.write( " 2nd integer = x+2 \n" ); document.write( " 3rd integer = x+4\r \n" ); document.write( "\n" ); document.write( " x^2+(x+2)^2=(x+4)^2-15\r \n" ); document.write( "\n" ); document.write( " x=1 , 3 , 5 \n" ); document.write( " |