FACTOID # 45: American adults have spent more time than anyone in education .
 
 Home   Encyclopedia   Statistics   Countries A-Z   Flags   Maps   Education   Forum   FAQ   About 
 
WHAT'S NEW
RECENT ARTICLES
More Recent Articles »
 

FACTS & STATISTICS    Simple view

  1. Select countries to view: (hold down Control key and click to select several)

     

     

    Compare:

     

     

  1. Select fact or statistic: (* = graphable)

     

     

     

  2. (OPTIONAL) Compare to statistic: (both need to be graphable)

     

     

     

  3. View result as:

     

       
(OR) SEARCH ALL encyclopedia, stats & forums:   

Encyclopedia > Toeplitz matrix

In the mathematical discipline of linear algebra, a Toeplitz matrix or diagonal-constant matrix, named after Otto Toeplitz, is a matrix in which each descending diagonal from left to right is constant. For instance, the following matrix is a Toeplitz matrix: For other meanings of mathematics or uses of math and maths, see Mathematics (disambiguation) and Math (disambiguation). ... Linear algebra is the branch of mathematics concerned with the study of vectors, vector spaces (also called linear spaces), linear maps (also called linear transformations), and systems of linear equations. ... In mathematics, a matrix (plural matrices) is a rectangular table of elements (or entries), which may be numbers or, more generally, any abstract quantities that can be added and multiplied. ...

Any n×n matrix A of the form

 A = begin{bmatrix} a_{0} & a_{-1} & a_{-2} & ldots & ldots &a_{-n+1}  a_{1} & a_0 & a_{-1} & ddots & & vdots  a_{2} & a_{1} & ddots & ddots & ddots& vdots  vdots & ddots & ddots & ddots & a_{-1} & a_{-2} vdots & & ddots & a_{1} & a_{0}& a_{-1}  a_{n-1} & ldots & ldots & a_{2} & a_{1} & a_{0} end{bmatrix}

is a Toeplitz matrix. If the i,j element of A is denoted Ai,j, then we have

Ai,j = aij.

Contents

Properties

Generally, a matrix equation

Ax = b

is the general problem of n linear simultaneous equations to solve. If A is a Toeplitz matrix, then the system is rather special (has only 2n − 1 degrees of freedom, rather than n2). One could therefore expect that solution of a Toeplitz system would be easier. In mathematics and linear algebra, a system of linear equations is a set of linear equations such as 3x1 + 2x2 − x3 = 1 2x1 − 2x2 + 4x3 = −2 −x1 + ½x2 − x3 = 0. ... This article or section is in need of attention from an expert on the subject. ...


This can be investigated by the transformation

AUnUmA,

which has rank 2, where Uk is the down-shift operator. Specifically, one can by simple calculation show that

 AU_n-U_mA= begin{bmatrix} a_{-1} & cdots & a_{-n+1} & 0  vdots & & & -a_{-n+1}  vdots & & & vdots  0 & cdots & & -a_{n-n-1} end{bmatrix}

where empty places in the matrix are replaced by zeros.


Notes

These matrices have uses in computer science because it can be shown that the addition of two Toeplitz matrices can be done in O(n) time, a Toeplitz matrix can be multiplied by a vector in O(n log n) time, and the matrix multiplication of two Toeplitz matrices can be done in O(n2) time. Computer science, or computing science, is the study of the theoretical foundations of information and computation and their implementation and application in computer systems. ... For other uses, see Big O. In computational complexity theory, big O notation is often used to describe how the size of the input data affects an algorithms usage of computational resources (usually running time or memory). ... This article gives an overview of the various ways to perform matrix multiplication. ...


Toeplitz systems of form Ax = b can be solved by the Levinson-Durbin Algorithm in Θ(n2) time. Variants of this algorithm have been shown to be weakly stable in the sense of James Bunch (i.e., they exhibit numerical stability for well-conditioned linear systems). Levinson recursion is a mathematical procedure which recursively calculates the solution to a Toeplitz matrix. ... In the mathematical subfield of numerical analysis, numerical stability is a property of numerical algorithms. ...


Toeplitz matrices are also closely connected with Fourier series, because the multiplication operator by a trigonometric polynomial, compressed to a finite-dimensional space, can be represented by such a matrix. The Fourier series is a mathematical tool used for analyzing periodic functions by decomposing such a function into a weighted sum of much simpler sinusoidal component functions sometimes referred to as normal Fourier modes, or simply modes for short. ... In operator theory, a multiplication operator is a linear operator T defined on some vector space of functions and whose value at a function φ is given by multiplication by a fixed function f. ... In the mathematical subfield of numerical analysis, a trigonometric polynomial is a finite linear linear combination of sin(nx) and cos(nx) with n a natural number. ... In functional analysis, the compression of a linear operator T on a Hilbert space to a subspace K is the operator PTP where P is the orthogonal projection onto K. This is a natural way to obtain an operator on K from an operator on the whole Hilbert space. ...


If a Toeplitz matrix has the additional property that ai = ai + n, then it is a circulant matrix. In linear algebra, a circulant matrix is a special kind of Toeplitz matrix where each row vector is shifted one element to the right relative to the preceding row vector. ...


Toeplitz matrices are persymmetric. Symmetric Toeplitz matrices are both centrosymmetric and bisymmetric. In mathematics, persymmetric matrix may refer to: a square matrix such that the values on each line perpendicular to the main diagonal are the same for a given line; or a square matrix which is symmetric in the northeast-to-southwest diagonal. ... In mathematics, especially in linear algebra and matrix theory, a centrosymmetric matrix is a matrix which is symmetric about its center. ... In mathematics, a bisymmetric matrix is a square matrix that is symmetric about both of its main diagonals. ...


The convolution operation can be constructed as a matrix multiplication, where one of the inputs is converted into a Toeplitz matrix. For example, the convolution of h and x can be formulated as: In mathematics and, in particular, functional analysis, convolution is a mathematical operator which takes two functions f and g and produces a third function that in a sense represents the amount of overlap between f and a reversed and translated version of g. ...


 begin{matrix} y & = & h ast x  & = & begin{bmatrix} h_1 & 0 & ldots & 0 & 0  h_2 & h_1 & ldots & vdots & vdots  h_3 & h_2 & ldots & 0 & 0  vdots & h_3 & ldots & h_1 & 0  h_{m-1} & vdots & ldots & h_2 & h_1  h_m & h_{m-1} & vdots & vdots & h_2  0 & h_m & ldots & h_{m-2} & vdots  0 & 0 & ldots & h_{m-1} & h_{m-2}  vdots & vdots & vdots & h_m & h_{m-1}  0 & 0 & 0 & ldots & h_m  end{bmatrix} begin{bmatrix} x_1  x_2  x_3  vdots  x_n  end{bmatrix}  y^T & = & begin{bmatrix} h_1 & h_2 & h_3 & ldots & h_{m-1} & h_m  end{bmatrix} begin{bmatrix} x_1 & x_2 & x_3 & ldots & x_n & 0 & 0 & 0& ldots & 0  0 & x_1 & x_2 & x_3 & ldots & x_n & 0 & 0 & ldots & 0  0 & 0 & x_1 & x_2 & x_3 & ldots & x_n & 0 & ldots & 0  vdots & vdots & vdots & vdots & vdots & ldots & vdots & vdots & ldots & 0  0 & ldots & 0 & 0 & x_1 & ldots & x_{n-2} & x_{n-1} & x_{n} & vdots  0 & ldots & 0 & 0 & 0 & x_1 & ldots & x_{n-2} & x_{n-1} & x_{n}  end{bmatrix} end{matrix} .


This approach can be extended to compute autocorrelation, cross-correlation, moving average etc. A plot showing 100 random numbers with a hidden sine function, and an autocorrelation of the series on the bottom. ... In statistics, the term cross-correlation is sometimes used to refer to the covariance cov(X, Y) between two random vectors X and Y, in order to distinguish that concept from the covariance of a random vector X, which is understood to be the matrix of covariances between the scalar... The term moving average is used in different contexts. ...


See also

In linear algebra, a circulant matrix is a special kind of Toeplitz matrix where each row vector is shifted one element to the right relative to the preceding row vector. ...

External link


  Results from FactBites:
 
Toeplitz Matrices, Algorithms and Applications (666 words)
Toeplitz matrices arise in many different theoretical and applicative fields, in the mathematical modelling of all the problems where some sort of shift invariance occurs in terms of space or of time.
This shift invariance is reflected in the structure of the matrix itself where a south-eastern shift of the entries leaves the matrix unchanged.
Toeplitz matrices may be finite or even infinite according to the features of the problem that is modelled.
Toeplitz matrix - Wikipedia, the free encyclopedia (250 words)
In the mathematical discipline of linear algebra, a Toeplitz matrix or diagonal-constant matrix, named after Otto Toeplitz, is a matrix in which each descending diagonal from left to right is constant.
These matrices have uses in computer science because it can be shown that the addition of two Toeplitz matrices can be done in O(n) time and the matrix multiplication of two Toeplitz matrices can be done in O(n log n) time.
Toeplitz systems of form Ax = b can be solved by Levinson recursion.
  More results at FactBites »


 

COMMENTARY     


Share your thoughts, questions and commentary here
Your name
Your comments
Please enter the 5-letter protection code

Want to know more?
Search encyclopedia, statistics and forums:

 


Lesson Plans | Student Area | Student FAQ | Reviews | Press Releases |  Feeds | Contact
The Wikipedia article included on this page is licensed under the GFDL.
Images may be subject to relevant owners' copyright.
All other elements are (c) copyright NationMaster.com 2003-5. All Rights Reserved.
Usage implies agreement with terms.