I have some doubt with the existence of solution of system of 3 linear equations.
Representing $$\begin{cases} a_1x+b_1y+c_1z=d_1 \\ a_2x+b_2y+c_2z=d_2 \\ a_3x+b_3y+c_3z=d_3 \end{cases} $$
by the matrix $AX = B$. where $A$ is $3\times 3$ coefficient matrix, $X$ is $3\times 1$ variable matrix and $B$ is $3\times 1$ matrix having $d_1,d_2,d_3$.
Solution is given by $X = A^{-1}B = \frac{adj(A)\times B}{det(A)}$
Now what happens when $A$ is singular matrix $(det(A) = 0)$ and $adj(A) B = O$ (Null matrix)?
All questions where this occurs which I have solved to date have infinitely many solutions?
However my textbook states there maybe no solution or infinite solutions. (And there is a similar result in Cramer's rule as well)
Is my textbook correct? And if it is, can anybody give an example of no solution case?