I'm going through my exercises, and came across a problem that wasn't covered in our lectures. Here's the question:
$ \begin{align} \begin{bmatrix} a-b & b+c\\ 3d+c & 2a-4d \end{bmatrix} \end{align} = $ $ \begin{align} \begin{bmatrix} 8 & 1\\ 7 & 6 \end{bmatrix} \end{align} $
What I have done so far is:
$ \begin{align} \begin{bmatrix} a-b-8 & b+c-1\\ 3d+c-7 & 2a-4d-6 \end{bmatrix} \end{align} = $ $ \begin{align} \begin{bmatrix} 0 & 0\\ 0 & 0 \end{bmatrix} \end{align} $
And the solving for variables,
$$ a-b-8 = 0 $$ $$ a-b = 8 $$ $$ a = \frac{8}{-b} $$
$$ b+c-1=0 $$ $$ b+c=1 $$ $$ b=\frac{1}{c} $$
$$ 3d+c-7=0 $$ $$ 3d+c=7 $$ $$ 3d=\frac{7}{c} $$ $$ d=\frac{7}{3c} $$
$$ 2a-4d-6=0 $$ $$ 2a-4d=6 $$ $$ \frac{16}{-2b}-\frac{28}{12c}=6 $$
Am I going about this correctly? Or am I just doing this completely incorrect?
Error 1: $a-b=8$ is not the same as $a = \frac{8}{-b}$ but $a = 8 + b$
Error 2: $b+c=1$ is not the same as $b = \frac{1}{c}$ but $b = 1-c$
Error 3: $3d+c=7$ ... same as errors 1 and 2
Error 4: $2a-4d=6$ Incorrect substitution because of previous errors. Fix the previous errors and then subsititue to fix this error