Banner 0
Banner 1
Banner 2
Banner 3
Banner 4
Banner 5
Banner 6
Book Online Demo
Try Test

Algebra of Matrix

By rohit.pandey1

|

Updated on 17 Jul 2025, 18:32 IST

Matrices play an essential role in various fields of mathematics, engineering, physics, and computer science. The algebra of matrices involves operations like addition, subtraction, multiplication, determinant calculation, and transposition. Understanding these operations and their properties helps in solving linear equations, performing transformations, and analyzing data structures.

What is Algebra of Matrices?

Algebra of matrices refers to the set of operations that can be performed on matrices while following specific mathematical rules. These operations include:

Fill out the form for expert academic guidance
+91
  • Addition and subtraction
  • Scalar and matrix multiplication
  • Transposition
  • Determinants
  • Symmetric and skew-symmetric matrices

Addition of Matrices

Matrix addition is defined only for matrices of the same order. If A and B are two matrices of order m × n, their sum C = A + B is obtained by adding corresponding elements:

The necessary and sufficient condition for matrix addition is that all involved matrices must have the same number of rows and columns. The resulting matrix retains the same order as the original matrices.

Unlock the full solution & master the concept
Get a detailed solution and exclusive access to our masterclass to ensure you never miss a concept

Matrix addition of 2 × 2 Matrices

[a₁₁ a₁₂a₂₁ a₂₂] + [b₁₁ b₁₂b₂₁ b₂₂] = [a₁₁ + b₁₁ a₁₂ + b₁₂a₂₁ + b₂₁ a₂₂ + b₂₂]

Example:

A = [1 23 4],  B = [5 67 8]
A + B = [1 + 5 2 + 63 + 7 4 + 8] = [6 810 12]

Properties of Matrix Addition

  1. Commutative Property: A + B = B + A
  2. Associative Property: (A + B) + C = A + (B + C)
  3. Distributive Property: A × (B + C) = AB + AC
  4. Additive Identity: A + 0 = A
  5. Additive Inverse: A + (−A) = 0

Subtraction of Matrices

Matrix subtraction follows the same element-wise operation as addition but involves subtracting corresponding elements.

Matrix subtraction of 2 × 2 Matrices

[a₁₁ a₁₂a₂₁ a₂₂] − [b₁₁ b₁₂b₂₁ b₂₂] = [a₁₁ − b₁₁ a₁₂ − b₁₂a₂₁ − b₂₁ a₂₂ − b₂₂]

Example:

A = [1 23 4],  B = [5 67 8]
A − B = [1 − 5 2 − 63 − 7 4 − 8] = [−4 −4−4 −4]

Properties of Matrix Subtraction

  1. Non-Commutativity: A − B ≠ B − A
  2. Identity: A − 0 = A
  3. Associative: (A − B) − C ≠ A − (B + C)
  4. Distributive: A(B − C) = AB − AC
  5. Additive Inverse: A − A = 0

Multiplication of Matrices

The product of two matrices A (m × n) and B (n × p) results in C (m × p).

Algebra of Matrix

Loading PDF...

How to Multiply Two Matrices

Conditions: Number of columns in A must equal number of rows in B.

  1. Select a row from A
  2. Select a column from B
  3. Multiply corresponding elements and sum them
  4. Repeat for all rows and columns

Example:

A = [1 23 4],  B = [5 67 8]A × B = [(1×5 + 2×7) (1×6 + 2×8)(3×5 + 4×7) (3×6 + 4×8)] = [19 2243 50]

Scalar Multiplication of Matrices

Multiply each element of the matrix by a scalar.

Ready to Test Your Skills?
Check Your Performance Today with our Free Mock Tests used by Toppers!
Take Free Test

Example:

2 × [1 23 4] = [2 46 8]

Properties of Matrix Multiplication

  1. Non-Commutative: A × B ≠ B × A
  2. Associative: (A × B) × C = A × (B × C)
  3. Distributive: A × (B + C) = AB + AC
  4. Multiplicative Identity: A × I = A
  5. Multiplication by Zero: A × 0 = 0

Transpose of a Matrix

Swap rows and columns. Denoted as AT.

Example:

A = [1 23 4] ⇒ AT = [1 32 4]

Properties:

  1. (AT)T = A
  2. (A + B)T = AT + BT
  3. (AB)T = BTAT
  4. |AT| = |A|
  5. (xA)T = xAT

Negative of a Matrix

Each element is replaced by its negative. Equivalent to multiplying by -1. Denoted as −A.

cta3 image
create your own test
YOUR TOPIC, YOUR DIFFICULTY, YOUR PACE
start learning for free
If A = [a₁₁ a₁₂ a₁₃a₂₁ a₂₂ a₂₃a₃₁ a₃₂ a₃₃], then −A = [−a₁₁ −a₁₂ −a₁₃−a₂₁ −a₂₂ −a₂₃−a₃₁ −a₃₂ −a₃₃]

Properties:

  1. |−A| = |A|
  2. (−A)T = −AT

Determinant of a Matrix

Determinant is a scalar value useful in solving equations and invertibility. Denoted |A|.

For 2 × 2 Matrix:

A = [a bc d] ⇒ det(A) = ad − bc

For 3 × 3 Matrix:

A = [a b cd e fg h i] ⇒ det(A) = a(ei − fh) − b(di − fg) + c(dh − eg)

Symmetric and Skew-Symmetric Matrices

Symmetric Matrix

A is symmetric if AT = A

Skew-Symmetric Matrix

A is skew-symmetric if AT = −A

Condition: Diagonal elements must be zero.

Ready to Test Your Skills?
Check Your Performance Today with our Free Mock Tests used by Toppers!
Take Free Test

The algebra of matrices is fundamental in mathematical computations and real-world applications. Understanding matrix operations and their properties helps in solving complex problems in engineering, physics, and computer science.

Real-Time Applications of Algebra of Matrices

  • Computer Graphics: Used in 2D/3D transformations like scaling, rotation, and translation.
  • Cryptography: Used in encryption algorithms for secure communication.
  • Robotics & Automation: Used in robot motion planning and control systems.
  • Machine Learning & AI: Used for data representation and computations.
Related Maths Topic
Square Root of 120Upper Triangular Matrix
Roots of Quadratic EquationUnion of Sets
Value of Cos 120Symmetric Difference of Two Sets
Mutually Exclusive EventsTrigonometry Complementary Angles
Divisibility Rule of 8 
cta3 image
create your own test
YOUR TOPIC, YOUR DIFFICULTY, YOUR PACE
start learning for free

FAQs: Algebra of Matrix

What is matrix algebra?

Matrix algebra involves operations such as addition, subtraction, multiplication, and determinant calculation for matrices.

What are the properties of matrix addition?

Matrix addition follows commutative, associative, and identity properties.

Can all matrices be multiplied?

No, two matrices can be multiplied only if the number of columns in the first equals the number of rows in the second.

What is a determinant used for?

The determinant helps determine matrix invertibility and solve systems of linear equations.

What is the difference between symmetric and skew-symmetric matrices?

A symmetric matrix satisfies AT = A, while a skew-symmetric matrix satisfies AT = −A.