83.4k views
3 votes
Solve {x = 7 − 4y

2y −3x = 8
by writing and solving a matrix equation. Show all your work for full credit.

User Ohid
by
7.9k points

1 Answer

2 votes
The first thing we are going to do is arrange both equations so the variables will be in the left side, and the numbers in the right side.
For our first equation:

x=7-4y

x+4y=7
For our second equation:

2y-3x=8

-3x+2y=8
Now, we can rewrite our system of equations:

\left \{ {{x+4y=7} \atop {-3x+2y=8}} \right.

Next, we are going to express our system as a matrix equation. To do that we will create a coefficient matrix first, which is just the grid of the coefficients of our variables with brackets aground them; then we are going to multiply it by the column vector
x,
y, and then we are going to set all of that equal to the column vector 7, 8:

\left[\begin{array}{ccc}1&4\\-3&2\end{array}\right] \left[\begin{array}{ccc}x\\y\\\end{array}\right] = \left[\begin{array}{ccc}7\\8\end{array}\right]

Now, we will apply Cramer's rule to solve our matrix equation:
First we are going to find the determinant of our coefficient matrix by multiplying a top to bottom and left to right diagonal and subtract from that a bottom to top and left to right diagonal:

D= \left[\begin{array}{ccc}1&4\\-3&2\end{array}\right] =(1)(2)-(-3)(4)=2+12=14

Next, we are going to find the determinant of
x following the same procedure as before, but replacing the coefficients of
x with the column vector 7, 8:

D_(x)= \left[\begin{array}{ccc}7&4\\8&2\end{array}\right] =(7)(2)-(8)(4)=14-32=-18
Next, we are going to find the determinant of
y following the same procedure as before, but replacing the coefficients of
y with the column vector 7, 8:

D_(y)= \left[\begin{array}{ccc}1&7\\-3&8\end{array}\right] =(1)(8)-(-3)(7)=8+21=29

Finally, we have all we need to use Cramer's rule and solve our system of equations:

x= (D_(x))/(D) and
y= (D_(y))/(D)
Since we know that
D_(x)=-18,
D_(y)=29, and
D=14, lets replace those values in our Cramer's rule equations to find the values of
x and
y:

x= (-18)/(14) =- (9)/(7) and
y= (29)/(14)

We can conclude that the solution of our system of equations is
x=- (9)/(7) and
y= (29)/(14).






User Ehuang
by
8.1k points