Aug 1, 2024
Matrix A (2x3):
Matrix B (2x3):
Formula for A + B:
=A+B
Ctrl + Shift + Enter
A - B:
-
instead of +
Scalar Multiplication (e.g., 2A + 3B):
=2*A + 3*B
, then Ctrl + Shift + Enter
Matrix A (2x3) and Matrix B (3x2):
Resulting Matrix will be (2x2):
=MMULT(A, B)
and Ctrl + Shift + Enter
Multiplying B and A will yield a (3x3) matrix:
=MMULT(B, A)
, then Ctrl + Shift + Enter
Determinant of Matrix A:
=MDETERM(A)
and Ctrl + Shift + Enter
Determinant of Matrix B:
Determinant of AB:
=MDETERM(MMULT(A,B))
Matrix A (3x3):
Check Determinant:
Finding Inverse:
=MINVERSE(A)
, then Ctrl + Shift + Enter
Matrix A (2x3) and Matrix B (3x2):
Transpose:
=TRANSPOSE(A)
and Ctrl + Shift + Enter
=TRANSPOSE(B)
and Ctrl + Shift + Enter