#help with circles
17 messages · Page 1 of 1 (latest)
What the task
So I'm guessing it's asking you for the centre of the circle/radius of the circle. If so, you want to complete the square twice, once for the x and once for the y to make it into the form of (x-x_1)^2 + (y-y_1)^2 = r^2.
,tex $(x-x_1)^2 + (y-y_1)^2 = r^2$
AsianFailure
AsianFailure
,tex $16(x^2 + (1/2)x) + 16(y^2 - 2y) = 127$
AsianFailure
,tex $(x^2 + (1/2)x) + (y^2 - 2y) = 127/16$
AsianFailure
,tex $(x + (1/4))^2 - 1/16 + (y- 1)^2 - 1 = 127/16$
AsianFailure
,tex $(x + (1/4))^2 + (y- 1)^2 = 127/16 + 1/16 + 1$
AsianFailure