Matrix & Vector Operations

Perform matrix multiplications, compute Row Reduced Echelon Form (RREF) step-by-step, or calculate vector cross products.

Cross-product mode calculates the 3D vector perpendicular to A and B, useful for geometry, physics, and graphics.

Vector A

Vector B

Calculation Summary

Cross Product Vector (A×B)

-7
-21
-14

Frequently Asked Questions

What is RREF used for?

Reduced Row Echelon Form (RREF) is a form of an augmented matrix solved via Gaussian elimination. It allows you to directly read the solutions to systems of linear equations.

How does vector cross product work?

The cross product of two 3D vectors A and B produces a third vector perpendicular to both, calculated as Cx = AyBz - AzBy, Cy = AzBx - AxBz, Cz = AxBy - AyBx.

Are the matrix operations limited to 3x3?

This scientific module supports 3x3 dimensions for matrix multiplication, and 3x4 augmented systems for RREF, which cover standard college linear algebra problems.