-
Problem: Solve using row-reduction:
\[
\begin{cases}
x + 2y + 3z = 9 \\
2x + 3y + z = 8 \\
3x + y + 2z = 7
\end{cases}
\]
Unique solution:
\[
(x,y,z)=\left(\tfrac{2}{3},\,\tfrac{5}{3},\,\tfrac{5}{3}\right).
\]
(You can check by substitution; the augmented matrix reduces to a unique solution.)
-
Problem: Determine if the system has unique, infinite, or no solution:
\[
\begin{cases}
x + y + z = 6 \\
2x + 2y + 2z = 12 \\
3x + 3y + 3z = 18
\end{cases}
\]
All three equations are multiples of the first → they are dependent.
So the system has infinitely many solutions. General form:
\[
x=6-y-z \quad\text{(two free variables, e.g. set }y=s,z=t\text{).}
\]
-
Problem: Solve the system:
\[
\begin{cases}
x + y - z = 1 \\
2x - y + z = 3 \\
3x + 2y = 4
\end{cases}
\]
Unique solution:
\[
(x,y,z)=\left(\tfrac{4}{3},\,0,\,\tfrac{1}{3}\right).
\]
-
Problem: A system of equations is given by:
\[
\begin{cases}
x_1 + x_2 + x_3 + x_4 = 5 \\
2x_1 + 3x_2 + 5x_3 + 7x_4 = 15 \\
x_1 - x_2 + 2x_3 + 3x_4 = 4
\end{cases}
\]
- Write the augmented matrix.
- Reduce to RREF.
- Find the general solution.
Augmented matrix:
\[
\left[\begin{array}{cccc|c}
1 & 1 & 1 & 1 & 5\\[4pt]
2 & 3 & 5 & 7 & 15\\[4pt]
1 & -1 & 2 & 3 & 4
\end{array}\right]
\]
RREF:
\[
\left[\begin{array}{cccc|c}
1 & 0 & 0 & -\tfrac{4}{7} & \tfrac{18}{7}\\[6pt]
0 & 1 & 0 & -\tfrac{1}{7} & \tfrac{8}{7}\\[6pt]
0 & 0 & 1 & \tfrac{12}{7} & \tfrac{9}{7}
\end{array}\right]
\]
Let \(x_4=t\) (free parameter). Then the general solution is
\[
\begin{aligned}
x_1 &= \tfrac{18}{7} + \tfrac{4}{7}t,\\[4pt]
x_2 &= \tfrac{8}{7} + \tfrac{1}{7}t,\\[4pt]
x_3 &= \tfrac{9}{7} - \tfrac{12}{7}t,\\[4pt]
x_4 &= t\quad (t\in\mathbb{R}).
\end{aligned}
\]