2.9. Systems of Linear Equations Exercises#

Exercise 2.1

Solve the following linear system of equations using the inverse of the coefficient matrix.

(a)   \( \begin{align*} - 4 x_{1} + 2 x_{2} &= -22, \\ 3 x_{1} + 4 x_{2} &= 11. \end{align*} \)

(b)   \( \begin{align*} - 4 x_{1} + 2 x_{2} &= 6, \\ - x_{1} - 3 x_{2} &= -2. \end{align*} \)

(c)   \( \begin{align*} - 4 x_{1} - 4 x_{2} - 2 x_{3} &= 16, \\ 3 x_{1} + 4 x_{3} &= -8, \\ x_{1} &= 0. \end{align*} \)

(d)   \( \begin{align*} 4 x_{1} - 4 x_{3} &= 8, \\ 4 x_{1} - x_{2} + x_{3} &= -4, \\ 3 x_{1} + x_{2} + 2 x_{3} &= -12. \end{align*} \)

Exercise 2.2

Solve the following linear system of equations using Cramer’s rule.

(a)   \( \begin{align*} x_{1} + 4 x_{2} &= -20, \\ - 4 x_{1} + x_{2} &= -5. \end{align*} \)

(b)   \( \begin{align*} x_{1} + x_{2} &= 4, \\ 4 x_{2} &= 12. \end{align*} \)

(c)   \( \begin{align*} 3 x_{1} - 4 x_{2} - 4 x_{3} &= 21, \\ - 2 x_{1} - x_{2} - x_{3} &= 8, \\ 4 x_{1} - x_{2} + 3 x_{3} &= -14. \end{align*} \)

(d)   \( \begin{align*} 4 x_{1} + 4 x_{2} + x_{3} &= 5, \\ - 2 x_{1} + x_{2} + x_{3} &= -1, \\ - 5 x_{1} - 4 x_{2} + 2 x_{3} &= -14. \end{align*} \)

Exercise 2.3

Solve the following linear system of equations using Gaussian elimination.

(a)   \( \begin{align*} - x_{1} + 3 x_{2} &= -2, \\ - 2 x_{1} + x_{2} &= 1. \end{align*} \)

(b)   \( \begin{align*} 3 x_{1} + x_{2} + 2 x_{3} &= 11, \\ 4 x_{1} - 4 x_{3} &= -4, \\ 4 x_{1} - 2 x_{2} + x_{3} &= 13. \end{align*} \)

(c)   \( \begin{align*} - x_{1} - 5 x_{2} - 2 x_{3} &= -17, \\ 2 x_{1} - 2 x_{2} - 3 x_{3} &= -14, \\ 3 x_{1} - x_{2} + 4 x_{3} &= -13. \end{align*} \)

(d)   \( \begin{align*} - x_{1} - 5 x_{2} - 2 x_{3} &= -26, \\ 2 x_{1} - 2 x_{2} - 3 x_{3} &= -19, \\ 3 x_{1} - x_{2} - 4 x_{3} &= -20. \end{align*} \)

(e)   \( \begin{align*} 3 x_{1} - 5 x_{2} - 4 x_{3} - x_{4} &= 28, \\ - 4 x_{2} + 3 x_{3} - 4 x_{4} &= 41, \\ 2 x_{1} + 3 x_{2} + 3 x_{3} - 3 x_{4} &= 11, \\ - 2 x_{1} + 2 x_{2} - 5 x_{3} - 4 x_{4} &= -21. \end{align*} \)

(f)   \( \begin{align*} 2 x_{1} - 3 x_{2} - 3 x_{3} + 4 x_{4} &= -1, \\ 4 x_{1} - 5 x_{2} + x_{3} - 5 x_{4} &= 42, \\ 3 x_{1} + 3 x_{2} - x_{3} - 5 x_{4} &= 20, \\ x_{1} + x_{3} + 3 x_{4} &= -4. \end{align*} \)

Exercise 2.4

Solve the linear system of equations from Exercise 2.3 using Gaussian elimination with partial pivoting.

Exercise 2.5

Solve the linear system of equations from Exercise 2.3 using Gauss-Jordan elimination.

Exercise 2.6

Use Gauss-Jordan elimination to calculate the inverse of the following matrices.

(a)   \( \begin{pmatrix} -4 & 2 \\ 3 & 4 \end{pmatrix} \)

(b)   \( \begin{pmatrix} -4 & 2 \\ -1 & -3 \end{pmatrix} \)

(c)   \( \begin{pmatrix} -4 & -4 & - 2\\ 3 & 0 & 4 \\ 1 & 0 & 0 \end{pmatrix} \)

(d)   \( \begin{pmatrix} 4 & 0 & -4 \\ 4 & -1 & 1 \\ 3 & 1 & 2 \end{pmatrix} \)

Exercise 2.7

For the following linear systems of equations, determine the rank of the coefficient matrix and the augmented matrix and classify the system is consistent, inconsistent or indeterminate and calculate the solution (if possible).

(a)   \( \begin{align*} x_{1} - x_{2} + 2 x_{3} &= 2, \\ 2 x_{1} + x_{2} + 4 x_{3} &= 7, \\ 4 x_{1} + x_{2} + x_{3} &= 4. \end{align*} \)

(b)   \( \begin{align*} x_{1} - x_{2} + 2 x_{3} &= 3, \\ 2 x_{1} - 3 x_{2} + 7 x_{3} &= 4, \\ - x_{1} + 3 x_{2} - 8 x_{3} &= 1. \end{align*} \)

(c)   \( \begin{align*} x_{1} + x_{2} - 2 x_{3} &= 1, \\ 2 x_{1} - x_{2} + x_{3} &= 9, \\ x_{1} + 4 x_{2} - 7 x_{3} &= 2. \end{align*} \)