document.write( "Question 271092: find all points with an x-coordinate of 6 that are 5 units from (3,3). \n" ); document.write( "
Algebra.Com's Answer #198551 by Greenfinch(383) You can put this solution on YOUR website! Equation is (x - 3)^2 + (y - 3)^2 = 25 \n" ); document.write( "To solve for x = +-6 \n" ); document.write( "for +6 9 + y^2 - 6y + 9 = 25 \n" ); document.write( "y^2 - 6y - 7 = 0 \n" ); document.write( "(y - 7)(y + 1)=0 \n" ); document.write( "y = 7 or -1 \n" ); document.write( "Co ords are thus (6,-1), (6,7) \n" ); document.write( " |