Section MM Matrix Multiplication
Subsection MVP Matrix-Vector Product
We have repeatedly seen the importance of forming linear combinations of the columns of a matrix. As one example of this, the oft-used Theorem SLSLC, said that every solution to a system of linear equations gives rise to a linear combination of the column vectors of the coefficient matrix that equals the vector of constants. This theorem, and others, motivate the following central definition.Definition MVP. Matrix-Vector Product.
Suppose A is an mΓn matrix with columns A1,A2,A3,β¦,An and u is a vector of size n. Then the matrix-vector product of A with u is the linear combination
Example MTV. A matrix times a vector.
Consider
Then
Theorem SLEMM. Systems of Linear Equations as Matrix Multiplication.
The set of solutions to the linear system LS(A,b) equals the set of solutions for x in the vector equation Ax=b.
Proof.
This theorem says that two sets (of solutions) are equal. So we need to show that one set of solutions is a subset of the other, and vice versa (Definition SE). Let \(\vectorlist{A}{n}\) be the columns of \(A\text{.}\) Both of these set inclusions then follow from the following chain of equivalences (Proof Technique E).
Example MNSLE. Matrix notation for systems of linear equations.
Consider the system of linear equations from Example NSLE.
has coefficient matrix and vector of constants
and so will be described compactly by the vector equation \(A\vect{x}=\vect{b}\text{.}\)
Example MBC. Money's best cities.
Every year Money magazine selects several cities in the United States as the βbestβ cities to live in, based on a wide array of statistics about each city. This is a small example of how the editors of Money might arrive at a single number that consolidates the statistics about a city. We will analyze Los Angeles, Chicago and New York City, based on four criteria: average high temperature in July (Farenheit), number of colleges and universities in a 30-mile radius, number of toxic waste sites in the Superfund environmental clean-up program and a personal crime index based on FBI statistics (average = 100, smaller is safer). It should be apparent how to generalize the example to a greater number of cities and a greater number of statistics.
We begin by building a table of statistics. The rows will be labeled with the cities, and the columns with statistical categories. These values are from Money's website in early 2005.
City | Temp | Colleges | Superfund | Crime |
Los Angeles | 77 | 28 | 93 | 254 |
Chicago | 84 | 38 | 85 | 363 |
New York | 84 | 99 | 1 | 193 |
Conceivably these data might reside in a spreadsheet. Now we must combine the statistics for each city. We could accomplish this by weighting each category, scaling the values and summing them. The sizes of the weights would depend upon the numerical size of each statistic generally, but more importantly, they would reflect the editors opinions or beliefs about which statistics were most important to their readers. Is the crime index more important than the number of colleges and universities? Of course, there is no right answer to this question.
Suppose the editors finally decide on the following weights to employ: temperature, \(0.23\text{;}\) colleges, \(0.46\text{;}\) Superfund, \(-0.05\text{;}\) crime, \(-0.20\text{.}\) Notice how negative weights are used for undesirable statistics. Then, for example, the editors would compute for Los Angeles
This computation might remind you of an inner product, but we will produce the computations for all of the cities as a matrix-vector product. Write the table of raw statistics as a matrix
and the weights as a vector
then the matrix-vector product (Definition MVP) yields
This vector contains a single number for each of the cities being studied, so the editors would rank New York best (\(26.21\)), Los Angeles next (\(-24.86\)), and Chicago third (\(-40.05\)). Of course, the mayor's offices in Chicago and Los Angeles are free to counter with a different set of weights that cause their city to be ranked best. These alternative weights would be chosen to play to each cities' strengths, and minimize their problem areas.
Notice how the vector of weights, \(\vect{w}\text{,}\) is naturally indexed by the four statistics used, while the matrix-vector product, \(T\vect{w}\text{,}\) is naturally indexed by the three cities. If a speadsheet were used to make these computations, a row of weights would be entered somewhere near the table of data and the formulas in the spreadsheet would effect a matrix-vector product. This example is meant to illustrate how βlinearβ computations (addition, multiplication) can be organized as a matrix-vector product.
Another example would be the matrix of numerical scores on examinations and exercises for students in a class. The rows would be indexed by students and the columns would be indexed by exams and assignments. The instructor could then assign weights to the different exams and assignments, and via a matrix-vector product, compute a single score for each student.
Theorem EMMVP. Equal Matrices and Matrix-Vector Products.
Suppose that A and B are mΓn matrices such that Ax=Bx for every xβCn. Then A=B.
Proof.
We are assuming \(A\vect{x}=B\vect{x}\) for all \(\vect{x}\in\complex{n}\text{,}\) so we can employ this equality for any choice of the vector \(\vect{x}\text{.}\) However, we will limit our use of this equality to the standard unit vectors, \(\vect{e}_j\text{,}\) \(1\leq j\leq n\) (Definition SUV). For all \(1\leq j\leq n\text{,}\) \(1\leq i\leq m\text{,}\)
So by Definition ME the matrices \(A\) and \(B\) are equal, as desired.
Sage MVP. Matrix-Vector Product.
A matrix-vector product is very natural in Sage, and we can check the result against a linear combination of the columns.
Notice that when a matrix is square, a vector of the correct size can be used in Sage in a product with a matrix by placing the vector on either side of the matrix. However, the two results are not the same, and we will not have ocassion to place the vector on the left any time soon. So, despite the possibility, be certain to keep your vectors on the right side of a matrix in a product.
Since a matrix-vector product forms a linear combination of columns of a matrix, it is now very easy to check if a vector is a solution to a system of equations. This is basically the substance of Theorem SLEMM. Here we construct a system of equations and construct two solutions and one non-solution by applying Theorem PSPHS. Then we use a matrix-vector product to verify that the vectors are, or are not, solutions.
We can now explain the difference between βleftβ and βrightβ variants of various Sage commands for linear algebra. Generally, the direction refers to where the vector is placed in a matrix-vector product. We place a vector on the right and understand this to mean a linear combination of the columns of the matrix. Placing a vector to the left of a matrix can be understood, in a manner totally consistent with our upcoming definition of matrix multiplication, as a linear combination of the rows of the matrix.
So the difference between A.solve_right(v)
and A.solve_left(v)
is that the former asks for a vector x
such that A*x == v
, while the latter asks for a vector x
such that x*A == v
. Given Sage's preference for rows, a direction-neutral version of a command, if it exists, will be the βleftβ version. For example, there is a .right_kernel()
matrix method, while the .left_kernel()
and .kernel()
methods are identical β the names are synonyms for the exact same routine.
So when you see a Sage command that comes in βleftβ and βrightβ variants figure out just what part of the defined object involves a matrix-vector product and form an interpretation from that.
Subsection MM Matrix Multiplication
We now define how to multiply two matrices together. Stop for a minute and think about how you might define this new operation. Many books would present this definition much earlier in the course. However, we have taken great care to delay it as long as possible and to present as many ideas as practical based mostly on the notion of linear combinations. Towards the conclusion of the course, or when you perhaps take a second course in linear algebra, you may be in a position to appreciate the reasons for this. For now, understand that matrix multiplication is a central definition and perhaps you will appreciate its importance more by having saved it for later.Definition MM. Matrix Multiplication.
Suppose A is an mΓn matrix and B1,B2,B3,β¦,Bp are the columns of an nΓp matrix B. Then the matrix product of A with B is the mΓp matrix where column i is the matrix-vector product ABi. Symbolically
Example PTM. Product of two matrices.
Set
Then
Example MMNC. Matrix multiplication is not commutative.
Set
Then we have two square, \(2\times 2\) matrices, so Definition MM allows us to multiply them in either order. We find
so \(AB\neq BA\text{.}\) Not even close. It should not be hard for you to construct other pairs of matrices that do not commute (try a couple of \(3\times 3\)'s). Can you find a pair of non-identical matrices that do commute?
Subsection MMEE Matrix Multiplication, Entry-by-Entry
While certain βnaturalβ properties of multiplication do not hold, many more do. In the next subsection, we will state and prove the relevant theorems. But first, we need a theorem that provides an alternate means of multiplying two matrices. In many texts, this would be given as the definition of matrix multiplication. We prefer to turn it around and have the following formula as a consequence of our definition. It will prove useful for proofs of matrix equality, where we need to examine products of matrices, entry-by-entry.Theorem EMP. Entries of Matrix Products.
Suppose A is an mΓn matrix and B is an nΓp matrix. Then for 1β€iβ€m, 1β€jβ€p, the individual entries of AB are given by
Proof.
Let the vectors \(\vectorlist{A}{n}\) denote the columns of \(A\) and let the vectors \(\vectorlist{B}{p}\) denote the columns of \(B\text{.}\) Then for \(1\leq i\leq m\text{,}\) \(1\leq j\leq p\text{,}\)
Example PTMEE. Product of two matrices, entry-by-entry.
Consider again the two matrices from Example PTM.
Then suppose we just wanted the entry of \(AB\) in the second row, third column.
Notice how there are 5 terms in the sum, since 5 is the common dimension of the two matrices (column count for \(A\text{,}\) row count for \(B\)). In the conclusion of Theorem EMP, it would be the index \(k\) that would run from 1 to 5 in this computation. Here is a bit more practice.
The entry of third row, first column.
To get some more practice on your own, complete the computation of the other 10 entries of this product. Construct some other pairs of matrices (of compatible sizes) and compute their product two ways. First use Definition MM. Since linear combinations are straightforward for you now, this should be easy to do and to do correctly. Then do it again, using Theorem EMP. Since this process may take some practice, use your first computation to check your work.
Sage MM. Matrix Multiplication.
Matrix multiplication is very natural in Sage, and is just as easy as multiplying two numbers. We illustrate Theorem EMP by using it to compute the entry in the first row and third column.
Note in the final statement, we could replace A.ncols()
by B.nrows()
since these two quantities must be identical. You can experiment with the last statement by editing it to compute any of the five other entries of the matrix product.
Square matrices can be multiplied in either order, but the result will almost always be different. Execute repeatedly the following products of two random \(4\times 4\) matrices, with a check on the equality of the two products in either order. It is possible, but highly unlikely, that the two products will be equal. So if this compute cell ever produces True
it will be a minor miracle.
Subsection PMM Properties of Matrix Multiplication
In this subsection, we collect properties of matrix multiplication and its interaction with the zero matrix (Definition ZM), the identity matrix (Definition IM), matrix addition (Definition MA), scalar matrix multiplication (Definition MSM), the inner product (Definition IP), conjugation (Theorem MMCC), and the transpose (Definition TM). Whew! Here we go. These are great proofs to practice with, so try to concoct the proofs before reading them, they will get progressively more complicated as we go.Theorem MMZM. Matrix Multiplication and the Zero Matrix.
Suppose A is an mΓn matrix. Then
- AOnΓp=OmΓp.
- OpΓmA=OpΓn.
Proof.
We will prove (1) and leave (2) to you. Entry-by-entry, for \(1\leq i\leq m\text{,}\) \(1\leq j\leq p\text{,}\)
So by the definition of matrix equality (Definition ME), the matrices \(A\zeromatrix_{n\times p}\) and \(\zeromatrix_{m\times p}\) are equal.
Theorem MMIM. Matrix Multiplication and Identity Matrix.
Suppose A is an mΓn matrix. Then
- AIn=A
- ImA=A
Proof.
Again, we will prove (1) and leave (2) to you. Entry-by-entry, For \(1\leq i\leq m\text{,}\) \(1\leq j\leq n\text{,}\)
So the matrices \(A\) and \(AI_n\) are equal, entry-by-entry, and by the definition of matrix equality (Definition ME) we can say they are equal matrices.
Theorem MMDAA. Matrix Multiplication Distributes Across Addition.
Suppose A is an mΓn matrix and B and C are nΓp matrices and D is a pΓs matrix. Then
- A(B+C)=AB+AC.
- (B+C)D=BD+CD.
Proof.
We will do (1), you do (2). Entry-by-entry, for \(1\leq i\leq m\text{,}\) \(1\leq j\leq p\text{,}\)
So the matrices \(A(B+C)\) and \(AB+AC\) are equal, entry-by-entry, and by the definition of matrix equality (Definition ME) we can say they are equal matrices.
Theorem MMSMM. Matrix Multiplication and Scalar Matrix Multiplication.
Suppose A is an mΓn matrix and B is an nΓp matrix. Let Ξ± be a scalar. Then Ξ±(AB)=(Ξ±A)B=A(Ξ±B).
Proof.
These are equalities of matrices. We will do the first one, the second is similar and will be good practice for you. For \(1\leq i\leq m\text{,}\) \(1\leq j\leq p\text{,}\)
So the matrices \(\alpha(AB)\) and \((\alpha A)B\) are equal, entry-by-entry, and by the definition of matrix equality (Definition ME) we can say they are equal matrices.
Theorem MMA. Matrix Multiplication is Associative.
Suppose A is an mΓn matrix, B is an nΓp matrix and D is a pΓs matrix. Then A(BD)=(AB)D.
Proof.
A matrix equality, so we will go entry-by-entry, no surprise there. For \(1\leq i\leq m\text{,}\) \(1\leq j\leq s\text{,}\)
We can switch the order of the summation since these are finite sums,
\begin{align*} &=\sum_{\ell=1}^{p}\sum_{k=1}^{n}\matrixentry{A}{ik}\matrixentry{B}{k\ell}\matrixentry{D}{\ell j}&& \knowl{./knowl/property-CACN.html}{\text{Property CACN}}\\ \end{align*}As \(\matrixentry{D}{\ell j}\) does not depend on the index \(k\text{,}\) we can use distributivity to move it outside of the inner sum,
\begin{align*} &=\sum_{\ell=1}^{p}\matrixentry{D}{\ell j}\left(\sum_{k=1}^{n}\matrixentry{A}{ik}\matrixentry{B}{k\ell}\right)&& \knowl{./knowl/property-DCN.html}{\text{Property DCN}}\\ &=\sum_{\ell=1}^{p}\matrixentry{D}{\ell j}\matrixentry{AB}{i\ell}&& \knowl{./knowl/theorem-EMP.html}{\text{Theorem EMP}}\\ &=\sum_{\ell=1}^{p}\matrixentry{AB}{i\ell}\matrixentry{D}{\ell j}&& \knowl{./knowl/property-CMCN.html}{\text{Property CMCN}}\\ &=\matrixentry{(AB)D}{ij}&& \knowl{./knowl/theorem-EMP.html}{\text{Theorem EMP}}\text{.} \end{align*}So the matrices \((AB)D\) and \(A(BD)\) are equal, entry-by-entry, and by the definition of matrix equality (Definition ME) we can say they are equal matrices.
Theorem MMIP. Matrix Multiplication and Inner Products.
If we consider the vectors u,vβCm as mΓ1 matrices then β¨u,vβ©=Β―utv=uβv.
Proof.
To finish we just blur the distinction between a \(1\times 1\) matrix (\(\transpose{\conjugate{\vect{u}}}\vect{v}\)) and its lone entry.
Theorem MMCC. Matrix Multiplication and Complex Conjugation.
Suppose A is an mΓn matrix and B is an nΓp matrix. Then Β―AB=Β―AΒ―B.
Proof.
To obtain this matrix equality, we will work entry-by-entry. For \(1\leq i\leq m\text{,}\) \(1\leq j\leq p\text{,}\)
So the matrices \(\conjugate{AB}\) and \(\conjugate{A}\,\conjugate{B}\) are equal, entry-by-entry, and by the definition of matrix equality (Definition ME) we can say they are equal matrices.
Theorem MMT. Matrix Multiplication and Transposes.
Suppose A is an mΓn matrix and B is an nΓp matrix. Then (AB)t=BtAt.
Proof.
This theorem may be surprising but if we check the sizes of the matrices involved, then maybe it will not seem so far-fetched. First, \(AB\) has size \(m\times p\text{,}\) so its transpose has size \(p\times m\text{.}\) The product of \(\transpose{B}\) with \(\transpose{A}\) is a \(p\times n\) matrix times an \(n\times m\) matrix, also resulting in a \(p\times m\) matrix. So at least our objects are compatible for equality (and would not be, in general, if we did not reverse the order of the matrix multiplication).
Here we go again, entry-by-entry. For \(1\leq i\leq m\text{,}\) \(1\leq j\leq p\text{,}\)
So the matrices \(\transpose{(AB)}\) and \(\transpose{B}\transpose{A}\) are equal, entry-by-entry, and by the definition of matrix equality (Definition ME) we can say they are equal matrices.
Theorem MMAD. Matrix Multiplication and Adjoints.
Suppose A is an mΓn matrix and B is an nΓp matrix. Then (AB)β=BβAβ.
Proof.
Sage PMM. Properties of Matrix Multiplication.
As before, we can use Sage to demonstrate theorems. With randomly-generated matrices, these verifications might be even more believable. Some of the above results should feel fairly routine, but some are perhaps contrary to intuition. For example, Theorem MMT might at first glance seem surprising due to the requirement that the order of the product is reversed. Here is how we would investigate this theorem in Sage. The following compute cell should always return True
. Repeated experimental evidence does not make a proof, but certainly gives us confidence.
By now, you can probably guess the matrix method for checking if a matrix is Hermitian.
We can illustrate the most fundamental property of a Hermitian matrix. The vectors x
and y
below are random, but according to Theorem HMIP the final command should produce True
for any possible values of these two vectors. (You would be right to think that using random vectors over QQbar
would be a better idea, but at this writing, these vectors are not as βrandomβ as one would like, and are insufficient to perform an accurate test here.)
Subsection HM Hermitian Matrices
The adjoint of a matrix has a basic property when employed in a matrix-vector product as part of an inner product. At this point, you could even use the following result as a motivation for the definition of an adjoint.Theorem AIP. Adjoint and Inner Product.
Suppose that A is an mΓn matrix and xβCn, yβCm. Then β¨Ax,yβ©=β¨x,Aβyβ©.
Proof.
Definition HM. Hermitian Matrix.
The square matrix A is Hermitian (or self-adjoint) if A=Aβ.
Theorem HMIP. Hermitian Matrices and Inner Products.
Suppose that A is a square matrix of size n. Then A is Hermitian if and only if β¨Ax,yβ©=β¨x,Ayβ© for all x,yβCn.
Proof.
(β)
This is the βeasy halfβ of the proof, and makes the rationale for a definition of Hermitian matrices most obvious. Assume \(A\) is Hermitian, then
(β)
This βhalfβ will take a bit more work. Assume that \(\innerproduct{A\vect{x}}{\vect{y}}=\innerproduct{\vect{x}}{A\vect{y}}\) for all \(\vect{x},\,\vect{y}\in\complex{n}\text{.}\) We show that \(A=\adjoint{A}\) by establishing that \(A\vect{x}=\adjoint{A}\vect{x}\) for all \(\vect{x}\text{,}\) so we can then apply Theorem EMMVP. With only this much motivation, consider the inner product for any \(\vect{x}\in\complex{n}\text{.}\)
Because this first inner product equals zero, and has the same vector in each argument (\(A\vect{x}-\adjoint{A}\vect{x}\)), Theorem PIP gives the conclusion that \(A\vect{x}-\adjoint{A}\vect{x}=\zerovector\text{.}\) With \(A\vect{x}=\adjoint{A}\vect{x}\) for all \(\vect{x}\in\complex{n}\text{,}\) Theorem EMMVP says \(A=\adjoint{A}\text{,}\) which is the defining property of a Hermitian matrix (Definition HM).
Reading Questions MM Reading Questions
1.
Form the matrix-vector product of
2.
Multiply together the two matrices below (in the order given).
3.
Rewrite the system of linear equations below as a vector equality and using a matrix-vector product. (This question does not ask for a solution to the system. But it does ask you to express the system of equations in a new form using tools from this section.)
Exercises MM Exercises
C20.
Compute the product of the two matrices below, AB. Do this using the definitions of the matrix-vector product (Definition MVP) and the definition of matrix multiplication (Definition MM).
Repeated applications of Definition MVP give
C21.
Compute the product AB of the two matrices below using both the definition of the matrix-vector product (Definition MVP) and the definition of matrix multiplication (Definition MM).
\(AB = \begin{bmatrix} 13 & 3 & 15 \\ 1 & 0 & 5\\1 & 0 & 1 \end{bmatrix}\text{.}\)
C22.
Compute the product AB of the two matrices below using both the definition of the matrix-vector product (Definition MVP) and the definition of matrix multiplication (Definition MM).
\(AB = \begin{bmatrix} 2 & 3 \\ 0 & 0 \end{bmatrix}\text{.}\)
C23.
Compute the product AB of the two matrices below using both the definition of the matrix-vector product (Definition MVP) and the definition of matrix multiplication (Definition MM).
\(AB = \begin{bmatrix} -5&5\\ 10&10\\2&16\\5&5\end{bmatrix}\text{.}\)
C24.
Compute the product AB of the two matrices below.
\(AB = \begin{bmatrix} 7\\2\\9\end{bmatrix}\text{.}\)
C25.
Compute the product AB of the two matrices below.
\(AB = \begin{bmatrix} 0\\ 0 \\ 0 \end{bmatrix}\text{.}\)
C26.
Compute the product AB of the two matrices below using both the definition of the matrix-vector product (Definition MVP) and the definition of matrix multiplication (Definition MM).
\(AB = \begin{bmatrix} 1 & 0 & 0\\ 0 & 1 & 0\\ 0 & 0 & 1 \end{bmatrix}\text{.}\)
C30.
For the matrix A, find A2, A3, A4. Find a general formula for An for any positive integer n.
From this pattern, we see that
C31.
For the matrix A, find A2, A3, A4. Find a general formula for An for any positive integer n.
From this pattern, we see that
C32.
For the matrix A, find A2, A3, A4. Find a general formula for An for any positive integer n.
The pattern emerges, and we see that
C33.
For the matrix A, find A2, A3, A4. Find a general formula for An for any positive integer n.
We quickly compute
and we then see that all subsequent powers of \(A\) are the \(3 \times 3\) zero matrix. That is, \(A^n = \zeromatrix\) for \(n\geq 3\text{.}\)
T10.
Suppose that A is a square matrix and there is a vector, b, such that LS(A,b) has a unique solution. Prove that A is nonsingular. Give a direct proof (perhaps appealing to Theorem PSPHS) rather than just negating a sentence from the text discussing a similar situation.
Since \(\linearsystem{A}{\vect{b}}\) has at least one solution, we can apply Theorem PSPHS. Because the solution is assumed to be unique, the null space of \(A\) must be trivial. Then Theorem NMTNS implies that \(A\) is nonsingular.
The converse of this statement is a trivial application of Theorem NMUS. That said, we could extend our NSMxx series of theorems with an added equivalence for nonsingularity, βGiven a single vector of constants, \(\vect{b}\text{,}\) the system \(\linearsystem{A}{\vect{b}}\) has a unique solution.β
T12.
The conclusion of Theorem AIP is β¨Ax,yβ©=β¨x,Aβyβ©. Use the same hypotheses, and prove the similar conclusion: β¨Aβx,yβ©=β¨x,Ayβ©. Two different approaches can both be based on an application of Theorem AIP. The first uses Theorem AA, while a second approach uses Theorem IPAC. Can you provide two proofs?
T20.
Prove the second part of Theorem MMZM.
T21.
Prove the second part of Theorem MMIM.
T22.
Prove the second part of Theorem MMDAA.
T23.
Prove the second part of Theorem MMSMM.
We will run the proof entry-by-entry.
So the matrices \(\alpha(AB)\) and \(A(\alpha B)\) are equal, entry-by-entry, and by the definition of matrix equality (Definition ME) we can say they are equal matrices.
\T31.
Suppose that A is an mΓn matrix and x,yβN(A). Prove that x+yβN(A).
T32.
Suppose that A is an mΓn matrix, Ξ±βC, and xβN(A). Prove that Ξ±xβN(A).
T35.
Suppose that A is an nΓn matrix. Prove that AβA and AAβ are Hermitian matrices.
T40.
Suppose that A is an mΓn matrix and B is an nΓp matrix. Prove that the null space of B is a subset of the null space of AB, that is N(B)βN(AB). Provide an example where the opposite is false, in other words give an example where N(AB)β
To prove that one set is a subset of another, we start with an element of the smaller set and see if we can determine that it is a member of the larger set (Definition SSET). Suppose \(\vect{x}\in\nsp{B}\text{.}\) Then we know that \(B\vect{x}=\zerovector\) by Definition NSM. Consider
This establishes that \(\vect{x}\in\nsp{AB}\text{,}\) so \(\nsp{B}\subseteq\nsp{AB}\text{.}\)
To show that the inclusion does not hold in the opposite direction, choose \(B\) to be any nonsingular matrix of size \(n\text{.}\) Then \(\nsp{B}=\set{\zerovector}\) by Theorem NMTNS. Let \(A\) be the square zero matrix, \(\zeromatrix\text{,}\) of the same size. Then \(AB=\zeromatrix B=\zeromatrix\) by Theorem MMZM and therefore \(\nsp{AB}=\complex{n}\text{,}\) and is not a subset of \(\nsp{B}=\set{\zerovector}\text{.}\)
T41.
Suppose that A is an n\times n nonsingular matrix and B is an n\times p matrix. Prove that the null space of B is equal to the null space of AB\text{,} that is \nsp{B}=\nsp{AB}\text{.} (Compare with Exercise MM.T40.)
From the solution to Exercise MM.T40 we know that \(\nsp{B}\subseteq\nsp{AB}\text{.}\) So to establish the set equality (Definition SE) we need to show that \(\nsp{AB}\subseteq\nsp{B}\text{.}\)
Suppose \(\vect{x}\in\nsp{AB}\text{.}\) Then we know that \(AB\vect{x}=\zerovector\) by Definition NSM. Consider
So, \(B\vect{x}\in\nsp{A}\text{.}\) Because \(A\) is nonsingular, it has a trivial null space (Theorem NMTNS) and we conclude that \(B\vect{x}=\zerovector\text{.}\) This establishes that \(\vect{x}\in\nsp{B}\text{,}\) so \(\nsp{AB}\subseteq\nsp{B}\) and combined with the solution to Exercise MM.T40 we have \(\nsp{B}=\nsp{AB}\) when \(A\) is nonsingular.
T50.
Suppose \vect{u} and \vect{v} are any two solutions of the linear system \linearsystem{A}{\vect{b}}\text{.} Prove that \vect{u}-\vect{v} is an element of the null space of A\text{,} that is, \vect{u}-\vect{v}\in\nsp{A}\text{.}
T51.
Give a new proof of Theorem PSPHS replacing applications of Theorem SLSLC with matrix-vector products (Theorem SLEMM).
We will work with the vector equality representations of the relevant systems of equations, as described by Theorem SLEMM.
Proof.
(β)
Suppose \(\vect{y}=\vect{w}+\vect{z}\) and \(\vect{z}\in\nsp{A}\text{.}\) Then
demonstrating that \(\vect{y}\) is a solution.
(β)
Suppose \(\vect{y}\) is a solution to \(\linearsystem{A}{\vect{b}}\text{.}\) Then
which says that \(\vect{y}-\vect{w}\in\nsp{A}\text{.}\) In other words, \(\vect{y}-\vect{w}=\vect{z}\) for some vector \(\vect{z}\in\nsp{A}\text{.}\) Rewritten, this is \(\vect{y}=\vect{w}+\vect{z}\text{,}\) as desired.
T52.
Suppose that \vect{x},\,\vect{y}\in\complex{n}\text{,} \vect{b}\in\complex{m} and A is an m\times n matrix. If \vect{x}\text{,} \vect{y} and \vect{x}+\vect{y} are each a solution to the linear system \linearsystem{A}{\vect{b}}\text{,} what can you say that is interesting about \vect{b}\text{?} Form an implication with the existence of the three solutions as the hypothesis and an interesting statement about \linearsystem{A}{\vect{b}} as the conclusion, and then give a proof.
\(\linearsystem{A}{\vect{b}}\) must be homogeneous. To see this, consider that
By Definition HS we see that \(\linearsystem{A}{\vect{b}}\) is homogeneous.