What is matrix addition and subtraction? When two matrices have the same order, we can add or subtract them by adding or subtracting the corresponding elements (elements in the same position).
Addition: If A = [aᵢⱼ] and B = [bᵢⱼ] are both m × n matrices, then: A + B = [aᵢⱼ + bᵢⱼ]
Subtraction: A − B = [aᵢⱼ − bᵢⱼ]
What is scalar multiplication? Scalar multiplication means multiplying every element of a matrix by the same number (called a scalar). If k is a scalar and A = [aᵢⱼ], then: kA = [k × aᵢⱼ]
Properties of scalar multiplication:
- k(A + B) = kA + kB (distributive)
- (k + m)A = kA + mA (distributive)
- k(mA) = (km)A (associative)
- 1 × A = A (identity)
- 0 × A = Zero matrix
Real-life analogy: If matrix A represents the prices of items in two stores, and matrix B represents a price increase, then A + B gives the new prices. Scalar multiplication is like applying a 10% discount (multiply by 0.9) to all prices at once!