Perform addition, subtraction, or multiplication on 2x2 and 3x3 matrices. Fill in the values for Matrix A and Matrix B below.
C11: 0
C12: 0
C13: 0
C21: 0
C22: 0
C23: 0
C31: 0
C32: 0
C33: 0
Matrix addition/subtraction is performed element-wise, while multiplication involves dot products of rows and columns.
Formula for Multiplication: C[i][j] = Σ (A[i][k] * B[k][j])
C[i][j] = Σ (A[i][k] * B[k][j])
Example: Adding two 2x2 matrices A and B where A11=1 and B11=5.
No, the number of columns in Matrix A must equal the number of rows in Matrix B.
A square matrix has an equal number of rows and columns, such as 2x2 or 3x3.
© 2026 Hreflabs LLC. All rights reserved.
Made with ❤️ for everyone who loves accurate calculations