I've read this already.
The definition of the determinant that is in this text I have is (for a $J \times J$ matrix $A = [A_{ij}]$): $$|A| = \sum_{j=1}^{J}A_{ij}C_{ij}$$ where $C_{ij}$ is the cofactor of the cell $A_{ij}$ of the matrix $A$. For a $1 \times 1$ matrix $A = [a]$, $|A| = a$.
Let's suppose $$A = \begin{bmatrix} a & b \\ c & d \end{bmatrix} = \begin{bmatrix} A_{11} & A_{12} \\ A_{21} & A_{22} \end{bmatrix}\text{.}$$ The minors $M_{ij}$ are $$\begin{align} M_{11} &= [d] \\ M_{12} &= [c] \\ M_{21} &= [b] \\ M_{22} &= [a]\text{.} \end{align}$$ The appropriate signs for the cofactors are $$\begin{bmatrix} + & - \\ - & + \end{bmatrix}$$ so $$\begin{align} C_{11} &= +|M_{11}| = d \\ C_{12} &= -|M_{12}| = - c \\ C_{21} &= -|M_{21}| = -b \\ C_{22} &= +|M_{22}| = a\text{.} \end{align}$$ Hence, $$|A| = ad-bc-bc+ad = 2(ad-bc)$$ which I know is obviously wrong - this should be just $ad - bc$. What did I do wrong here?