Where the equation of two circle: ${X_a}^2 + (y_a - p)^2 = {r_a}^2$
${X_b}^2 + (y_b - p)^2 = {r_b}^2$
I want to know how to get $(X_c, Y_c)$.
If you take the two equations, set them both equal to zero. $$X_a^2+(y_a−p)^2-r_a^2=0$$ $$X_b^2+(y_b−p)^2-r_b^2=0$$ Then subtract them from one another you will get a linear equation which passes through both intersection points. You can then set that equal to one of the circle equations to get a quadratic for the intersections.
This is still a system of equations. $$\begin{cases} (x-h_1)^2+(y-k_1)^2=r_1^2\\ (x-h_2)^2+(y-k_2)^2=r_2^2 \end{cases}$$ If you expand it out and subtract them from each other, you can get a linear equation. You can then solve that linear equation for one variable and substitute it into either of the equations, and you end up with a quadratic that you can solve with the quadratic method.
Hint: Let $(0,0)$ be the center of the first circle. So we need to solve system of two equations: $$ \left\{ \begin{array}{c} x^2+y^2=r_1^2 \\ (x-x_2)^2+(y-y_2)^2 = r_2^2 \\ \end{array} \right. $$ Subtract the second equation from the first: $$ \left\{ \begin{array}{c} x^2+y^2=r_1^2 \\ -2x_2x - 2y_2y + (x_2^2+y_2^2+r_1^2-r_2^2) = 0\\ \end{array} \right. $$ Thus, we need to calculate intersection of the first circle and the line $Ax+By+C=0$ where $A = -2x_2, B = -2y_2 , C = x_2^2+y_2^2+r_1^2-r_2^2$