Skip to content

Commit 15542bd

Browse files
committed
chap 3.2
1 parent 2479e04 commit 15542bd

File tree

115 files changed

+12582
-745
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+12582
-745
lines changed

.vscode/settings.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
22
"jupyter.jupyterServerType": "local",
3-
"restructuredtext.confPath": "${workspaceFolder}\\docs\\source"
3+
"restructuredtext.confPath": "${workspaceFolder}\\docs\\source",
4+
"python.pythonPath": "C:\\Users\\ziniu\\anaconda3\\python.exe"
45
}

docs/build/html/.buildinfo

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 336bba21941d21d130985b6ac50e1c02
3+
config: 920f00d60fc3f6622021de6ba88b96a8
44
tags: 645f666f9bcd5a90fca523b33c5a78b7
-14 Bytes
Binary file not shown.
-14 Bytes
Binary file not shown.
-14 Bytes
Binary file not shown.
-17 Bytes
Binary file not shown.
2 Bytes
Binary file not shown.
-14 Bytes
Binary file not shown.
-18 Bytes
Binary file not shown.
-16 Bytes
Binary file not shown.
-19 Bytes
Binary file not shown.
-22 Bytes
Binary file not shown.
-14 Bytes
Binary file not shown.
-14 Bytes
Binary file not shown.
2 Bytes
Binary file not shown.
-14 Bytes
Binary file not shown.
6.01 KB
Binary file not shown.
-14 Bytes
Binary file not shown.
-14 Bytes
Binary file not shown.
-14 Bytes
Binary file not shown.
2 Bytes
Binary file not shown.
-819 Bytes
Binary file not shown.
2 Bytes
Binary file not shown.

docs/build/html/_sources/chap3/chap3-2.rst.txt

+31-1
Original file line numberDiff line numberDiff line change
@@ -182,5 +182,35 @@ The Rank of a Matrix
182182
**DEFINITION OF RANK**: The rank of :math:`A` is the number of pivots.
183183
This number is :math:`r`.
184184

185+
**Every "free column" is a combination of earlier pivot columns**.
186+
185187
Rank One
186-
--------
188+
--------
189+
190+
Matrices of **rank one** have only *one pivot*.
191+
*Every row is a multiple of the pivot row*.
192+
193+
**Rank one matrix**:
194+
195+
.. math::
196+
197+
A=\bb 1&3&10\\2&6&20\\3&9&30 \eb\rightarrow R=\bb 1&3&10\\0&0&0\\0&0&0 \eb.
198+
199+
:math:`A =` **column times row** :math:`= \u\v^T`:
200+
201+
.. math::
202+
203+
\bb 1&3&10\\2&6&20\\3&9&30 \eb=\bb 1\\2\\3 \eb\bb 1&3&10 \eb.
204+
205+
With rank one :math:`A\x=\0` is easy to understand.
206+
That equation :math:`\u(\v^T\x)=\0` leads us to :math:`\v^t\x=0`.
207+
All vectors :math:`\x` in the nullspace must be orthogonal to :math:`\v` in the row space.
208+
This is the geometry when :math:`r=1`:
209+
*row space = line*, *null space = perpendcular plane*.
210+
211+
The second definition of rank: **the number of independent rows**.
212+
This is also **the number of independent columns**.
213+
214+
The third definition of rank: **the "dimention" of the column space**.
215+
It is also **the dimension of the row space**.
216+
:math:`n-r` is **the dimension of the nullspace**.

0 commit comments

Comments
 (0)