Compute $det(B^4)$, where $B = \begin{bmatrix} 1 & 0 & 1 \\ 1 & 1 & 2 \\ 1 & 2 & 1 \end{bmatrix} $
I created
$C=\begin{bmatrix} 1 & 2 \\ 1 & 1 \\ \end{bmatrix} $ and $ D= \begin{bmatrix} 1 & 1 \\ 1 & 2 \\ \end{bmatrix} $
$det(B) = -det(C) -2det(D) = -(1-2) - 2(2-1) = -(-1)-2(1)=1-2=1, 1^4=1$ However, the correct answer is 16. I'm confused on where I made my wrong turn
You have calculated det$(B) $ wrong - you just got the order of signs mixed up, when calculating the determinant by expanding into $ 2 \times 2 $ matrices.
It is det $(B) = 1 \begin{vmatrix} 1 & 2 \\ 2 & 1 \\ \end{vmatrix} - 0 \begin{vmatrix} 1 & 2 \\ 1 & 1 \\ \end{vmatrix} + 1 \begin{vmatrix} 1 & 1 \\ 1 & 2 \\ \end{vmatrix} $.
Hence det$(B) = 1 ( 1 - 4 ) - 0(1- 2 ) + 1 ( 2-1 ) = -3 + 1 = -2 $.
And it seems you used the formula det$(A^n) = ($det$(A)) ^ n $ which is correct and hence det$(B^4) = ($det$(B))^4 = ( -2 )^4 = 16 . $