Strassen's Matrix Multiplication computes is faster than the standard matrix multiplication algorithm and is useful in practice for large matrices.
We need minimum of 8 multiplications for multiplying a 2x2 matrix using standard method. Strassen's algorithm only uses 7 multiplications which reduces the time complexity of this algorithm.
Strassen's Matrix Multiplication computes is faster than the standard matrix multiplication algorithm and is useful in practice for large matrices. We need minimum of 8 multiplications for multiplying a 2x2 matrix using standard method. Strassen's algorithm only uses 7 multiplications which reduces the time complexity of this algorithm.