top of page
Inaugurated by IN-SPACe
ISRO Registered Space Tutor

S7-SA2-0094

What is the Distributive Property of Matrix Multiplication?

Grade Level:

Class 12

AI/ML, Physics, Biotechnology, FinTech, EVs, Space Technology, Climate Science, Blockchain, Medicine, Engineering, Law, Economics

Definition
What is it?

The Distributive Property of Matrix Multiplication is like sharing. It means that if you multiply a matrix by the sum of two other matrices, you get the same result as multiplying the first matrix by each of the other two separately and then adding their products. So, A * (B + C) is equal to (A * B) + (A * C).

Simple Example
Quick Example

Imagine you are buying snacks for two friends. Each friend wants a samosa and a chai. Instead of buying a samosa for friend 1, then a chai for friend 1, then a samosa for friend 2, then a chai for friend 2, you can just decide to buy two samosas and two chais. This is similar to distributing the 'buying' action over the 'samosa' and 'chai' items. In matrices, 'buying' is like multiplying, and 'samosa' and 'chai' are like the matrices you are adding.

Worked Example
Step-by-Step

Let A = [[1, 2], [3, 4]], B = [[5, 6], [7, 8]], and C = [[1, 0], [0, 1]]. We will show A * (B + C) = (A * B) + (A * C).

Step 1: Calculate B + C.
B + C = [[5, 6], [7, 8]] + [[1, 0], [0, 1]] = [[5+1, 6+0], [7+0, 8+1]] = [[6, 6], [7, 9]]

---

Step 2: Calculate A * (B + C).
A * (B + C) = [[1, 2], [3, 4]] * [[6, 6], [7, 9]]
= [[(1*6)+(2*7), (1*6)+(2*9)], [(3*6)+(4*7), (3*6)+(4*9)]]
= [[6+14, 6+18], [18+28, 18+36]]
= [[20, 24], [46, 54]]

---

Step 3: Calculate A * B.
A * B = [[1, 2], [3, 4]] * [[5, 6], [7, 8]]
= [[(1*5)+(2*7), (1*6)+(2*8)], [(3*5)+(4*7), (3*6)+(4*8)]]
= [[5+14, 6+16], [15+28, 18+32]]
= [[19, 22], [43, 50]]

---

Step 4: Calculate A * C.
A * C = [[1, 2], [3, 4]] * [[1, 0], [0, 1]]
= [[(1*1)+(2*0), (1*0)+(2*1)], [(3*1)+(4*0), (3*0)+(4*1)]]
= [[1+0, 0+2], [3+0, 0+4]]
= [[1, 2], [3, 4]]

---

Step 5: Calculate (A * B) + (A * C).
(A * B) + (A * C) = [[19, 22], [43, 50]] + [[1, 2], [3, 4]]
= [[19+1, 22+2], [43+3, 50+4]]
= [[20, 24], [46, 54]]

---

Step 6: Compare the results from Step 2 and Step 5.
Both A * (B + C) and (A * B) + (A * C) equal [[20, 24], [46, 54]].
Thus, the Distributive Property is proven for this example.

Why It Matters

Understanding matrix properties like distribution is crucial for solving complex problems in many fields. Engineers use it to design structures and circuits, while data scientists in AI/ML use it to process large datasets and train intelligent systems. It helps create the technology we use every day, from mobile apps to space missions.

Common Mistakes

MISTAKE: Assuming matrix multiplication is commutative (A * B = B * A) and applying distribution like (B + C) * A = A * (B + C) | CORRECTION: Matrix multiplication is generally NOT commutative. Always maintain the order: A * (B + C) = A * B + A * C, and (B + C) * A = B * A + C * A. The multiplier must stay on the same side.

MISTAKE: Forgetting that the matrices must be compatible for addition and multiplication. | CORRECTION: For B + C, B and C must have the same dimensions. For A * (B + C), the number of columns in A must equal the number of rows in (B + C).

MISTAKE: Incorrectly performing matrix addition or multiplication steps. | CORRECTION: Double-check each step of matrix addition (element-wise) and matrix multiplication (row by column dot product) carefully to avoid calculation errors.

Practice Questions
Try It Yourself

QUESTION: Given P = [[2, 1], [0, 3]], Q = [[-1, 4], [2, 0]], R = [[3, -2], [1, 5]]. Verify P * (Q + R). | ANSWER: P * (Q + R) = [[10, 11], [9, 15]]

QUESTION: If A = [[1, 0], [0, 1]], B = [[x, y], [z, w]], and C = [[a, b], [c, d]]. Show that A * (B + C) = (A * B) + (A * C). | ANSWER: Since A is the identity matrix, A * X = X for any matrix X. So, A * (B + C) = B + C. Also, (A * B) + (A * C) = B + C. Hence, it is proven.

QUESTION: Let X = [[1, 2]], Y = [[3], [4]], Z = [[-1], [5]]. Can you verify X * (Y + Z) = (X * Y) + (X * Z)? Explain why or why not. | ANSWER: Yes, it can be verified. Y + Z = [[3+(-1)], [4+5]] = [[2], [9]]. X * (Y + Z) = [[1, 2]] * [[2], [9]] = [[(1*2)+(2*9)]] = [[2+18]] = [[20]]. X * Y = [[1, 2]] * [[3], [4]] = [[(1*3)+(2*4)]] = [[3+8]] = [[11]]. X * Z = [[1, 2]] * [[-1], [5]] = [[(1*-1)+(2*5)]] = [[-1+10]] = [[9]]. (X * Y) + (X * Z) = [[11]] + [[9]] = [[20]]. Since both sides equal [[20]], the property holds.

MCQ
Quick Quiz

Which of the following statements correctly represents the left distributive property of matrix multiplication?

A * (B + C) = (B + C) * A

A * (B + C) = (A * B) + (A * C)

A + (B * C) = (A + B) * (A + C)

A * (B + C) = (A + B) * C

The Correct Answer Is:

B

Option B correctly states the left distributive property: multiplying matrix A by the sum of B and C is the same as multiplying A by B and A by C separately, then adding the results. Options A, C, and D are incorrect applications or misstatements of matrix properties.

Real World Connection
In the Real World

In computer graphics, when you want to apply a transformation (like scaling or rotation, represented by matrix A) to multiple objects (represented by matrices B and C) in a 3D scene, the distributive property means you can either transform the combined objects or transform each object separately and then combine them. This principle helps optimize calculations in video games and animation software, making them run smoother.

Key Vocabulary
Key Terms

MATRIX: A rectangular arrangement of numbers, symbols, or expressions in rows and columns. | MULTIPLICATION: The process of combining two matrices to get a new matrix, following specific rules. | ADDITION: The process of combining two matrices by adding their corresponding elements. | DISTRIBUTIVE: The property where multiplying a sum by a number gives the same result as multiplying each addend by the number and then adding the products. | COMMUTATIVE: A property where changing the order of operands does not change the result (e.g., a + b = b + a). Matrix multiplication is generally not commutative.

What's Next
What to Learn Next

Now that you understand the distributive property, explore the 'Associative Property of Matrix Multiplication'. It will show you how grouping matrices for multiplication does not change the final product, which is another crucial rule for working with matrices efficiently.

bottom of page