I have two Know matrices A and B and I am given the equation:
X + 2I (identity) = B + XA
What are the operations allowed here? I wish to get something like X = ... So I can calculate the known matrices and get my X. Anywhere I can find a tutorial on this type of operation? Im not sure what its called or how to perform them correctly.
Cheers
You can use the operations $+, -$ (componentwise over the elements of the matrices, assuming they have the same dimensions) multiplication with scalars (again componentwise) and the regular multiplication of matrices.
$$X + 2I = B + XA \Leftrightarrow XI + 2I = B + XA \Leftrightarrow XI - XA = B - 2I \Leftrightarrow X(I - A) = B - 2I$$
If the the matrix $(I - A)$ is invertible (i.e. its determinant is not $0$) then :
$$X = (B - 2I)(I - A)^{-1}$$