Processing math: 100%

5.1 Algorithm for solving Ax=0

The idea behind this exercise is to come up with an algorithm to find the nullspace of a matrix A. Let us start by taking a matrix A.

A=[1222246836810]

One of the first thing to notice in A is that row3 is a linear combination of row1 and row2 (row3=row1+row2). The way to solve a system of linear equations is by elimination. Different row elimination steps can be used to transform A into an upper triangular matrix with the same steps repeated on the right hand side. As the right hand side is 0 here, the elimination steps can be skipped for it.

A=[1222246836810]S1[122200240024]S3[122200240000]=U

The resultant matrix after the elimination steps is U which is in the echelon form. Now, instead of solving Ax=0, Ux=0 can be solved. There are two pivots: U11=1,U23=2. The number of pivots is also called as the rank of the matrix. Here, the rank is 2. The columns in which pivots are there (col1,col3) are called as pivot columns. Remaining columns (col2,col4) are called as free columns. The equation Ux=0 can be written as follows.

x1[100]+x2[200]+x3[220]+x4[240]=[000]

The values in x corresponding to the free columns (here they are x2,x4) can be assigned any values and then we can find the values of x1,x3 to complete the solution. We can systematically assign values to the multipliers corresponding to the free columns. Let x2=1,x4=0, this gives x1=2,x3=0 and hence [2100] is a solution (or any multiple of this vector), a vector in the null space. Another choice for free variables can be x2=0,x4=1, which gives x1=2,x3=2 and hence [2021] is another solution (or any multiple of this vector), another vector in the null space. Hence, the general solution can be given as:

x=c[2100]+d[2021]

Another thing to note is the number of individual solutions is equal to the number of free variables or free columns. For a m×n matrix whose rank is r, the number of free columns/variables( individual solutions) will be nr.

5.2 Reduced Row-Echelon Form

The row-echelon matrix U can be further simplified by elimination steps. The idea is to get a matrix which have 0 in the cells above and below pivot. Furthermore, the pivot values can be reduced to 1. The reduced matrix R is called as the matrix in reduced row-echelon form.

U=[122200240000][120200120000]=R

If we further examine the matrix R, it can be noticed that an identity matrix [1001]=I sits in the pivot rows and columns (row1,row2,col1,col2). Corresponding entries in the free columns are [2202]=F. If we look at I and F, they are nothing but the rearranged individual solutions with sign switched for F. Let us just rearrnage the reduced row-echelon matrix R as follows, where the last matrix is nothing but matrix represented in the block form. We have to find x such that Rx=0.

R=[120200120000][102201020000]=[IF00]

For the given R in the block form, the solution can be given as:

[IF00][FI]=0

Hence, the final solution in the rearranged form is:

[FI]=[20221001]

5.3 Example

Let us look at one more example. The system of equations which we have to solve is Bx=0 where B=AT for the above matrix A.

B=[1232462682810]

The transformation of B into row-reduced echelon form can be given as follows:

B=[1232462682810][123000022044][123022000000][101022000000][101011000000]

I=[1001];F=[11]

Hence the null space can be given as c[FI]=c[111]