Hadamard product (matrices)

From Wikipedia, the free encyclopedia
The Hadamard product operates on identically shaped matrices and produces a third matrix of the same dimensions.

In mathematics, the Hadamard product (also known as the element-wise product, entrywise product[1][2]: ch. 5 or Schur product[3]) is a binary operation that takes two matrices of the same dimensions and produces another matrix of the same dimension as the operands, where each element i, j is the product of elements i, j of the original two matrices. It is to be distinguished from the more common matrix product. It is attributed to, and named after, either French mathematician Jacques Hadamard or German mathematician Issai Schur.

The Hadamard product is associative and distributive. Unlike the matrix product, it is also commutative.[4]

Definition[]

For two matrices A and B of the same dimension m × n, the Hadamard product (or [1][5][6][7]) is a matrix of the same dimension as the operands, with elements given by[4]

For matrices of different dimensions (m × n and p × q, where mp or nq), the Hadamard product is undefined.

Example[]

For example, the Hadamard product for a 3 × 3 matrix A with a 3 × 3 matrix B is

Properties[]

  • The Hadamard product is commutative (when working with a commutative ring), associative and distributive over addition. That is, if A, B, and C are matrices of the same size, and k is a scalar:
  • The identity matrix under Hadamard multiplication of two m × n matrices is an m × n matrix where all elements are equal to 1. This is different from the identity matrix under regular matrix multiplication, where only the elements of the main diagonal are equal to 1. Furthermore, a matrix has an inverse under Hadamard multiplication if and only if none of the elements are equal to zero.[8]
  • For vectors x and y, and corresponding diagonal matrices Dx and Dy with these vectors as their main diagonals, the following identity holds:[2]: 479
    where x* denotes the conjugate transpose of x. In particular, using vectors of ones, this shows that the sum of all elements in the Hadamard product is the trace of ABT where superscript T denotes the matrix transpose. A related result for square A and B, is that the row-sums of their Hadamard product are the diagonal elements of ABT:[9]
    Similarly
  • The Hadamard product is a principal submatrix of the Kronecker product.
  • The Hadamard product satisfies the rank inequality
  • If A and B are positive-definite matrices, then the following inequality involving the Hadamard product is valid:[10]
    where λi(A) is the ith largest eigenvalue of A.
  • If D and E are diagonal matrices, then[11]
  • The Hadamard product of two vectors and is the same as matrix multiplication of one vector by the corresponding diagonal matrix of the other vector:

The mixed-product property[]

, where  is Kronecker product
, where  denotes face-splitting product.[12]
, where  is column-wise Khatri–Rao product.

Schur product theorem[]

The Hadamard product of two positive-semidefinite matrices is positive-semidefinite.[4][9] This is known as the Schur product theorem,[8] after Russian mathematician Issai Schur. For two positive-semidefinite matrices A and B, it is also known that the determinant of their Hadamard product is greater than or equal to the product of their respective determinants:[9]

In programming languages[]

Hadamard multiplication is built into certain programming languages under various names. In MATLAB, GNU Octave, GAUSS and HP Prime, it is known as array multiplication, or in Julia broadcast multiplication, with the symbol .*.[13] In Fortran, R,[14] APL, J and Wolfram Language (Mathematica), it is done through simple multiplication operator *, whereas the matrix product is done through the function matmul, %*%, +.×, +/ .* and the . operators, respectively. In Python with the NumPy numerical library, multiplication of array objects as a*b produces the Hadamard product, and multiplication as a@b produces the matrix product. With the SymPy symbolic library, multiplication of array objects as both a*b and a@b will produce the matrix product, the Hadamard product can be obtained with a.multiply_elementwise(b).[15] In C++, the Eigen library provides a cwiseProduct member function for the Matrix class (a.cwiseProduct(b)), while the Armadillo library uses the operator % to make compact expressions (a % b; a * b is a matrix product). R package matrixcalc introduces function hadamard.prod() for Hadamard Product of numeric matrices or vectors.

Applications[]

The Hadamard product appears in lossy compression algorithms such as JPEG. The decoding step involves an entry-for-entry product, in other words the Hadamard product.[citation needed]

It is also used in the machine learning literature, for example to describe the architecture of recurrent neural networks as GRUs or LSTMs.[citation needed]

Analogous operations[]

Other Hadamard operations are also seen in the mathematical literature,[16] namely the Hadamard root and Hadamard power (which are in effect the same thing because of fractional indices), defined for a matrix such that:

For

and for

The Hadamard inverse reads:[16]

A Hadamard division is defined as:[17][18]

The penetrating face product[]

The penetrating face product of matrices

According to the definition of V. Slyusar the penetrating face product of the p×g matrix and n-dimensional matrix (n > 1) with p×g blocks () is a matrix of size of the form:[19]

Example[]

If

then

Main properties[]

;[19]
,

where denotes the face-splitting product of matrices,

, where is a vector.

Applications[]

The penetrating face product is used in the tensor-matrix theory of digital antenna arrays.[19] This operation can also be used in artificial neural network models, specifically convolutional layers.[20]

See also[]

References[]

  1. ^ Jump up to: a b "Comprehensive List of Algebra Symbols". Math Vault. 2020-03-25. Retrieved 2020-09-06.
  2. ^ Jump up to: a b Horn, Roger A.; Johnson, Charles R. (2012). Matrix analysis. Cambridge University Press.
  3. ^ Davis, Chandler (1962). "The norm of the Schur product operation". Numerische Mathematik. 4 (1): 343–44. doi:10.1007/bf01386329.
  4. ^ Jump up to: a b c Million, Elizabeth (April 12, 2007). "The Hadamard Product" (PDF). buzzard.ups.edu. Retrieved September 6, 2020.
  5. ^ "Hadamard product - Machine Learning Glossary". machinelearning.wtf.
  6. ^ "linear algebra - What does a dot in a circle mean?". Mathematics Stack Exchange.
  7. ^ "Element-wise (or pointwise) operations notation?". Mathematics Stack Exchange.
  8. ^ Jump up to: a b Million, Elizabeth. "The Hadamard Product" (PDF). Retrieved 2 January 2012.
  9. ^ Jump up to: a b c 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, hdl:10338.dmlcz/102190
  10. ^ Hiai, Fumio; Lin, Minghua (February 2017). "On an eigenvalue inequality involving the Hadamard product". Linear Algebra and Its Applications. 515: 313–320. doi:10.1016/j.laa.2016.11.017.
  11. ^ "Project" (PDF). buzzard.ups.edu. 2007. Retrieved 2019-12-18.
  12. ^ Slyusar, V. I. (December 27, 1996). "End products in matrices in radar applications" (PDF). Radioelectronics and Communications Systems.– 1998, Vol. 41; Number 3: 50–53.
  13. ^ "Arithmetic Operators + - * / \ ^ ' -". MATLAB documentation. MathWorks. Archived from the original on 24 April 2012. Retrieved 2 January 2012.
  14. ^ "Matrix multiplication". An Introduction to R. The R Project for Statistical Computing. 16 May 2013. Retrieved 24 August 2013.
  15. ^ https://docs.sympy.org/latest/modules/matrices/common.html?highlight=multiply_elementwise#sympy.matrices.common.MatrixCommon.multiply
  16. ^ Jump up to: a b Reams, Robert (1999). "Hadamard inverses, square roots and products of almost semidefinite matrices". Linear Algebra and Its Applications. 288: 35–43. doi:10.1016/S0024-3795(98)10162-3.
  17. ^ Wetzstein, Gordon; Lanman, Douglas; Hirsch, Matthew; Raskar, Ramesh. "Supplementary Material: Tensor Displays: Compressive Light Field Synthesis using Multilayer Displays with Directional Backlighting" (PDF). MIT Media Lab.
  18. ^ Cyganek, Boguslaw (2013). Object Detection and Recognition in Digital Images: Theory and Practice. John Wiley & Sons. p. 109. ISBN 9781118618363.
  19. ^ Jump up to: a b c Slyusar, V. I. (March 13, 1998). "A Family of Face Products of Matrices and its properties" (PDF). Cybernetics and Systems Analysis C/C of Kibernetika I Sistemnyi Analiz. 1999. 35 (3): 379–384. doi:10.1007/BF02733426.
  20. ^ Ha D., Dai A.M., Le Q.V. (2017). "HyperNetworks". The International Conference on Learning Representations (ICLR) 2017. – Toulon, 2017.: Page 6. arXiv:1609.09106.CS1 maint: multiple names: authors list (link)


Retrieved from ""