Jump to content

Matrix multiplication

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 194.56.215.66 (talk) at 09:11, 17 April 2011 (→‎Properties). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

In mathematics, matrix multiplication is a binary operation that takes a pair of matrices, and produces another matrix.

Matrix product

Non-Technical Details

The result of matrix multiplication is a matrix whose elements are found by multiplying the elements of the same row from the first matrix times the associated elements of the same column from the second matrix and summing. The procedure for finding an element of the resultant matrix is to multiply the first element of the same row from the first matrix times the first element of the same column from the second matrix and add it to the second element of that row from the first matrix times the second element of that column from the second matrix, plus the third elements and so on until the last element of that row from the first matrix is multiplied by the last element of that column from the second matrix and added to the sum.

Non-Technical Example

if and then [1]

Technical Details

The matrix product is the most commonly used type of product of matrices. Matrices offer a concise way of representing linear transformations between vector spaces, and matrix multiplication corresponds to the composition of linear transformations. The matrix product of two matrices can be defined when their entries belong to the same ring, and hence can be added and multiplied, and, additionally, the number of the columns of the first matrix matches the number of the rows of the second matrix. The product of an m×p matrix A with an p×n matrix B is an m×n matrix denoted AB whose entries are

where 1 ≤ im is the row index and 1 ≤ jn is the column index. This definition can be restated by postulating that the matrix product is left and right distributive and the matrix units are multiplied according to the following rule:

where the first factor is the m×n matrix with 1 at the intersection of the ith row and the kth column and zeros elsewhere and the second factor is the p×n matrix with 1 at the intersection of the lth row and the jth column and zeros elsewhere.

Application Example

A company sells cement, chalk and plaster in bags weighing 25, 10, and 5 kg respectively. Four construction firms Arcen, Build, Construct and Demolish, buy these products from this company. The number of bags the clients buy in a specific year may be arranged in a 4×3-matrix A, with columns for the products and rows representing the clients:

We see for instance that , indicating that client Construct has bought 12 bags of chalk that year.

A bag of cement costs GBP 12, a bag of chalk GBP 9 and a bag of plaster GBP 8. The 3×2-matrix B shows prices and weights of the three products:

To find the total amount firm Arcen has spent that year, we calculate:

,

in which we recognize the first row of the matrix A (Arcen) and the first column of the matrix B (prices).

The total weight of the product bought by Arcen is calculated in a similar manner:

,

in which we now recognize the first row of the matrix A (Arcen) and the second column of the matrix B (weight).

We can make similar calculations for the other clients. Together they form the matrix AB as the matrix product of the matrices A and B:

Properties

In general, matrix multiplication is not commutative. More precisely, AB and BA need not be simultaneously defined; if they are, they may have different dimensions; and even if A and B are square matrices of the same order n, so that AB and BA are also square matrices of order n, if n is greater or equal than 2, AB need not be equal to BA. For example,

whereas

However, if A and B are both diagonal square matrices, or more generally they are equal to their transpose AT=A and BT=B, and of the same order then AB = BA. ( for symetrix matrices the following holds: AB = (BA)T , please revise this Zvi N )

Matrix multiplication is associative:

Matrix multiplication is distributive over matrix addition:

provided that the expression in either side of each identity is defined.

Matrix product is compatible with scalar multiplication:

where c is a scalar (for the second identity to hold, c must belong to the center of the ground ring — this condition is automatically satisfied if the ground ring is commutative, in particular, for matrices over a field).

If A and B are both nxn matrices with entries in a field then the determinant of their product is the product of their determinants:

In particular, the determinants of AB and BA coincide.

Let U, V, and W be vector spaces over the same field with certain bases, S: VW and T: UV be linear transformations and ST: UW be their composition. Suppose that A, B, and C are the matrices of T, S, and ST with respect to the given bases. Then

Thus the matrix of the composition (or the product) of linear transformations is the product of their matrices with respect to the given bases.

Illustration

The figure to the right illustrates the product of two matrices A and B, showing how each intersection in the product matrix corresponds to a row of A and a column of B. The size of the output matrix is always the largest possible, i.e. for each row of A and for each column of B there are always corresponding intersections in the product matrix. The product matrix AB consists of all combinations of dot products of rows of A and columns of B.

The values at the intersections marked with circles are:

In general, the matrix product is non-commutative. For example,

The element of the above matrix product is computed as follows

The first coordinate in matrix notation denotes the row and the second the column; this order is used both in indexing and in giving the dimensions. The element at the intersection of row and column of the product matrix is the dot product (or scalar product) of row of the first matrix and column of the second matrix. This explains why the width and the height of the matrices being multiplied must match: otherwise the dot product is not defined.

Product of several matrices

Matrix product can be extended to the case of several matrices, provided that their dimensions match, and it is associative, i.e. the result does not depend on the way the factors are grouped together. If A, B, C, and D are, respectively, an m×p, p×q, q×r, and r×n matrices, then there are 5 ways of grouping them without changing their order, and

is an m×n matrix denoted ABCD.

Alternative descriptions

The Euclidean inner product and outer product are the simplest special cases of the matrix product. The inner product of two column vectors and is , where T denotes the matrix transpose. More explicitly,

The outer product is , where

Matrix multiplication can be viewed in terms of these two operations by considering the effect of the matrix product on block matrices.

Suppose that the first factor, A, is decomposed into its rows, which are row vectors and the second factor, B, is decomposed into its columns, which are column vectors:

where

The method in the introduction was:

This is an outer product where the product inside is replaced with the inner product. In general, block matrix multiplication works exactly like ordinary matrix multiplication, but the real product inside is replaced with the matrix product.

An alternative method results when the decomposition is done the other way around, i.e. the first factor, A, is decomposed into column vectors and the second factor, B, is decomposed into row vectors:

This method emphasizes the effect of individual column/row pairs on the result, which is a useful point of view with e.g. covariance matrices, where each such pair corresponds to the effect of a single sample point. An example for a small matrix:

One more description of the matrix product may be obtained in the case when the second factor, B, is decomposed into the columns and the first factor, A, is viewed as a whole. Then A acts on the columns of B. If x is a vector and A is decomposed into columns, then

.

Algorithms for efficient matrix multiplication

The running time of square matrix multiplication, if carried out naively, is . The running time for multiplying rectangular matrices (one m×p-matrix with one p×n-matrix) is O(mnp). But more efficient algorithms do exist. Strassen's algorithm, devised by Volker Strassen in 1969 and often referred to as "fast matrix multiplication", is based on a clever way of multiplying two 2 × 2 matrices which requires only 7 multiplications (instead of the usual 8), at the expense of several additional addition and subtraction operations. Applying this trick recursively gives an algorithm with a multiplicative cost of . Strassen's algorithm is awkward to implement, compared to the naive algorithm, and it lacks numerical stability. Nevertheless, it is beginning to appear in libraries such as BLAS, where it is computationally interesting for matrices with dimensions n > 100,[2] and is very useful for large matrices over exact domains such as finite fields, where numerical stability is not an issue.

The current algorithm with the lowest known exponent k is the Coppersmith–Winograd algorithm. It was presented by Don Coppersmith and Shmuel Winograd in 1990, has an asymptotic complexity of O(n2.376). It is similar to Strassen's algorithm: a clever way is devised for multiplying two k × k matrices with fewer than k3 multiplications, and this technique is applied recursively. However, the constant coefficient hidden by the Big O Notation is so large that the Coppersmith–Winograd algorithm is only worthwhile for matrices that are too large to handle on present-day computers.[3]

Since any algorithm for multiplying two n × n matrices has to process all 2 × n² entries, there is an asymptotic lower bound of operations. Raz (2002) proves a lower bound of for bounded coefficient arithmetic circuits over the real or complex numbers.

Cohn et al. (2003, 2005) put methods such as the Strassen and Coppersmith–Winograd algorithms in an entirely different group-theoretic context. They show that if families of wreath products of Abelian groups with symmetric groups satisfying certain conditions exist, then there are matrix multiplication algorithms with essentially quadratic complexity. Most researchers believe that this is indeed the case[4] - a lengthy attempt at proving this was undertaken by the late Jim Eve.[5]

Because of the nature of matrix operations and the layout of matrices in memory, it is typically possible to gain substantial performance gains through use of parallelisation and vectorization. It should therefore be noted that some lower time-complexity algorithms on paper may have indirect time complexity costs on real machines.

Scalar multiplication

The scalar multiplication of a matrix A = (aij) and a scalar r gives a product r A of the same size as A. The entries of r A are given by

For example, if

then

If we are concerned with matrices over a more general ring, then the above multiplication is the left multiplication of the matrix A with scalar r while the right multiplication is defined to be

When the underlying ring is commutative, for example, the real or complex number field, the two multiplications are the same. However, if the ring is not commutative, such as the quaternions, they may be different. For example

Hadamard product

For two matrices of the same dimensions, we have the Hadamard product (named after French mathematician Jacques Hadamard), also known as the entrywise product and the Schur product.[6]

Formally, for two matrices of the same dimensions:

the Hadamard product A · B is a matrix of the same dimensions

with elements given by

Note that the Hadamard product is a principal submatrix of the Kronecker product.

The Hadamard product is commutative, associative and distributive over addition.

The Hadamard product of two positive-(semi)definite matrices is positive-(semi)definite,[7] and for positive-semidefinite and

.

For vectors and , and corresponding diagonal matrices and with these vectors as their leading diagonals, the following identity holds:[8]

,

where denotes the conjugate transpose of . In particular, using vectors of ones, this shows that the sum of all elements in the Hadamard product is the trace of .

A related result for square and , is that the row-sums of their Hadamard product are the diagonal elements of [9]

The Hadamard product appears in lossy compression algorithms such as JPEG.

Frobenius inner product

The Frobenius inner product, sometimes denoted A:B is the component-wise inner product of two matrices as though they are vectors. In other words, it is the sum of the entries of the Hadamard product, that is,

This inner product induces the Frobenius norm.

Powers of matrices

Square matrices can be multiplied by themselves repeatedly in the same way that ordinary numbers can. This repeated multiplication can be described as a power of the matrix. Using the ordinary notion of matrix multiplication, the following identities hold for an n-by-n matrix A, a positive integer k, and a scalar c:

The naive computation of matrix powers is to multiply k times the matrix A to the result, starting with the identity matrix just like the scalar case. This can be improved using the binary representation of k, a method commonly used for scalars. An even better method is to use the eigenvalue decomposition of A.

Calculating high powers of matrices can be very time-consuming, but the complexity of the calculation can be dramatically decreased by using the Cayley-Hamilton theorem, which takes advantage of an identity found using the matrices' characteristic polynomial and gives a much more effective equation for Ak, which instead raises a scalar to the required power, rather than a matrix.

Powers of diagonal matrices

The kth power of a diagonal matrix , is the diagonal matrix whose diagonal entries are the kth powers of the corresponding entries of the original matrix .

When raising an arbitrary matrix (not necessarily a diagonal matrix) to a power, it is often helpful to diagonalize the matrix first.

See also

Notes

  1. ^ Mary L. Boas, "Mathematical Methods in the Physical Sciences", Third Addition, Wiley, 2006, page 115
  2. ^ Press 2007, p. 108.
  3. ^ Robinson, Sara (2005), "Toward an Optimal Algorithm for Matrix Multiplication" (PDF), SIAM News, 38 (9)
  4. ^ Robinson, 2005.
  5. ^ Eve, 2009.
  6. ^ (Horn & Johnson 1985, Ch. 5).
  7. ^ (Styan 1973)
  8. ^ (Horn & Johnson 1991)
  9. ^ (Styan 1973)

References

  • Henry Cohn, Robert Kleinberg, Balazs Szegedy, and Chris Umans. Group-theoretic Algorithms for Matrix Multiplication. arXiv:math.GR/0511460. Proceedings of the 46th Annual Symposium on Foundations of Computer Science, 23–25 October 2005, Pittsburgh, PA, IEEE Computer Society, pp. 379–388.
  • Henry Cohn, Chris Umans. A Group-theoretic Approach to Fast Matrix Multiplication. arXiv:math.GR/0307321. Proceedings of the 44th Annual IEEE Symposium on Foundations of Computer Science, 11–14 October 2003, Cambridge, MA, IEEE Computer Society, pp. 438–449.
  • Coppersmith, D., Winograd S., Matrix multiplication via arithmetic progressions, J. Symbolic Comput. 9, p. 251-280, 1990.
  • Eve, James. On O(n^2 log n) algorithms for n x n matrix operations. Technical Report No. 1169, School of Computing Science, Newcastle University, August 2009. PDF
  • Horn, Roger A.; Johnson, Charles R. (1985), Matrix Analysis, Cambridge University Press, ISBN 978-0-521-38632-6
  • Horn, Roger A.; Johnson, Charles R. (1991), Topics in Matrix Analysis, Cambridge University Press, ISBN 978-0-521-46713-1
  • Knuth, D.E., The Art of Computer Programming Volume 2: Seminumerical Algorithms. Addison-Wesley Professional; 3 edition (November 14, 1997). ISBN 978-0201896848. pp. 501.
  • Press, William H.; Flannery, Brian P.; Teukolsky, Saul A.; Vetterling, William T. (2007), Numerical Recipes: The Art of Scientific Computing (3rd ed.), Cambridge University Press, ISBN 978-0-521-88068-8.
  • Ran Raz. On the complexity of matrix product. In Proceedings of the thirty-fourth annual ACM symposium on Theory of computing. ACM Press, 2002. doi:10.1145/509907.509932.
  • Robinson, Sara, Toward an Optimal Algorithm for Matrix Multiplication, SIAM News 38(9), November 2005. PDF
  • Strassen, Volker, Gaussian Elimination is not Optimal, Numer. Math. 13, p. 354-356, 1969.
  • Styan, George P. H. (1973), "Hadamard Products and Multivariate Statistical Analysis", Linear Algebra and its Applications, 6: 217–240, doi:10.1016/0024-3795(73)90023-2