Compute the product matrix using Strassen’s matrix multiplication algorithm. Given a11=1; a12=3;a21=5;a22=7 b11=8;b12=4;b21=6;b22=2

Compute the product matrix using Strassen’s matrix multiplication algorithm. Given a11=1; a12=3;a21=5;a22=7 b11=8;b12=4;b21=6;b22=2 Correct Answer c11=26;c12=10;c21=82;c22=34

The solution can be obtained by C11=1*8 + 3*6 =8+18=26 C12=1*4 + 3*2 =4+6=10 C21=5*8 + 7*6 =40+42=82 C22= 5*4 + 7*2=20+14=34.

Related Questions

Strassen’s matrix multiplication algorithm follows ___________ technique.
Strassen’s algorithm is a/an_____________ algorithm.