Matrix Addition Calculator

    Add and subtract 2x2 matrices

    公式

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

    Add corresponding elements of two matrices.

    示例

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

    = [6,8;10,12].

    常见问题

    关于 Matrix Addition

    Add and subtract 2x2 matrices element by element.