Lets consider 2x2 integer matrix with determinant equal 1: $$\left( \begin{array}{cc} a & b \\ c & d \\ \end{array} \right)$$
I am working on the following:
How to extend this to 3x3 matrix in order to get another matrix with determinant 1: $$\left( \begin{array}{ccc} a & b & e \\ c & d & f \\ i & h & g \\ \end{array} \right)$$
And also is there any $a,b,c,d$ for which this extension is unique. I even have no idea how to start solving this. I have discovered the following so far on the web, but not sure how to use this:
Integer matrices with determinant equal to $1$
EDITED:
Actually I am looking for general algorithm, how to construct all 3x3 matricies from 2x2 matrix with determinant 1.
EDITED 2:
Some samples of such matricies:
$$\left( \begin{array}{ccc} 1 & 1 & 1 \\ -1 & 0 & 1 \\ -1 & 0 & 2 \\ \end{array} \right) $$
$$\left( \begin{array}{ccc} 1 & 1 & 1 \\ 1 & 2 & 3 \\ 2 & 5 & 9 \\ \end{array} \right)$$
$$\left( \begin{array}{ccc} 1 & 1 & 1 \\ -6 & -5 & -4 \\ 9 & 5 & 2 \\ \end{array} \right) $$