Concept:
- If a second-degree equation represents a pair of straight lines, solving it as a quadratic in one variable must give an expression that is linear in the other variable, which means the term under the square root of the quadratic formula must be a perfect square trinomial.
- Once the unknown constant is found this way, factoring directly gives the equations of the two individual lines, and their point of intersection is simply the solution of those two linear equations solved together.
Step 1: Treat the given equation as a quadratic in $x$.
$x^2 - Ky^2 - 4x + 6y - 5 = 0$
$x^2 - 4x - (Ky^2 - 6y + 5) = 0$
$x = \dfrac{4 \pm \sqrt{16 + 4(Ky^2 - 6y + 5)}}{2} = 2 \pm \sqrt{Ky^2 - 6y + 9}$
Step 2: Force the expression under the square root to be a perfect square trinomial in $y$.
$Ky^2 - 6y + 9$ should match $(ay+b)^2 = a^2y^2 + 2aby + b^2$
Constant term: $b^2 = 9 \Rightarrow b = 3$
Middle term: $2ab = -6 \Rightarrow a = -1$
Leading term: $a^2 = K \Rightarrow K = 1$
Step 3: Substitute $K = 1$ and factor the square root term.
$Ky^2 - 6y + 9 = y^2 - 6y + 9 = (y-3)^2$
$x = 2 \pm (y - 3)$
Line 1: $x = y - 1$, i.e. $x - y + 1 = 0$
Line 2: $x = 5 - y$, i.e. $x + y - 5 = 0$
Step 4: Solve the two lines together to find their point of intersection.
$x - y + 1 = 0$ ... (i)
$x + y - 5 = 0$ ... (ii)
Adding (i) and (ii): $2x - 4 = 0 \Rightarrow x = 2$
Substituting into (ii): $2 + y - 5 = 0 \Rightarrow y = 3$
Final Answer: The point of intersection is $(2, 3)$