How can I find the point on the circumference of the circle (A) that is intersected by the line from the center through a point inside the circle. Only the radius, center, and position of the point inside the circle is provided, not the angle.
2026-04-29 15:17:18.1777475838
Find point on circle given point inside circle
376 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2

Let $O(0,0)$ the centre of the circle. The equation of the circle is: $$x^2+y^2=150^2$$ And the equation of the line $OA$ is: $$y=\frac{60}{25}x=\frac{12}{5}x$$ To find the coord of the point $A$, you have to solve this system of two equations in two unknows: $$\left\{\begin{matrix} x^2+y^2=150^2 \\ y=\frac{12}{5}x \end{matrix}\right.$$ There are two different solutions: $A_0\left(-\frac{750}{13},-\frac{1800}{13}\right) \lor A_1\left(\frac{750}{13},\frac{1800}{13}\right)$.