The straight line $3x + 4y + 5 = 0 $ and $4x - 3y - 10 = 0$ intersect at point $A$. Point $B$ on line $3x + 4y + 5 = 0 $ and point C on line $4x - 3y - 10 = 0$ are such that $d(A,B)=d(A,C)$.
Find the equation of line passing through line $\overline{BC}$ if it also passes through point $(1,2)$.
I have found out slope of both the lines through $A$: $\frac{-3}{4}$ and $\frac{4}{3}$.
I can't figure out how to solve it.
Intersection point $A$ has coordinates $(1, -2)$. The first line equation can be written as $y = -\frac34x - \frac54$, the second: $y = \frac43x-\frac{10}{3}$, so $k_1 = -\frac34, k_2 = \frac43$.
$AB$ would lie on the first line if $y_B - y_A = k_1(x_B - x_A)$.
$AC$ would lie on the second line if $y_C - y_A = k_2(x_C - x_A)$.
This gives us $y_B = -\frac34x_B - \frac54$, $y_C = \frac43x_C - \frac{10}{3}$. $AB = AC$ means that $\sqrt{(x_B - x_A)^2 + (y_B - y_A)^2} = \sqrt{(x_C - x_A)^2 + (y_C - y_A)^2}$, so $\sqrt{(x_B - 1)^2 + (y_B + 2)^2} = \sqrt{(x_C - 1)^2 + (y_C + 2)^2}$
Let $y = k_3x + b_3$ be the equation of line containing $BC$. If it passes through $D = (1,2)$, then it means that it contains segments $BD$ and $CD$, so $k_3 = \frac{y_B - y_D}{x_B - x_D} = \frac{y_D - y_C}{x_D - x_C}$ (as $D$ lies between $B$ and $C$), so his gives the last equation: $\frac{y_B - 2}{x_B - 1} = \frac{2 - y_C}{1 - x_C}$.
Finally, you have to solve the following system:
\begin{cases} y_B = -\frac34x_B - \frac54 \\ y_C = \frac43x_C - \frac{10}{3} \\ \sqrt{(x_B - 1)^2 + (y_B + 2)^2} = \sqrt{(x_C - 1)^2 + (y_C + 2)^2} \\ \frac{y_B - 2}{x_B - 1} = \frac{2 - y_C}{1 - x_C} \end{cases}
Its solution gives you coordinates of $B$ and $C$ from which you can obtain the line equation.