Science  People  Locations  Timeline
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)


 Contents
Abstract algebra Algebra Linear algebra

In 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

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 »

Non User