a+b=-3

4a+2b=-14

asked by guest
on Jun 03, 2023 at 4:33 am

You asked:

Solve the system of equations:\[\begin{aligned}a + b &= -3\\4 a + 2 b &= -14\end{aligned}\]

MathBot Answer:

The system of equations has one solution.\[a = -4\] \[b = 1\]


Solve by substitution:

Solve \(a + b = -3\) for \(a\). \[a = - b - 3\]

Substitute \(- b - 3\) for \(a\) in \(4 a + 2 b = -14\) and simplify. $$\begin{aligned}4 a + 2 b &= -14 \\ 4 \left(- b - 3\right) + 2 b &= -14 \\ b &= 1 \end{aligned}$$

Use substitution of the numerical value of \(b\) to get the values of \(a\). $$\begin{aligned}a &= - b - 3 \\ a &= - 1 - 3 \\ a &= -4\end{aligned}$$


Solve by Gauss-Jordan Elimination:

Begin by writing the augmented matrix of the system of equations. $$\begin{bmatrix}1 & 1 &\bigm |& -3\\4 & 2 &\bigm |& -14\end{bmatrix}$$

Then use a series of elementary row operations to convert the matrix into reduced-row echelon form. The three elementary row operations are:

  1. Swap the positions of any two rows.

  2. Multiply any row by a nonzero scalar.

  3. Multiply a row by a nonzero scalar and add it to any other row.


First, switch the rows in the matrix such that the row with the leftmost non-zero entry with the greatest magnitude is at the top.

$$\begin{bmatrix}4 & 2 &\bigm |& -14\\1 & 1 &\bigm |& -3\end{bmatrix}$$

Multiply row \(1\) by scalar \(\frac{1}{4}\) to make the leading term \(1\).

$$\begin{bmatrix}1 & \frac{1}{2} &\bigm |& - \frac{7}{2}\\1 & 1 &\bigm |& -3\end{bmatrix}$$

Multiply row \(1\) by scalar \(-1\) and add it to row \(2\).

$$\begin{bmatrix}1 & \frac{1}{2} &\bigm |& - \frac{7}{2}\\0 & \frac{1}{2} &\bigm |& \frac{1}{2}\end{bmatrix}$$

Multiply row \(2\) by scalar \(2\) to make the leading term \(1\).

$$\begin{bmatrix}1 & \frac{1}{2} &\bigm |& - \frac{7}{2}\\0 & 1 &\bigm |& 1\end{bmatrix}$$

Multiply row \(2\) by scalar \(- \frac{1}{2}\) and add it to row \(1\).

$$\begin{bmatrix}1 & 0 &\bigm |& -4\\0 & 1 &\bigm |& 1\end{bmatrix}$$

Once the matrix is in reduced-row echelon form, convert the matrix back into linear equations to find the solution. $$\begin{aligned}1 \cdot a+ 0 \cdot b = -4 \\ a = -4\end{aligned}$$$$\begin{aligned}0 \cdot a+ 1 \cdot b = 1 \\ b = 1\end{aligned}$$


Solve by matrix inversion:

In cases where the coefficient matrix of the system of equations is invertible, we can use the inverse to solve the system. Use this method with care as matrix inversion can be numerically unstable for ill-conditioned matrices.


Express the linear equations in the form \(A \times X = B\) where \(A\) is the coefficient matrix, \(X\) is the matrix of unknowns, and \(B\) is the constant matrix.$$\left[\begin{matrix}1 & 1\\4 & 2\end{matrix}\right] \times \left[\begin{matrix}a\\b\end{matrix}\right] = \left[\begin{matrix}-3\\-14\end{matrix}\right]$$

The product of \(A\) and its inverse \(A^{-1}\) is the identity matrix. Any matrix multiplied by the identity matrix remains unchanged, so this yields the matrix of unknowns on the left hand side of the equation, and the solution matrix on the right. $$\begin{aligned} A \times X &= B\\ A^{-1} \times A \times X &= A^{-1} \times B \\ I \times X &= A^{-1} \times B \\ X &= A^{-1} \times B \end{aligned}$$

Using a computer algebra system, calculate \(A^{-1}\). $$\left[\begin{matrix}-1 & \frac{1}{2}\\2 & - \frac{1}{2}\end{matrix}\right]$$

Multiply both sides of the equation by the inverse. $$\left[\begin{matrix}-1 & \frac{1}{2}\\2 & - \frac{1}{2}\end{matrix}\right] \times \left[\begin{matrix}1 & 1\\4 & 2\end{matrix}\right] \times \left[\begin{matrix}a\\b\end{matrix}\right] = \left[\begin{matrix}-1 & \frac{1}{2}\\2 & - \frac{1}{2}\end{matrix}\right] \times \left[\begin{matrix}-3\\-14\end{matrix}\right]$$ $$\left[\begin{matrix}a\\b\end{matrix}\right] = \left[\begin{matrix}-4\\1\end{matrix}\right]$$

\[a = -4\]\[b = 1\]

asked 10 months ago

active 10 months ago