Exercises – Short Day#

Exercise 1: Pivots in a Reduced Row-Echelon Form#

We are given the following matrix:

\[\begin{split}{\mathbf B}= \left[ \begin{array}{cccccccc} 0 & 1 & \sqrt{2} & 0 & 5 & 0 & 0 & 9 \\ 0 & 0 & 0 & 1 & \mathrm e & 0 & 0 & \pi \\ 0 & 0 & 0 & 0 & 0 & 0 & 1 & 42 \\ 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 \\ \end{array} \right]. \end{split}\]

Question a#

Is the matrix \(\mathbf B\) in reduced row-echelon form?

Question b#

State the pivot elements in the given matrix \({\mathbf B}\). How many pivots does the matrix \({\mathbf B}\) have and in which columns are they found?


Exercise 2: Rank of a Matrix#

The following \(3 \times 4\) matrix with complex elements is given:

\[\begin{split}{\mathbf C}= \left[ \begin{array}{ccc} 1 & i & 1 & 0\\ 3 & 3i & 0 & 0\\ 1+2i & -2+i & -1-i & 0\\ i & -1 & -1 & 0\\ \end{array} \right]. \end{split}\]

What is the rank of the matrix?


Exercise 3: Parametric Representation with a Free Parameter#

A system of linear equations over \(\mathbb R\) in the unknowns \(x_1,x_2,x_3\), and \(x_4\) has the following augmented matrix:

\[\begin{split}[{\mathbf A} |{\mathbf b}]= \left[ \begin{array}{ccccc} 1 & 0 & 0 & 1 & 0\\ -2 & 1 & 0 & 3 & 1\\ 5 & 0 & 1 & -4 & 1\\ 4 & 1 & 1 & 0 & 2\\ \end{array} \right]. \end{split}\]

This matrix and the corresponding linear equation system also appeared in Exercises 4 and 7 on Long Day.

Question a#

What is the linear equation system that corresponds to the given augmented matrix?

Question b#

Check that the vector

\[\begin{split} \left[ \begin{array}{c} 0\\ 1\\ 1\\ 0\\ \end{array} \right] \end{split}\]

is a particular solution to the linear equation system that has the augmented matrix \([{\mathbf A} |{\mathbf b}]\).

Question c#

In Exercise 4 from Long Day the answer stated that the matrix \([{\mathbf A} |{\mathbf b}]\) has a rank of \(3\) and that its reduced row-echelon form is

\[\begin{split} \left[ \begin{array}{ccccc} 1 & 0 & 0 & 1 & 0\\ 0 & 1 & 0 & 5 & 1\\ 0 & 0 & 1 & -9 & 1\\ 0 & 0 & 0 & 0 & 0\\ \end{array} \right]. \end{split}\]

Use the reduced row-echelon form to describe the general solution to the homogeneous linear equation system with coefficient matrix \(\mathbf A\).

Question d#

What is the general solution to the linear equation system over \(\mathbb R\) that corresponds to the given augmented matrix \([{\mathbf A}|{\mathbf b}]\)? For confirmation, you can compare your answer to the answer from Exercise 7b from Long Day.


Exercise 4: Parametric Representation with Multiple Free Parameters#

We again consider matrix \({\mathbf B}\) from Exercise 1:

\[\begin{split}{\mathbf B}= \left[ \begin{array}{cccccccc} 0 & 1 & \sqrt{2} & 0 & 5 & 0 & 0 & 9 \\ 0 & 0 & 0 & 1 & \mathrm e & 0 & 0 & \pi \\ 0 & 0 & 0 & 0 & 0 & 0 & 1 & 42 \\ 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 \\ \end{array} \right]. \end{split}\]

Question a#

Matrix \({\mathbf B}\) can be considered as an augmented matrix of a linear equation system over \(\mathbb C\). Is the system homogeneous or inhomogeneous? How many unknowns/variables are a part of this system?

Question b#

What is the linear equation system corresponding to the given augmented matrix \(\mathbf B\)?

Question c#

Compute a particular solution to the system from Question b.

Question d#

Compute the general solution to the system from Question b.


Exercise 5: An Inhomogeneous System#

Determine whether the following linear equation system over \(\mathbb R\) in the unknowns \(x_1,x_2,\) and \(x_3\) has a solution:

\[\begin{split} \left\{ \begin{array}{ccc} x_1 + x_3 & = & 0\\ x_1+x_2 +3x_3 & = & 0\\ 10x_1 +3x_2+16x_3 & = & 1\\ \end{array} \right. \end{split}\]

Exercise 6: Three Examples on Systems of Linear Equations#

Compute the general solutions to the following three systems of linear equations over \(\mathbb R\):

\[\begin{split} \left\{ \begin{array}{ccc} x_1 + x_2+ x_3 & = & 1\\ x_1+ 2x_2 +4x_3 & = & 1\\ x_1 +3x_2+9x_3 & = & 1\\ \end{array} \right. \end{split}\]
\[\begin{split} \left\{ \begin{array}{ccc} x_1 + x_2+ x_3 & = & 1\\ x_1+ 2x_2 +4x_3 & = & 1\\ x_1 +3x_2+7x_3 & = & 1\\ \end{array} \right. \end{split}\]
\[\begin{split} \left\{ \begin{array}{ccc} x_1 + x_2+ x_3 & = & 1\\ x_1+ 2x_2 +4x_3 & = & 1\\ x_1 +3x_2+7x_3 & = & 0\\ \end{array} \right. \end{split}\]