Matrix addition

From HandWiki
Illustration of the addition of two matrices.
Short description: Notions of sums for matrices in linear algebra

In mathematics, matrix addition is the operation of adding two matrices by adding the corresponding entries together.

For a vector, v→, adding two matrices would have the geometric effect of applying each matrix transformation separately onto v→, then adding the transformed vectors.

𝐀v→+𝐁v→=(𝐀+𝐁)v→

However, there are other operations that could also be considered addition for matrices, such as the direct sum and the Kronecker sum.

Entrywise sum

Two matrices must have an equal number of rows and columns to be added.[1] In which case, the sum of two matrices A and B will be a matrix which has the same number of rows and columns as A and B. The sum of A and B, denoted A + B, is computed by adding corresponding elements of A and B:[2][3]

𝐀+𝐁=[a11a12a1na21a22a2nam1am2amn]+[b11b12b1nb21b22b2nbm1bm2bmn]=[a11+b11a12+b12a1n+b1na21+b21a22+b22a2n+b2nam1+bm1am2+bm2amn+bmn]

Or more concisely (assuming that A + B = C):[4][5]

cij=aij+bij

For example:

[131012]+[007521]=[1+03+01+70+51+22+1]=[138533]

Similarly, it is also possible to subtract one matrix from another, as long as they have the same dimensions. The difference of A and B, denoted AB, is computed by subtracting elements of B from corresponding elements of A, and has the same dimensions as A and B. For example:

[131012][007521]=[103017051221]=[136511]

Direct sum

Another operation, which is used less often, is the direct sum (denoted by āŠ•). The Kronecker sum is also denoted āŠ•; the context should make the usage clear. The direct sum of any pair of matrices A of size m × n and B of size p × q is a matrix of size (m + p) × (n + q) defined as:[6][2]

𝐀𝐁=[𝐀00𝐁]=[a11a1n00am1amn0000b11b1q00bp1bpq]

For instance,

[132231][1601]=[13200231000001600001]

The direct sum of matrices is a special type of block matrix. In particular, the direct sum of square matrices is a block diagonal matrix.

The adjacency matrix of the union of disjoint graphs (or multigraphs) is the direct sum of their adjacency matrices. Any element in the direct sum of two vector spaces of matrices can be represented as a direct sum of two matrices.

In general, the direct sum of n matrices is:[2]

i=1n𝐀i=diag(𝐀1,𝐀2,𝐀3,,𝐀n)=[𝐀1000𝐀2000𝐀n]

where the zeros are actually blocks of zeros (i.e., zero matrices).

Kronecker sum

The Kronecker sum is different from the direct sum, but is also denoted by āŠ•. It is defined using the Kronecker product āŠ— and normal matrix addition. If A is n-by-n, B is m-by-m and 𝐈k denotes the k-by-k identity matrix then the Kronecker sum is defined by:

𝐀𝐁=𝐀𝐈m+𝐈n𝐁.

See also

Notes

References