Matrix

Dependencies:

  1. Semiring
  2. Ring

Let $R$ be a semiring. An $m$ by $n$ matrix in $R$ is a rectangular array of $m$ rows and $n$ columns where each element in the matrix belongs to $R$.

The element in row $i$ and column $j$ of matrix $A$ is denoted as $A[i, j]$ or $A_{i, j}$ or $a_{i, j}$. Rows and columns are generally numbered from 1 onwards. Sometimes they are numbered from 0 onwards.

The set of $m$ by $n$ matrices in $R$ is denoted by $\mathbb{M}_{m, n}(R)$.

A matrix where the number of rows equals the number of columns is a square matrix. A matrix where the number of columns is 1 is called a column vector. A matrix where the number of rows is 1 is called a row vector.

A zero matrix (denoted by $0$) is a matrix whose all elements are 0.

\[ (A+0)[i, j] = A[i, j] + 0[i, j] = A[i, j] + 0 = A[i, j] \implies A+0 = A \] \[ (0+A)[i, j] = 0[i, j] + A[i, j] = 0 + A[i, j] = A[i, j] \implies 0+A = A \]

Operations on a matrix

Dependency for:

  1. Markov chain
  2. Chapman-Kolmogorov equation
  3. Polyhedral set and polyhedral cone
  4. Approximation algorithm for covering LPs
  5. Matrix of linear transformation
  6. Every complex matrix has an eigenvalue
  7. Eigenpair of power of a matrix
  8. Eigenpair of affine transformation
  9. All eigenvalues of a hermitian matrix are real
  10. Linearly independent set is not bigger than a span
  11. Elementary row operation
  12. Matrices over a field form a vector space
  13. Trace of a matrix
  14. Square matrices form a (semi)ring
  15. Submatrix
  16. Conjugation of matrices is homomorphic
  17. Transpose of product
  18. Row space
  19. Conjugate Transpose and Hermitian
  20. c(AB) = (cA)B and (AB)c = A(Bc)
  21. Matrix multiplication distributes over addition
  22. Identity matrix
  23. Reduced Row Echelon Form (RREF)
  24. Positive definite
  25. Bounding matrix quadratic form using eigenvalues
  26. Identity matrix is identity of matrix product
  27. Matrix multiplication is associative
  28. Stacking
  29. System of linear equations

Info:

Transitive dependencies:

  1. Group
  2. Ring
  3. Semiring