Solve the following system of linear equations using an inverse matrix
"x+y+z=4\\\\\n-2x-y+3z=1\\\\\ny+5z=9"
Solution
"A=\\begin{pmatrix}\n 1 & 1&1 \\\\\n -2 & -1&3\\\\\n 0&1&5\n\\end{pmatrix}"
"B=\\begin{pmatrix}\n 4 \\\\\n 1 \\\\\n 9\n\\end{pmatrix}"
"X=\\begin{pmatrix}\n y \\\\\n x\\\\\n z\n\\end{pmatrix}"
"A\u2219X=B"
that is
X=A-1 ∙B
Find the determinant of matrix A:
"detA=\\begin{vmatrix}\n 1 & 1&1 \\\\\n -2 & -1&3\\\\\n 0&1&5\n\n\\end{vmatrix}= 1\u00b7(-1)\u00b75 + 1\u00b73\u00b70 + 1\u00b7(-2)\u00b71 - 1\u00b7(-1)\u00b70 - 1\u00b73\u00b71 - 1\u00b7(-2)\u00b75 =-5 + 0 - 2 - 0 - 3 + 10 = 0"
Answer: Since the determinant of the matrix is zero, the system has no solution.
Comments
Leave a comment