If I add a scalar to every element of a matrix, e.g. for a 2×2 matrix
(a11a12a21a22)+b?=(a11+ba12+ba21+ba22+b),
with b a scalar, then what is the correct notation? Matrix addition and subtraction are only defined for matrices of the same size. However, it seems tedious to first multiply b with a matrix of ones to have two same-sized matrices to add:
J2=(1111).
Thus to write:
(a11a12a21a22)+bJ2=(a11+ba12+ba21+ba22+b).
Do you always write A+bJd (with d the dimensions of A)? Another notation would be A+b (bold b), implying a matrix of the size of A. However, this notation is also used for the multiplication of b with the identity matrix, bId, which is different and therefore confusing.
Why is the addition of a scalar to a matrix not simply defined like scalar multiplication, i.e. an operation of every matrix element? An example where this is permitted is the MATLAB language, where you can add a scalar to a matrix A simply by addition: e.g. A+3
. I feel this is a logical choice. Addition of a scalar to a matrix could be defined as A+b=A+bJd, with d the dimensions of A. This is commutative and associative, just like regular matrix addition. Then A+b would be the addition of A and bId and A+B the matrix addition as we know it, only valid for matrices of the same dimensions. Why aren't these the definitions?
No comments:
Post a Comment