Computer Science, asked by rockstardivyaakash, 7 months ago

Compute the product matrix using Strassen's matrix multiplication algorithm. Given a 11=1; a 12=3;21=5;a22=7
b11=8;b12=4;b21=6;b22=2
O A. c11=20;c12=12;c21= 100;c22=15
OB. c11=22;c12=8;c21=90;c22=32
O C. c11= 15;c12=7;c21=80;c22=34
O D. c11=26;c12=10;c21=82,c22=34​

Answers

Answered by Anonymous
0

Answer:

What is the formula to calculate the element present in second row, first column of the product matrix? M4=A(2,2)(B(1,2) – B(1,1)).

Answered by roopa2000
0

Answer:

O D. c11=26;c12=10;c21=82,c22=34​

Stassen's matrix multiplication formulas

There are a total of seven multiplications, four additions, and four subtractions in Strassen's matrix multiplication.

Explanation:

What are the rules for the Strassen matrix multiplication

Write P1 = A; P2 = H; P3 = E; P4 = D. For P5 we will use Diagonal Rule i.e. (Sum the Diagonal Elements Of Matrix X ) * (Sum the Diagonal Elements Of Matrix Y ), we get P5 = (A + D)* (E + H)

Similar questions