Matrix Addition Calculator

    Add and subtract 2x2 matrices

    Formula

    C[i,j] = A[i,j] + B[i,j]

    Add corresponding elements of two matrices.

    Examples

    [1,2;3,4] + [5,6;7,8]

    = [6,8;10,12].

    Frequently Asked Questions

    About Matrix Addition

    Add and subtract 2x2 matrices element by element.