Chapter 2: Q27E (page 88)
Thesquare of a matrix A is its product with itself, AA.
(a) Show that five multiplications are sufficient to compute the square of a 2 x 2 matrix.
(b) What is wrong with the following algorithm for computing the square of an n x n matrix?
“Use a divide-and-conquer approach as in Strassen’s algorithm, except that instead of getting 7 subproblems of size , we now get 5 subproblems of size thanks to part (a). Using the same analysis as in Strassen’s algorithm, we can conclude that the algorithm runs in time O (nc) .”
(c) In fact, squaring matrices is no easier than matrix multiplication. In this part, you will show that if n x n matrices can be squared in time S(n) = O(nc), then any two n x n matrices can be multiplied in time O(nc) .
- Given two n x n matrices A and B, show that the matrix AB + BA can be computed in time 3S(n) + O(n2 ) .
- Given two n x n matrices X and Y, define the 2n x 2n matrices A and B,L as follows:
What is AB + BA, in terms of X and Y? - Using (i) and (ii), argue that the product XY can be computed in time 3S(2n) + O(n2 ). Conclude that matrix multiplication takes time O(nc ).
Short Answer
- ,5
- The suggested algorithm has insufficient run time to perform the square of the matrix.
(i) Given matrix can be computed in 3S(n) +O(n2 )
(ii)
(iii) The product XYneeds only 2S (2n) + O(n2 )computation time and the matrix multiplication takes O(nc)time.