Supriya Ghosh (Editor)

Matrix addition

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In mathematics, matrix addition is the operation of adding two matrices by adding the corresponding entries together. However, there are other operations which could also be considered as a kind of addition for matrices, the direct sum and the Kronecker sum.

Contents

Entrywise sum

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

A + B = [ a 11 a 12 a 1 n a 21 a 22 a 2 n a m 1 a m 2 a m n ] + [ b 11 b 12 b 1 n b 21 b 22 b 2 n b m 1 b m 2 b m n ] = [ a 11 + b 11 a 12 + b 12 a 1 n + b 1 n a 21 + b 21 a 22 + b 22 a 2 n + b 2 n a m 1 + b m 1 a m 2 + b m 2 a m n + b m n ]

For example:

[ 1 3 1 0 1 2 ] + [ 0 0 7 5 2 1 ] = [ 1 + 0 3 + 0 1 + 7 0 + 5 1 + 2 2 + 1 ] = [ 1 3 8 5 3 3 ]

We can also subtract one matrix from another, as long as they have the same dimensions. AB is computed by subtracting corresponding elements of A and B, and has the same dimensions as A and B. For example:

[ 1 3 1 0 1 2 ] [ 0 0 7 5 2 1 ] = [ 1 0 3 0 1 7 0 5 1 2 2 1 ] = [ 1 3 6 5 1 1 ]

Direct sum

Another operation, which is used less often, is the direct sum (denoted by ⊕). Note 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

A B = [ A 0 0 B ] = [ a 11 a 1 n 0 0 a m 1 a m n 0 0 0 0 b 11 b 1 q 0 0 b p 1 b p q ]

For instance,

[ 1 3 2 2 3 1 ] [ 1 6 0 1 ] = [ 1 3 2 0 0 2 3 1 0 0 0 0 0 1 6 0 0 0 0 1 ]

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:

i = 1 n A i = d i a g ( A 1 , A 2 , A 3 A n ) = [ A 1 0 0 0 A 2 0 0 0 A n ]

where the zeros are actually blocks of zeros, i.e. zero matricies.

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 I k denotes the k-by-k identity matrix then the Kronecker sum is defined by:

A B = A I m + I n B .

References

Matrix addition Wikipedia