Demonstration 1.
Augment with the zero vector, using the matrix method .augment()
and the vector constructor zero\_vector(QQ, 5)
. Then row-reduce to use Definition NM. Or instead, do not augment and apply Theorem NMRRI.
📚 The CoCalc Library - books, templates and other resources
Important: to view this notebook properly you will need to execute the cell above, which assumes you have an Internet connection. It should already be selected, or place your cursor anywhere above to select. Then press the "Run" button in the menu bar above (the right-pointing arrowhead), or press Shift-Enter on your keyboard.
ParseError: KaTeX parse error: \newcommand{\lt} attempting to redefine \lt; use \renewcommand
First, a guaranteed nonsingular matrix, created at random.
Augment with the zero vector, using the matrix method .augment()
and the vector constructor zero\_vector(QQ, 5)
. Then row-reduce to use Definition NM. Or instead, do not augment and apply Theorem NMRRI.
Build some random vectors with random\_vector(QQ, 5)
, augment the matrix and row-reduce. There will always be a unique solution to the linear system represented by the augmented matrix. This is Theorem NMUS.
Instead—cheap, easy and powerful:
Now, a carefully crafted singular matrix.
Augment with the zero vector and row-reduce (Definition NM), or don't augment and row-reduce (Theorem NMRRI).]
A random vector of constants will only rarely build a consistent system when paired with B
. Try it. But this is not a theorem, see the vector c
below.
Instead—cheap, easy and powerful:
Two carefully crafted vectors for linear systems with B
as coefficient matrix.
Which of these two column vectors will create a consistent system for this singular coefficient matrix? (Stay tuned.)
A null space is called a in Sage. It's description contains a lot of things we do not understand yet.
But we can test membership in the null space, which is the most basic property of a set. Try u in NS
and then repeat with v
.
This work is Copyright 2016–2019 by Robert A. Beezer. It is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.