Posted by Jeff on Thursday, November 25, 2010 at 10:09pm.
From the brackets, it is not clear if the "matrix" has one single row or two rows.
Brackets are usually used to delimit a row
If it has two rows, then you could write it as
2 -3 7
1 0 4
or
[2 -3 7]
[1 0 4]
If it has only one row, it would be written as
[2 -3 7 1 0 4]
In any case, an additive inverse is a matrix of the same "shape", i.e. containing the same number of rows and columns, that when added to the given matrix, results in zero.
In other words, the additive inverse of matrix A is -A.
For example,
The additive inverse of
[ 2 3 4]
is
[ -2 -3 -4 ]
because
[2 3 4]+[-2 -3 -4] = [0 0 0]
Related Questions
algebra - When i have a matrix 4 X 4 and i have to multiply it by a 4 X 3 i know...
MATHS----Matrix - For a given square matrix A the predicted values of matrix B ...
Algebra II-Please check calcs - Could someone check this matrix calculation The ...
Math - Mark each of the following True or False. ___ a. All vectors in an ...
linear algebra - 1)If A is an invertible matrix and k is a positive integer, ...
Math - A message was encoded using the matrix [7 2 3 1] and you can decode the ...
Matrix - Let A be an invertible n x n matrix, and let B be an n x p matrix. ...
Linear Algebra - (a) Show that if A is an m x n matrix and A(BA) is defined, ...
Algebra II (Matrices) - My book doesn't solve it like a linear equation, ...
math - Solve the following system of linear equations using the matrix inverse ...
For Further Reading