Algebraic Properties of Matrices

1. Properties of Matrix Arithmetic

Matrix arithmetic shares many rules with standard algebra, but there are crucial differences. Here are the core laws:

  • Commutative Law for Addition: A + B = B + A
  • Associative Law: A + (B + C) = (A + B) + C
    A(BC) = (AB)C
  • Distributive Law: A(B + C) = AB + AC

⚠️ THE GOLDEN RULE: Matrix multiplication is NOT Commutative. In almost all cases, AB ≠ BA.

2 & 3. Zero Matrices & Identity Matrices

In regular math, 0 is the additive identity (x + 0 = x) and 1 is the multiplicative identity (x * 1 = x). Matrices have equivalents!

  • The Zero Matrix (0): A matrix where every single element is 0. Adding it to a matrix changes nothing.
  • The Identity Matrix (I): A square matrix with 1s on the main diagonal and 0s everywhere else. Multiplying by it changes nothing.
2
-1
4
5
8
3
0
7
9
×
1
0
0
0
1
0
0
0
1
=
2
-1
4
5
8
3
0
7
9

4. Inverse of a Matrix

You cannot “divide” matrices. Instead, you multiply by an Inverse. If matrix A has an inverse (denoted A⁻¹), multiplying them together yields the Identity Matrix (I).

A × A⁻¹ = I     and     A⁻¹ × A = I

For a 2×2 matrix, finding the inverse is a simple 3-step dance:
1. Swap the elements on the main diagonal.
2. Flip the signs of the other two elements.
3. Divide everything by the Determinant (ad – bc).

4
7
2
6
1 / (4×6 – 7×2)
1/10
6
-7
-2
4

5, 6 & 7. Powers, Polynomials & Inverse Properties

Because matrix multiplication is valid, we can raise square matrices to powers (A², A³) and even plug them into polynomials. A few very important properties to remember:

1. (A⁻¹)⁻¹ = A
2. (AB)⁻¹ = B⁻¹A⁻¹ // Note the order reversal!
3. (Aᵀ)⁻¹ = (A⁻¹)ᵀ
4. A⁰ = I // Anything to the power of 0 is the Identity

8. Diagonal, Triangular & Symmetric Matrices

Square matrices often take on special shapes that make calculations (like finding determinants or inverses) drastically easier. Click the buttons below to visualize their unique geometric patterns.

1
2
3
4
5
6
7
8
9

References

  • Anton, H., & Rorres, C. Elementary Linear Algebra, 11th Edition (pp. 39-72).
error: