1. Matrix Operations
Transpose (AT): Interchanging rows and columns. If A =
a b
c d
c d
a c
b d
b d
Multiplication (AB): Multiply row of A by column of B. Ensure ColsA = RowsB. Note: AB ≠ BA.
Transpose (AT): Interchanging rows and columns. If A =
Multiplication (AB): Multiply row of A by column of B. Ensure ColsA = RowsB. Note: AB ≠ BA.
Inverse Formula: A-1 = (1 / |A|) *
For the system: a1x + b1y = c1 and a2x + b2y = c2
A direct approach using determinant ratios. Avoids the inverse matrix entirely.
Transforms the system into the equation AX = B.