Additive Inverse of a Matrix — Definition & Examples
Additive Inverse of a Matrix
The matrix obtained by changing the sign of every matrix element. The additive inverse of matrix A is written –A.
Note: The sum of a matrix and its additive inverse is the zero matrix.
\[A = \left[ {\begin{array}{*{20}{c}}2&{ - 5}&4\\1&0&{ - 11}\end{array}} \right]\] \[ - A = \left[ {\begin{array}{*{20}{c}}{ - 2}&5&{ - 4}\\{ - 1}&0&{11}\end{array}} \right]\]
See also
Key Formula
A+(−A)=O
Where:
- A = Any matrix of size m × n
- −A = The additive inverse of A, formed by negating every element of A
- O = The zero matrix of the same size m × n (all elements are 0)
Worked Example
Problem: Find the additive inverse of the matrix A and verify that A + (−A) equals the zero matrix.
A = [[3, −7], [−1, 5]]
Step 1: Write down the original matrix A.
A=[3−1−75]
Step 2: Negate every element to form −A. Positive values become negative, negative values become positive.
−A=[−317−5]
Step 3: Add A and −A by adding corresponding elements.
A+(−A)=[3+(−3)−1+1−7+75+(−5)]=[0000]
Step 4: Confirm the result is the 2 × 2 zero matrix, verifying our answer.
A+(−A)=O
Answer: The additive inverse is −A = [[-3, 7], [1, -5]], and A + (−A) equals the zero matrix.
Another Example
This example uses a larger 3 × 3 matrix and includes zero elements to show that the additive inverse of 0 is still 0.
Problem: Find the additive inverse of the 3 × 3 matrix B.
B = [[0, −4, 2], [6, 0, −1], [−3, 8, 0]]
Step 1: Write down the original matrix B.
B=06−3−4082−10
Step 2: Negate every element. Note that the negation of 0 is still 0.
−B=0−6340−8−210
Step 3: Verify by adding B and −B element by element.
B+(−B)=000000000=O
Answer: The additive inverse is −B = [[0, 4, −2], [−6, 0, 1], [3, −8, 0]].
Frequently Asked Questions
What is the difference between the additive inverse and the multiplicative inverse of a matrix?
The additive inverse of A is −A, found by negating every element; adding it to A gives the zero matrix. The multiplicative inverse (also called the inverse matrix, written A⁻¹) is the matrix such that A · A⁻¹ = I, the identity matrix. Not every matrix has a multiplicative inverse, but every matrix has an additive inverse.
Does the additive inverse of a matrix always exist?
Yes. Every matrix, regardless of its size or the values of its elements, has an additive inverse. You simply negate each element. This is guaranteed because every real number has an additive inverse.
How is finding the additive inverse of a matrix related to matrix subtraction?
Matrix subtraction is defined as adding the additive inverse: A − B = A + (−B). So when you subtract one matrix from another, you are really negating the second matrix and then performing matrix addition.
Additive Inverse (−A) vs. Multiplicative Inverse (A⁻¹)
| Additive Inverse (−A) | Multiplicative Inverse (A⁻¹) | |
|---|---|---|
| Definition | Matrix with every element negated | Matrix such that A · A⁻¹ = I (identity matrix) |
| Formula | A + (−A) = O (zero matrix) | A · A⁻¹ = A⁻¹ · A = I |
| Always exists? | Yes, for every matrix of any size | No — only for square matrices with nonzero determinant |
| How to find it | Negate each element | Use row reduction, cofactors, or a formula (e.g., for 2×2 matrices) |
| Result when combined with A | Zero matrix O | Identity matrix I |
Why It Matters
The additive inverse is fundamental to matrix subtraction, which is defined as A − B = A + (−B). You encounter it frequently when solving systems of linear equations using matrix methods, such as Gaussian elimination, where you add a negated row to another row. Understanding this concept also reinforces the algebraic structure of matrices, which carries into linear algebra courses in college.
Common Mistakes
Mistake: Forgetting to negate zero elements, or changing 0 to some other value.
Correction: The negation of 0 is 0. When forming −A, every element is negated, and −0 = 0, so zeros stay as zeros.
Mistake: Confusing the additive inverse (−A) with the multiplicative inverse (A⁻¹).
Correction: These are completely different operations. The additive inverse just negates each entry and always exists. The multiplicative inverse involves finding a matrix that multiplies with A to produce the identity matrix, and it may not exist.
Related Terms
- Matrix — The object whose inverse is being found
- Element of a Matrix — Each element is negated to form −A
- Matrix Addition — Used to verify A + (−A) = O
- Zero Matrix — The result of adding A and −A
- Sum — Sum of a matrix and its additive inverse is zero
- Inverse of a Matrix — The multiplicative inverse, a different concept
- Identity Matrix — Plays the role for multiplication that zero matrix plays for addition
- Additive Inverse — The scalar version of this same concept
