Column Space

Description

We can use Sage to find the column space of a given matrix. The Sage cell below computes the column space of

(1)
\begin{align} A = \begin{pmatrix} 2 & 3 & 5 \\ 7 & 11 & 13 \\ 17 & 19 & 23 \end{pmatrix} \end{align}

over the rational numbers, $\mathbb Q$.

Sage Cell

Code

A = matrix(QQ, [[ 2, 3, 5],
                [ 7,  11, 13],
                [17,  19,  23]])
A.column_space()

Options

none

Tags

CC:

Primary Tags: Linear Algebra: Euclidean spaces

Secondary Tags: Euclidean spaces: Row, column, and null spaces

Related Cells

Attribute

Permalink:

Author: Rob Beezer

Date: 02 Apr 2020 22:11

Submitted by: Zane Corbiere

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License