Types: N/A
Examples: 9.4.1 Identity as Matrix Matrix Addition Example
Constructions: 9.5 Scalar-Matrix Multiplication
Generalizations: N/A

Properties: N/A
Sufficiencies: N/A
Questions: N/A

Matrix-Matrix Addition

If A and BRm×n are matrices with matching dimensions (same number of rows and columns), then the matrix sum A+B is the matrix obtained by adding the corresponding entries of A and B.

matrix sumik=aik+bik

An example of matrix-matrix addition with values in action:

[100020300]+[220001942]=[3200211242]

A more general example of adding matrices A+B would look like:

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