I am given a task to give an example of a singular matrix, for a 2x2 is very simple to try out some combinations of numbers to eventually get a determinant=0. But I find it a time consuming to go by trial and error for a 3x3 matrix.
Criteria:
- No zero entries
- No rows are multiple of other rows
What I know:
- Formula to find determinant of 3x3 matrix.
- Zero determinant means Singular matrix.
How about the zero matrix?
How about the matrix $$\begin{pmatrix} 1&0&0\\0&1&0\\0&0&0\end{pmatrix}?$$
Or any matrix with a row of zeros.
More generally, a matrix will be singular if its rows or columns are linearly dependent. So choose any two rows you want, and then choose some multiples of each and add them together to get the third row. This will give a less obvious singular matrix.
For example, suppose I choose $(1, 2, 3)$ and $(1, -2, 2)$ as my first two rows, and then subtract them for the third. This gives
$$\begin{pmatrix}1&2&3 \\ 1&-2&3 \\ 0 & 4 & 1 \end{pmatrix},$$
which is perhaps less obviously singular.