Index: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Home > Matrix (mathematics)
Abstract algebra Algebra Linear algebraIn mathematics, a matrix (plural matrices) is a rectangular table of numbers or, more generally, of elements of a fixed ring. In this article, if unspecified, the entries of a matrix are always real or complex numbers.
Matrices are useful to record data that depends on two categories, and to keep track of the coefficients of systems of linear equations and linear transformations.
For the development and applications of matrices, see matrix theory.
The term is also used in other areas; see matrix.
1 History
Main article: matrix theory
2 Definitions and notations
The horizontal lines in a matrix are called rows and the vertical lines are called columns. A matrix with m rows and n columns is called an m-by-n matrix (or m×n matrix) and m and n are called its dimensions.
The entry of a matrix A that lies in the i-th row and the j-th column is called the i,j-entry or (i,j)th entry of A.
This is written as A[i,j] or Ai,j, or in notation of the C programming language, A[i][j].
The notation A = (aij) means that A[i,j] = aij for all indices i and j.
Matrix storage uses two conventions: row major and column major ordering. The former means that the matrix is stored such that row elements are packed together contiguously, the latter means that the matrix is stored such that column elements are packed together contiguously.
3 Examples
The matrix
-
is a 4×3 matrix. The element A[2,3] or a2,3 is 7.
In many areas in mathematics, matrices with certain structure arise. A few important examples are
- symmetric matrices are such that elements symmetric to the main diagonal (from the upper left to the lower right) are equal, that is, ai,j=aj,i.
- hermitian (or self-adjoint) matrices are such that elements symmetric to the diagonal are each others complex conjugatesIn mathematics, the complex conjugate of a complex number is given by changing the sign of the imaginary part. Thus, the conjugate of the complex number z a + ib (where a and b are real numbers) is defined to be z a − ib''. It is also often denoted, that is, ai,j=a*j,i, where the superscript '*' signifies complex conjugation.
- Toeplitz matricesIn the mathematical discipline of linear algebra, a Toeplitz matrix named after Otto Toeplitz, or diagonal constant matrix is a special kind of matrix where each descending diagonal from left to right is constant. Definition A m''x''n matrix A of the form have common elements on their diagonals, that is, ai,j=ai+1,j+1.
- Stochastic matricesIn mathematics, especially in probability theory and statistics, and also in linear algebra and computer science, a stochastic matrix is a square matrix whose columns are probability vectors, i. the entries in each column are nonnegative real numbers whos are square matrices whose columns are probability vectorIn mathematics and statistics, a probability vector or stochastic vector is a vector with non-negative entries that add up to one. Here are some examples of probability vectors:.s; they are used to define Markov chainIn mathematics, a (discrete-time) Markov chain is a discrete-time stochastic process with the Markov property. In such a process, the distant past is irrelevant given knowledge of the recent past. There are also continuous-time Markov chains. A Markov chas.
For a more extensive list see list of matricesListed below are some important classes of matrices used in mathematics: (0,1)-matrix or binary matrix a matrix with all elements either 0 or 1. Adjacency matrix a symmetric (0,1)-matrix Anti-Hermitian matrix another name for a skew-Hermitian matrix''..
Read more »