Solve the matrix equation

75 Views Asked by At

So I need to solve $\begin{pmatrix} 1 &2\\ 1 &2 \end{pmatrix}X=\begin{pmatrix} -1 & -5\\ -1 &-5 \end{pmatrix}$. I took $X=\begin{pmatrix} a &b \\ c& d \end{pmatrix}$ and I got that $a+2c=-1$ and $b+2d=-5$. What do I do now or do you have any method to solve this and find values for $a,b,c,d$?

P.S. Determinants are $0$ so you can not use the inverse.

4

There are 4 best solutions below

0
On BEST ANSWER

You're correct that $a + 2c = -1$ and that $b + 2d = -5$. This gives 2 (independent) equations in 4 unknowns, so we can expect $4 - 2 = 2$ degrees of freedom in the final answer.

Note then that $a + 2c = -1 \iff a = -1-2c \,$ and also $\,b + 2d = -5 \iff b = -5-2d$, so: $$\begin{pmatrix} 1 & 2 \\ 1 & 2 \end{pmatrix} X = \begin{pmatrix}-1 & -5 \\ -1 & -5 \end{pmatrix} \iff X = \begin{pmatrix} -1 - 2c & - 5 - 2d \\ c & d \end{pmatrix}$$

That is, this equation will be solved by any such $X$ in this form.

4
On

Solve this System of equations and you will get the values $a,b$ in dependence of $c,d$. Therefore this Matrix equation has infinitely many Solutions; it is solved by finding Solutions in dependence on Parameters.

0
On

If you got $a+2c=-1$ and $b+2d=-5$, then the set if all solutions is $$ \{\begin{pmatrix}-1-2c&-5-2d\\c&d\end{pmatrix}:c,d\in\mathbb{R}\} $$

0
On

You can view this as multiplying the left matrix by $X$

$\begin{pmatrix} 1 &2\\ 1 &2 \end{pmatrix} \cdot \begin{pmatrix} a &b \\ c& d \end{pmatrix} = \begin{pmatrix} a+2c&b+2d \\ a+2c & b+2d \end{pmatrix}$

So $\begin{pmatrix} a+2c&b+2d \\ a+2c & b+2d \end{pmatrix}$ and $\begin{pmatrix} -1 & -5\\ -1 &-5 \end{pmatrix}$ are equivalent. Then express solutions in dependence of $c$ and $d$:

$a=-1-2c$ and $b=-5-2d$ then this system has infinite solutions. This means that variables $a$ and $b$ will change everytime you choose values for $c$ and $d$.