← LibraryColumn Space Spanned by Original ColumnsEngineering · Engineering MathematicsLesson 180/812← PrevNext →
ArticlePublished 7 Aug 2026Updated 9 Aug 202623 min readBy KEVOS®
Skip to content

Engineering/Mathematics/Matrices

Column Space Spanned by Original Columns

Row-reduce a matrix, record which columns hold leading ones, then return to the original matrix and take exactly those columns. The result is a linearly independent set spanning the entire column space — a basis made of genuine columns, which is what makes it usable when the columns mean something physical.

  • Core level
  • Stream: subspaces
  • Reading time 14 min
  • Ref KVS-ENG-MATH-0048
Taxonomy
Engineering / Mathematics
Prerequisite
Column space; reduced row-echelon form; linear independence
Produces
A basis of C(A) of size r=rank(A)
Built from
Columns of A, not columns of its reduced form
Selection rule
Indices D={d1,,dr} of the leading ones
Bonus
The reduced form also gives every dependency relation

Overview

The definition of the column space presents it as the span of all n columns, which is a correct but wasteful description: whenever the rank is less than n, some columns are redundant and contribute nothing. What is wanted instead is a minimal spanning set — a basis — and ideally one whose members are themselves columns of the matrix rather than manufactured combinations of them.

The procedure that achieves this is short. Reduce the matrix to reduced row-echelon form, note the index set D of columns containing leading ones, discard the reduced matrix, and return to the original to collect the columns indexed by D. Those r columns are linearly independent and span the whole column space. Everything about the selection came from the reduced form; everything in the answer came from the original.

That asymmetry is the point of the result and the source of the most common error associated with it. Row operations preserve the relationships between columns — which combinations of columns give zero — but they do not preserve the columns themselves. So the pivot columns of the reduced matrix identify which original columns are independent, while the reduced columns span an entirely different subspace. Substituting one for the other produces a set of the right size that is a basis for the wrong space.

The requirement that a basis consist of genuine columns is not aesthetic. When the columns are physical objects — feedstocks, actuators, reactions, measured predictors — a basis built from combinations of them is uninterpretable and often unrealisable, while a basis of actual columns names a subset of the real objects that is sufficient. The same demand drives interpolative and CUR decompositions in numerical linear algebra, where the value of selecting actual columns is retained sparsity, retained non-negativity and retained meaning.

Definition

Basis of the Column Space

BCS

Let A be an m×n matrix with columns A1,,An, and let B be a row-equivalent matrix in reduced row-echelon form with r non-zero rows. Let D={d1,d2,,dr} be the indices of the columns of B containing leading ones, and set T={Ad1,Ad2,,Adr}. Then

  • T is a linearly independent set;
  • C(A)=span(T).

Read the subscripts carefully: the indices come from B, the vectors come from A. This is the entire content of the theorem and the single point at which it is misapplied.

Pivot and Non-Pivot Columns

PC

A pivot column of a matrix in reduced row-echelon form is one containing a leading one; every other column is non-pivot. There are exactly r pivot columns, where r is the rank, and each is a column of the identity matrix. In the original matrix, the columns at pivot positions are the independent ones and those at non-pivot positions are combinations of the pivot columns to their left.

Dependency Relation from the Reduced Form

DRRF

If column j of the reduced form B is non-pivot, its entries are the coefficients that express the corresponding original column in terms of the earlier original pivot columns: Aj=k=1r[B]kjAdk. The reduced form therefore delivers not only the selection but every redundancy relation, at no extra cost.

Concepts

Why the construction works

Row operations do not change the solution set of Ax=0, so N(A)=N(B). A vector in that null space is exactly a list of coefficients producing a vanishing combination of columns. Hence A and B have identical patterns of linear dependence among their columns: a subset of columns of A is independent precisely when the correspondingly indexed subset of columns of B is. Since the pivot columns of B are distinct standard unit vectors and therefore independent, the corresponding columns of A are independent too.

Each non-pivot column of B is a combination of the pivot columns of B, with coefficients read directly from that column. Transferring the same coefficients back to A — legitimate because the dependency pattern is preserved — expresses every non-pivot column of A as a combination of the selected columns. Any element of C(A) is a combination of all n columns; substituting for the non-pivot ones rewrites it using only the r selected columns. So the selected columns span the whole column space, and being independent as well, they form a basis.

The columns of the reduced form span a different space

It is essential that the answer uses columns of A. Row reduction generally changes the column space completely: a matrix whose reduced form has three pivot columns e1,e2,e3 has C(B) equal to the set of vectors whose remaining entries are zero, which almost never coincides with C(A). The two spaces have the same dimension, because rank is preserved, and that coincidence is what makes the error so easy to miss — the wrong answer has the right shape.

Contrast with the row space

Row operations preserve the row space exactly, since each new row is a combination of old rows and the process is reversible. So for the row space the reduced matrix may be used directly, and its non-zero rows form a basis. The column space enjoys no such convenience. This asymmetry — reduce and read off for rows, reduce and go back for columns — is worth committing to memory, because it is the practical difference between the two constructions.

The basis is not unique

Row reduction makes a specific, greedy choice: scanning left to right, it keeps each column that is not already in the span of those retained. Other subsets of columns can serve equally well. In the general case, any r columns that happen to be independent form a basis of the column space. The reduction supplies one valid answer deterministically; where a particular subset is preferred for engineering reasons, the columns can be reordered before reducing, which changes which subset is selected.

Rank, dimension and what the count means

The number of selected columns is r=rank(A), which is therefore both the number of non-zero rows of the reduced form and the dimension of the column space. Interpreted in an application, r is the number of genuinely independent objects among the n on offer — independent reactions, independent load cases, non-redundant predictors — and nr is the count of redundancies, each of which the reduced form makes explicit.

The numerical counterpart

Exact row reduction makes a discontinuous choice: an arbitrarily small perturbation can move a pivot and change the selected subset entirely. The numerically respectable version of this procedure is a column-pivoted QR factorisation, which selects columns greedily by largest remaining norm and produces a permutation identifying a well-conditioned subset. Interpolative decompositions extend the idea, approximating the whole matrix using a small number of its actual columns with a bounded coefficient matrix.

Procedure: extracting a basis of original columns

Keep the original matrixWork on a copy. The original columns are the answer, so overwriting A during reduction destroys the result before it is read.
Reduce to reduced row-echelon formApply Gauss-Jordan elimination to A alone. No augmented column is involved — this construction is about the matrix, not about any particular system.
Record the pivot indices DScan the reduced matrix for leading ones and note the column index of each. There are exactly r of them, and r is the rank.
Return to the original and selectTake columns d1,,dr of A. Discard the reduced matrix at this point; its columns are not part of the answer.
Read the dependency relationsEach non-pivot column of the reduced form lists the coefficients expressing the corresponding original column in terms of the selected ones. Verify one of them by direct substitution.

Equations

Pivot index set

EQ-CSSOC-01
D={d1,d2,,dr},1d1<d2<<drn

The ordered indices of the columns of the reduced form containing leading ones. The count r is the rank of the matrix.

The selected basis

EQ-CSSOC-02
T={Ad1,Ad2,,Adr},C(A)=span(T)

Indices from the reduced matrix, vectors from the original. The set is linearly independent and spans the whole column space.

Dimension of the column space

EQ-CSSOC-03
dimC(A)=|T|=r=rank(A)

A basis fixes the dimension. This identifies rank, the number of non-zero rows of the reduced form and the size of the minimal spanning set as one quantity.

Dependency relation for a non-pivot column

EQ-CSSOC-04
Aj=k=1r[B]kjAdk,jD

The entries of a non-pivot column of the reduced form are exactly the coefficients that rebuild the corresponding original column from the selected ones.

Preserved null space, preserved dependencies

EQ-CSSOC-05
N(A)=N(B)same dependence pattern among columns

The mechanism behind the theorem. Row operations preserve which combinations of columns vanish, which is why a selection made on B is valid for A.

The column spaces are generally different

EQ-CSSOC-06
C(A)C(B)in general,butdimC(A)=dimC(B)

Equal dimensions, different subspaces. This is precisely why the answer must be assembled from the original columns.

Matrix form of the selection

EQ-CSSOC-07
AP=[ADAF],AF=ADW

Permuting the selected columns to the front exhibits the remaining columns as ADW for a coefficient matrix W read from the reduced form. This is the exact form of an interpolative decomposition.

Variable Definitions

Symbols used on this page
SymbolNameMeaningDomain / type
AOriginal matrixThe matrix whose column space is being describedm x n matrix
BReduced formThe reduced row-echelon form of A, used only to locate pivots and coefficientsm x n matrix
AjColumn of AThe j-th original column, a candidate basis memberelement of C^m
DPivot index setIndices of the columns of B holding leading onessubset of 1..n
rRankNumber of pivot columns; dimension of the column space0 to min(m,n)
TBasisThe selected original columns, independent and spanningsubset of C^m
C(A)Column spaceSpan of all columns of A; the set being given a basissubspace of C^m
N(A)Null spacePreserved by row operations; the reason the dependency pattern survives reductionsubspace of C^n
WCoefficient matrixExpresses the non-selected columns in terms of the selected onesr x (n-r) matrix

Worked Numerical Example

Problem statement

A structure is instrumented at four locations. Five candidate excitation patterns are available in the laboratory, and the measured response to each is recorded as a column of a 4×5 matrix. Determine the smallest set of actual excitation patterns whose responses span every response the rig can produce, and express the discarded patterns in terms of the retained ones.

  1. Assemble the response matrix

    Each column holds the four measured responses to one excitation pattern. All five patterns are physically realisable, so any basis chosen must consist of real columns — a fictitious combination of patterns cannot be applied to the rig.

    A=[10212011112130212001]
  2. Reduce to reduced row-echelon form

    Row-reduce A alone; no right-hand side is involved. Three non-zero rows appear, so rank(A)=3: only three of the five patterns are independent, and the response space is a three-dimensional subspace of 4.

    B=[10201011000001100000]
  3. Record the pivot columns

    Leading ones sit in columns 1, 2 and 4, so D={1,2,4}. Columns 3 and 5 are non-pivot, which marks excitation patterns 3 and 5 as redundant. Note that this is the only information taken from B.

    D={1,2,4},r=|D|=3
  4. Return to the original matrix

    Collect columns 1, 2 and 4 of A — not of B. These three genuine excitation patterns form a basis of the response space.

    T={[1021],[0112],[1100]}
  5. Read and verify the redundancy relations

    Column 3 of B is [210]t against the pivot rows, so A3=2A1A2. Column 5 is [101]t, so A5=A1+A4. Both check by direct substitution.

    2[1021][0112]=[2130]=A3,[1021]+[1100]=[2121]=A5
  6. Demonstrate why the reduced columns would be wrong

    The pivot columns of B are e1, e2 and e3, which span the set of vectors whose fourth entry is zero. But A1 has fourth entry 1, so A1C(A) while A1C(B). The two spaces both have dimension 3 and are nevertheless different, which is exactly the trap the theorem is designed to avoid.

  7. Note that other valid choices exist

    The set {A1,A3,A4} is also a basis, since A2=2A1A3 recovers the discarded column. Row reduction returns the leftmost valid choice; if pattern 3 were cheaper to apply than pattern 2, reordering the columns before reducing would select it instead.

  8. State the test programme

    Applying only excitation patterns 1, 2 and 4 characterises the rig completely. The response to pattern 3 is predicted as 2 times the response to pattern 1 minus the response to pattern 2, and the response to pattern 5 as the sum of the responses to patterns 1 and 4. Both predictions are available before any further test is run and can be used as a validation check if the tests are performed anyway.

Result

Three of the five excitation patterns suffice: the response space has dimension 3, and patterns 1, 2 and 4 span it. Because the basis consists of actual columns, the answer is a test programme rather than an abstraction — there is no need to synthesise a combination of excitations that the rig cannot physically apply. The reduction also supplies exact predictions for the two discarded patterns, converting 40% of the planned tests into validation checks.

Applications &amp; Industry Use

Test and validation engineering

Minimal test programmes

When each candidate test contributes a column of measured response, the pivot columns identify a minimal subset of real tests that characterises the system completely. The remaining tests are predicted exactly by the dependency relations, so they can be dropped from the schedule or retained as independent validation.

Chemical and process engineering

Independent reaction sets

The stoichiometric matrix has one column per candidate reaction. Selecting the pivot columns yields a set of genuine reactions that spans all achievable composition changes, which is what a kinetic model requires — a linear combination of reactions is not itself a reaction with a rate law.

Statistics and data science

Removing collinear predictors

Exactly collinear columns of a design matrix make the model unidentifiable. Selecting the pivot columns retains a maximal set of real predictors, keeping coefficients interpretable in the original variables — unlike principal components, which span the same space with combinations nobody can name.

Structural engineering

Choosing redundants in a primary structure

In the force method, an indeterminate structure is analysed by removing redundant members until a determinate primary structure remains. Selecting independent columns of the equilibrium matrix identifies which actual members may be released, and how many, without changing the space of resolvable load patterns.

Numerical linear algebra

Interpolative and CUR decompositions

Approximating a large matrix by a small number of its own columns preserves sparsity, non-negativity and physical meaning, none of which survive a singular value decomposition. The selection is made by column-pivoted QR or randomised sampling, but the structure is exactly that of this theorem: retained columns plus a coefficient matrix.

Power systems and instrumentation

Sensor and measurement placement

With one column per candidate sensor location, the pivot columns give a minimal set of physical placements whose measurements span the observable space. Since sensors are installed at real locations, a basis of actual columns is the only kind that can be procured and mounted.

Design Considerations

Reduce a copy, never the original

The answer lives in the original matrix, so an in-place reduction destroys it. In code this means taking an explicit copy before elimination; in hand computation it means writing the reduced form beside the original rather than over it. This trivial discipline prevents the most common practical failure of the whole procedure.

Order the columns to control which are selected

Row reduction selects greedily from the left, so column order determines the outcome among equally valid choices. Where some columns are cheaper, more reliable or more interpretable, move them to the front before reducing. This is a legitimate and often decisive design lever, and it costs nothing.

Prefer pivoted QR for floating-point data

The pivot pattern of a reduced row-echelon form is discontinuous in the entries, so on measured data the selection can flip under noise far smaller than the measurement uncertainty. Column-pivoted QR chooses by largest remaining norm, produces a well-conditioned subset, and carries an explicit tolerance for the rank decision.

Distinguish exact redundancy from near redundancy

This theorem addresses exact linear dependence. Two columns that are merely highly correlated are both pivot columns, and both survive the selection while leaving the problem badly conditioned. Detecting near-dependence needs singular values or a condition estimate, and the remedy is regularisation or deliberate column removal rather than the pivot pattern.

Use the dependency relations, do not discard them

The non-pivot columns of the reduced form are not waste; they are the exact recipe for reconstructing every discarded column. In an engineering setting they are predictions that can be checked against reality, and a disagreement is direct evidence that the linear model is incomplete.

Remember that this basis need not be orthogonal

The selected columns are independent but generally far from orthogonal, so coordinates relative to them still require a linear solve. Where repeated projection onto the column space is needed, follow the selection with Gram-Schmidt or a QR factorisation — at the cost of losing the property that the basis vectors are actual columns.

Standards &amp; Codes

Notation, interchange and numerical standards that govern how this material is written down, stored and computed in production systems.

Applicable standards, conventions and reference implementations
ReferenceTitleRelevance to this topic
LAPACK / BLAS referenceLinear Algebra PACKage reference implementationxGEQP3 performs QR with column pivoting and returns the permutation identifying a well-conditioned subset of original columns — the numerically robust counterpart of the pivot selection described here.
ISO 80000-2Quantities and units — Part 2: MathematicsStandardises index sets, subscript conventions and the notation for a span, all of which are needed to state precisely that indices come from one matrix and vectors from another.
IEEE 754-2019IEEE Standard for Floating-Point ArithmeticRounding makes exact linear dependence practically undetectable, so the pivot pattern computed in floating point is a tolerance-dependent judgement rather than a property of the data.
ISO 5725Accuracy (trueness and precision) of measurement methods and resultsMeasured columns carry uncertainty, and any claim that one column is exactly a combination of others must be assessed against that uncertainty rather than against exact arithmetic.
ISO/IEC 40314Mathematical Markup Language (MathML) Version 3.0Encodes the subscripted index notation Adk semantically, so the distinction between the selection index and the column it selects survives into machine-readable form.

Material Selection

For a mathematical topic, "material" is the numeric representation: the scalar field, storage format and precision the computation is built from.

Representation and precision selection
RepresentationSelect whenTrade-off
Exact rational arithmeticSymbolic or integer matrices where exact dependence is meaningful, such as stoichiometry and combinatorial models.The pivot pattern and the dependency coefficients are exact and reproducible; but coefficient growth limits practical size, and the answer is brittle if the entries were themselves rounded measurements.
IEEE 754 binary64 with column-pivoted QRMeasured or estimated data of moderate size.Selects a well-conditioned subset with a documented rank tolerance, at roughly twice the cost of an unpivoted factorisation; the selected subset may differ from the leftmost-greedy one.
Singular value decomposition for the rank, QR for the selectionRank is uncertain and the subset must be defensible.The most reliable rank determination available, followed by a selection of actual columns; costs roughly ten times an LU factorisation but removes the main source of disputed results.
Randomised interpolative decompositionVery large matrices where only an approximate basis of columns is needed.Cost grows nearly linearly in the number of entries and the selected columns come with a bounded coefficient matrix; the result is probabilistic and the failure probability must be stated.
Sparse storage with sparse QRLarge structured matrices from networks, finite elements or circuits.Selecting original columns preserves sparsity exactly, which is a decisive advantage over any method producing dense combinations; fill-in during factorisation still requires a good ordering.
Finite field arithmeticCoding theory and combinatorial designs, where columns are drawn from a finite field.Dependence is exact and cheap to test with no tolerance at all, but the pivot pattern over a finite field may differ from the pattern over the rationals for the same integer matrix.

Manufacturing Notes

Implementation notes — how the result is actually produced by hand, by algorithm and by library, including cost and numerical behaviour.

Cost of the procedure

The dominant cost is the reduction itself, about 23mn2 operations for a dense m×n matrix, after which the selection is free: it is a scan of the reduced matrix for leading ones. Extracting the chosen columns is a copy of mr entries. There is no cheaper way to obtain both the pivot pattern and the dependency coefficients in one pass.

Hand procedure

Write the original matrix at the top of the page and reduce underneath it, so the two remain visible together. Circle the leading ones and write their column indices as a list before doing anything else. Then draw the answer by copying columns from the top matrix. Physically separating the two matrices on the page is the most effective guard against selecting from the wrong one.

Library behaviour

SymPy's Matrix.columnspace returns original columns exactly as this theorem prescribes, and rref returns the pivot tuple alongside the reduced matrix. NumPy offers no reduced row-echelon form at all; the idiomatic route is scipy.linalg.qr(A, pivoting=True), taking the first r entries of the permutation vector as the selected column indices. MATLAB's rref returns pivot indices as a second output for the same purpose.

Verification technique

Two checks confirm the result. For independence, reduce the m×r matrix of selected columns and confirm that every one of its columns is a pivot column. For spanning, verify that each discarded column satisfies its predicted dependency relation by direct substitution into the original matrix — not the reduced one, since an arithmetic slip during reduction leaves a self-consistent but wrong result.

Why the pivot pattern is fragile

Consider a matrix with a column that is exactly a multiple of another. Perturbing one entry by 1016 makes the pair independent, raises the rank by one, and changes the selected subset. Exact reduction therefore reports a different answer for data that is physically identical. This is the whole argument for rank-revealing factorisations with explicit tolerances in any pipeline that consumes measurements.

Failure Modes &amp; Common Mistakes

Failure modes, root causes and prevention
Failure mode / mistakeImpactRoot causePrevention & detection
Taking the columns of the reduced matrixhighReading the basis off B instead of returning to A, producing a set of the correct size that spans the wrong subspace.Use B only to obtain the index set D; write those indices down and then copy columns from the original matrix.
Reducing the matrix in placehighOverwriting A during elimination, so the original columns no longer exist when the selection is made.Reduce a copy. In code this means an explicit clone; on paper it means writing the reduced form below the original.
Assuming the pivots are the first r columnsmediumGeneralising from examples where the leading columns happen to be independent.Record D explicitly from the reduced matrix rather than inferring positions; non-pivot columns can appear anywhere, including in the first position when a column is zero.
Confusing the row-space and column-space constructionsmediumApplying the row-space rule — take the non-zero rows of the reduced form — to columns, or vice versa.Remember the asymmetry: row operations preserve the row space so B may be used directly, but destroy the column space so A must be revisited.
Treating the selected subset as the only valid basislowAssuming the reduction produces a canonical answer, when it merely produces the leftmost greedy one.State that any r independent columns form a basis; reorder the columns before reducing when a particular subset is preferred.
Applying the exact procedure to noisy datahighRow-reducing measured columns in floating point and treating the resulting pivot pattern as a physical fact.Use column-pivoted QR or a singular value decomposition with an explicit tolerance, and report the tolerance with the selection.
Ignoring near-dependencemediumConcluding that all pivot columns are healthy when two of them are nearly parallel, leaving the basis badly conditioned.Check the condition number or the smallest singular value of the selected submatrix, not merely its rank.
Discarding the dependency coefficientslowRecording only which columns were removed, losing the exact relations that reconstruct them.Save the non-pivot columns of the reduced form as the coefficient matrix W; they are the reconstruction recipe and cost nothing extra to retain.

FAQs

Why must the basis be built from columns of the original matrix?

Because row operations change the column space. They preserve which combinations of columns vanish, which is how the reduced form correctly identifies which columns are independent, but the reduced columns themselves span a different subspace of the same dimension. Using them gives a set of the right size that is a basis for the wrong space.

How do I know the selected columns really span the whole column space?

Because every non-pivot column of the reduced form is a combination of its pivot columns, and the coefficients transfer unchanged to the original matrix. So each discarded column of A is a combination of the selected ones, and any element of C(A) can be rewritten using only the selection.

Is the basis produced by this method unique?

No. Row reduction makes a greedy left-to-right choice, but in general many subsets of r columns are independent and any of them is a valid basis. If a particular subset is preferred — because those columns are cheaper, more accurate or more meaningful — permute the columns before reducing and the selection will change accordingly.

Why can I use the reduced matrix directly for the row space but not for the column space?

Because row operations replace each row by a combination of rows, and the process is reversible, so the span of the rows is unchanged. Nothing analogous is done to the columns: they are altered entry by entry, and their span moves. The row space survives reduction; the column space does not.

What does this construction give me beyond a basis?

Every dependency relation. Each non-pivot column of the reduced form lists the coefficients that rebuild the corresponding original column from the selected ones. In an application those are quantitative predictions about the discarded objects, available at no extra cost and checkable against measurement.

Can I use this procedure on floating-point measurement data?

Only with care. The pivot pattern is discontinuous in the entries, so a rounding error can promote a dependent column to independent and change the answer. The numerically defensible alternative is a column-pivoted QR factorisation or a singular value decomposition with a stated tolerance, both of which still return actual columns.

How does this relate to reducing a general spanning set?

It is the same construction applied to a specific spanning set. Given any finite set of vectors, make them the columns of a matrix, reduce, and keep the vectors at pivot positions; the result is an independent subset with the same span. The column space case is simply the version where the matrix already exists.

References

  1. Beezer, R. A. A First Course in Linear Algebra, Version 0.70. University of Puget Sound, 2006. Section CRS, subsection CSSOC. Licensed under the GNU Free Documentation License v1.2.
  2. ISO 80000-2:2019, Quantities and units — Part 2: Mathematics. International Organization for Standardization.
  3. Golub, G. H. and Van Loan, C. F. Matrix Computations, 4th edition. Johns Hopkins University Press, 2013.
  4. Martinsson, P.-G. and Tropp, J. A. Randomized Numerical Linear Algebra: Foundations and Algorithms. Acta Numerica, 2020.
  5. Mahoney, M. W. and Drineas, P. CUR Matrix Decompositions for Improved Data Analysis. Proceedings of the National Academy of Sciences, 2009.
  6. Anderson, E. et al. LAPACK Users' Guide, 3rd edition. Society for Industrial and Applied Mathematics, 1999.

AI Suggested Questions

  • Give me a matrix where the column space of the reduced row-echelon form is disjoint from the column space of the original except at the zero vector.
  • Show how permuting the columns before row reduction changes which subset is selected, on a matrix of rank 2 with four columns.
  • Compare the subset chosen by row reduction with the subset chosen by column-pivoted QR on a matrix with two nearly parallel columns.
  • Derive the coefficient matrix of an interpolative decomposition from the reduced row-echelon form and explain the bound on its entries.
  • Why does preserving the null space under row operations guarantee that the same columns are independent before and after reduction?
  • How would I choose a minimal set of physical sensors from a candidate list so that the selected submatrix is also well conditioned?

Related Calculators

Continue learning

Column Spaces and Systems of EquationsArticle · Engineering MathematicsNEXT LESSON →Column Space of a Nonsingular MatrixArticle · Engineering MathematicsOrthogonal and Unitary MatricesArticle · Engineering MathematicsRow Space of a MatrixArticle · Engineering Mathematics