We have matrices. (Same matrices as in post earlier). You can find earlier post from here. $$A=\begin{bmatrix} -2 & 0 \\ -5 & 6 \\ \end{bmatrix}\\ B^{-1}=\begin{bmatrix} -7 & 8 \\ 2 & -8 \\ \end{bmatrix}\\ C=\begin{bmatrix} -15 & -2 \\ -8 & -14 \\ \end{bmatrix} $$
I would like to solve $X$ from this equation $$CX=-6X+I$$ $$CX+6X=I$$ $$X(C+6)=I$$ Multiplying both sides with $(C+6)^{-1}$ $$XI=I(C+6)^{-1}$$ $$X=(C+6)^{-1}$$ Is this correct ? $$X=(\begin{bmatrix} -15 & -2 \\ -8 & -14 \\ \end{bmatrix}+6)^{-1}$$ $$X=(\begin{bmatrix} -9 & -2 \\ -2 & -8 \\ \end{bmatrix})^-1$$ $$X=\begin{bmatrix} -\frac{2}{17} & \frac{1}{34} \\ \frac{1}{34} & -\frac{9}{68} \end{bmatrix}$$