Column space

Column space
The column vectors of a matrix.

In linear algebra, the column space of a matrix (sometimes called the range of a matrix) is the set of all possible linear combinations of its column vectors. The column space of an m × n matrix is a subspace of m-dimensional Euclidean space. The dimension of the column space is called the rank of the matrix.[1]

The column space of a matrix is the image or range of the corresponding matrix transformation.

Contents

Definition

Let A be an m × n matrix, with column vectors v1v2, ..., vn. A linear combination of these vectors is any vector of the form

c_1 \textbf{v}_1 + c_2 \textbf{v}_2 + \cdots + c_n \textbf{v}_n\text{,}

where c1c2, ..., cn are scalars. The set of all possible linear combinations of v1,...,vn is called the column space of A. That is, the column space of A is the span of the vectors v1,...,vn.

Example
If A = \begin{bmatrix} 1 & 0 \\ 0 & 1 \\ 2 & 0 \end{bmatrix}, then the column vectors are v1 = (1, 0, 2)T and v2 = (0, 1, 0)T.
A linear combination of v1 and v2 is any vector of the form
c_1 \begin{bmatrix} 1 \\ 0 \\ 2 \end{bmatrix} + c_2 \begin{bmatrix} 0 \\ 1 \\ 0 \end{bmatrix} = \begin{bmatrix} c_1 \\ c_2 \\ 2c_1 \end{bmatrix}\,
The set of all such vectors is the column space of A. In this case, the column space is precisely the set of vectors (xyz) ∈ R3 satisfying the equation z = 2x (using Cartesian coordinates, this set is a plane through the origin in three-dimensional space).

Any linear combination of the column vectors of a matrix A can be written as the product of A with a column vector:

A\begin{bmatrix} x_1 \\ \vdots \\ x_n \end{bmatrix} = x_1 \textbf{v}_1 + \cdots + x_n \textbf{v}_n

Therefore, the column space of A consists of all possible products Ax, for x ∈ Rn. This is the same as the image (or range) of the corresponding matrix transformation.

Basis

The columns of A span the column space, but they may not form a basis if the column vectors are not linearly independent. Fortunately, elementary row operations do not affect the dependence relations between the column vectors. This makes it possible to use row reduction to find a basis for the column space.

For example, consider the matrix

A = \begin{bmatrix} 1 & 3 & 1 & 4 \\ 2 & 7 & 3 & 9 \\ 1 & 5 & 3 & 1 \\ 1 & 2 & 0 & 8 \end{bmatrix}\text{.}

The columns of this matrix span the column space, but they may not be linearly independent, in which case some subset of them will form a basis. To find this basis, we reduce A to reduced row echelon form:

\begin{bmatrix} 1 & 3 & 1 & 4 \\ 2 & 7 & 3 & 9 \\ 1 & 5 & 3 & 1 \\ 1 & 2 & 0 & 8 \end{bmatrix}
\sim \begin{bmatrix} 1 & 3 & 1 & 4 \\ 0 & 1 & 1 & 1 \\ 0 & 2 & 2 & -3 \\ 0 & -1 & -1 & 4 \end{bmatrix}
\sim  \begin{bmatrix} 1 & 0 & -2 & 1 \\ 0 & 1 & 1 & 1 \\ 0 & 0 & 0 & -5 \\ 0 & 0 & 0 & 5 \end{bmatrix}
\sim  \begin{bmatrix} 1 & 0 & -2 & 0 \\ 0 & 1 & 1 & 0 \\ 0 & 0 & 0 & 1 \\ 0 & 0 & 0 & 0 \end{bmatrix}\text{.}[2]

At this point, it is clear that the first, second, and fourth columns are linearly independent, while the third column is a linear combination of the first two. (Specifically, v3 = –2v1 + v2.) Therefore, the first, second, and fourth columns of the original matrix are a basis for the column space:

\begin{bmatrix} 1 \\ 2 \\ 1 \\ 1\end{bmatrix},\;\;
\begin{bmatrix} 3 \\ 7 \\ 5 \\ 2\end{bmatrix},\;\;
\begin{bmatrix} 4 \\ 9 \\ 1 \\ 8\end{bmatrix}\text{.}

Note that the independent columns of the reduced row echelon form are precisely the columns with pivots. This makes it possible to determine which columns are linearly independent by reducing only to echelon form.

The above algorithm can be used in general to find the dependence relations between any set of vectors, and to pick out a basis from any spanning set. A different algorithm for finding a basis from a spanning set is given in the row space article; finding a basis for the column space of A is equivalent to finding a basis for the row space of the transpose matrix AT.

Dimension

The dimension of the column space is called the rank of the matrix. The rank is equal to the number of pivots in the reduced row echelon form, and is the maximum number of linearly independent columns that can be chosen from the matrix. For example, the 4 × 4 matrix in the example above has rank three.

Because the column space is the image of the corresponding matrix transformation, the rank of a matrix is the same as the dimension of the image. For example, the transformation R4 → R4 described by the matrix above maps all of R4 to some three-dimensional subspace.

The nullity of a matrix is the dimension of the null space, and is equal to the number of columns in the reduced row echelon form that do not have pivots.[3] The rank and nullity of a matrix A with n columns are related by the equation:

\text{rank}(A) + \text{nullity}(A) = n.\,

This is known as the rank-nullity theorem.

Relation to the left null space

The left null space of A is the set of all vectors x such that xTA = 0T. It is the same as the null space of the transpose of A. The left null space is the orthogonal complement to the column space of A.

This can be seen by writing the product of the matrix AT and the vector x in terms of the dot product of vectors:

A^T\textbf{x} = \begin{bmatrix} \textbf{c}_1 \cdot \textbf{x} \\ \textbf{c}_2 \cdot \textbf{x} \\ \vdots \\ \textbf{c}_n \cdot \textbf{x} \end{bmatrix}\text{,}

where c1, ..., cn are the column vectors of A. Thus ATx = 0 if and only if x is orthogonal (perpendicular) to each of the column vectors of A.

It follows that the null space of AT is the orthogonal complement to the column space of A.

For a matrix A, the column space, row space, null space, and left null space are sometimes referred to as the four fundamental subspaces.

See also

Notes

  1. ^ Linear algebra, as discussed in this article, is a very well-established mathematical discipline for which there are many sources. Almost all of the material in this article can be found in Lay 2005, Meyer 2001, and Strang 2005.
  2. ^ This computation uses the Gauss-Jordan row-reduction algorithm. Each of the shown steps involves multiple elementary row operations.
  3. ^ Columns without pivots represent free variables in the associated homogeneous system of linear equations.

References

Textbooks

  • Strang, Gilbert (July 19, 2005), Linear Algebra and Its Applications (4th ed.), Brooks Cole, ISBN 978-0030105678 
  • Axler, Sheldon Jay (1997), Linear Algebra Done Right (2nd ed.), Springer-Verlag, ISBN 0387982590 
  • Lay, David C. (August 22, 2005), Linear Algebra and Its Applications (3rd ed.), Addison Wesley, ISBN 978-0321287137 
  • Meyer, Carl D. (February 15, 2001), Matrix Analysis and Applied Linear Algebra, Society for Industrial and Applied Mathematics (SIAM), ISBN 978-0898714548, http://www.matrixanalysis.com/DownloadChapters.html 
  • Poole, David (2006), Linear Algebra: A Modern Introduction (2nd ed.), Brooks/Cole, ISBN 0-534-99845-3 
  • Anton, Howard (2005), Elementary Linear Algebra (Applications Version) (9th ed.), Wiley International 
  • Leon, Steven J. (2006), Linear Algebra With Applications (7th ed.), Pearson Prentice Hall 

External links


Wikimedia Foundation. 2010.

Игры ⚽ Нужна курсовая?

Look at other dictionaries:

  • column space — noun The vector space comprising all the column vectors of a matrix …   Wiktionary

  • space — 1. noun /speɪs/ a) The intervening contents of a volume. If it be only a Single Letter or two that drops, he thruſts the end of his Bodkin between every Letter of that Word, till he comes to a Space: and then perhaps by forcing thoſe Letters… …   Wiktionary

  • Space Shot — is a type of amusement ride manufactured by S S Power.The ride is a drop tower type attraction that uses compressed air to rapidly propel riders up the tower then gently lower them with a series of air cushioned bounces back to the loading… …   Wikipedia

  • column — col‧umn [ˈkɒləm ǁ ˈkɑː ] noun [countable] 1. ACCOUNTING a line of numbers written or printed under each other so that they can be easily added up, or a space on a page or on a computer screen for numbers to be arranged in this way ˈcash ˌcolumn… …   Financial and business terms

  • Column — Col umn, n. [L. columna, fr. columen, culmen, fr. cellere (used only in comp.), akin to E. excel, and prob. to holm. See {Holm}, and cf. {Colonel}.] 1. (Arch.) A kind of pillar; a cylindrical or polygonal support for a roof, ceiling, statue, etc …   The Collaborative International Dictionary of English

  • Column rule — Column Col umn, n. [L. columna, fr. columen, culmen, fr. cellere (used only in comp.), akin to E. excel, and prob. to holm. See {Holm}, and cf. {Colonel}.] 1. (Arch.) A kind of pillar; a cylindrical or polygonal support for a roof, ceiling,… …   The Collaborative International Dictionary of English

  • Space Moose — was a Canadian underground comic strip that appeared in the University of Alberta s student newspaper, The Gateway, between October 3, 1989 and 1999.[1] Almost all of the strips were penned by Adam Thrasher, a student at the university.[2] For… …   Wikipedia

  • Space Quest IV: Roger Wilco and The Time Rippers — Developer(s) Sierra Publisher(s) Sierra …   Wikipedia

  • column-inch — ˌcolumn ˈinch noun [countable] MARKETING a unit of measurement used by people selling advertising space in newspapers and magazines. A column inch of text is a column wide and an inch deep: • Most small ads fill one or two column inches …   Financial and business terms

  • column — [käl′əm] n. [ME & OFr colomne < L columna, collateral form of columen, column, pillar < IE base * kel , to project > HILL, HOLM1, Gr kolophōn] 1. a slender upright structure, generally consisting of a cylindrical shaft, a base, and a… …   English World dictionary

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”