\text{Given the system:}
\begin{aligned}
ax + by &= d_1 \
ux + vy &= d_2
\end{aligned}
\text{Define:} \quad
\Delta =
\begin{vmatrix}
a & b \
u & v
\end{vmatrix}, \quad
\Delta_1 =
\begin{vmatrix}
d_1 & b \
d_2 & v
\end{vmatrix}, \quad
\Delta_2 =
\begin{vmatrix}
a & d_1 \
u & d_2
\end{vmatrix}
\text{By Cramer's Rule:} \quad
x = \frac{\Delta_1}{\Delta}, \quad y = \frac{\Delta_2}{\Delta}
\text{Hence:} \quad
\Delta_1 = x \cdot \Delta, \quad \Delta_2 = y \cdot \Delta
\textbf{Conditions:}
\begin{itemize}
\item If (\Delta \ne 0), the system has a unique solution.
\item If (\Delta = 0) and (\Delta_1 = \Delta_2 = 0), the system has infinitely many solutions (coincident lines).
\item If (\Delta = 0) but (\Delta_1 \ne 0) or (\Delta_2 \ne 0), the system is inconsistent (parallel lines).
\end{itemize}