MHB Solve System Using Matrix Inverse

AI Thread Summary
The discussion focuses on finding the inverse of a given 3x3 matrix using row operations. The initial matrix is transformed into the identity matrix while applying the same operations to an adjacent identity matrix. Key steps include swapping rows, performing row reductions, and scaling rows to achieve the identity form. The final result indicates that the calculated inverse matrix is correct. The process demonstrates a systematic approach to matrix inversion through elementary row operations.
brinlin
Messages
12
Reaction score
0
Pre9.PNG
 
Mathematics news on Phys.org
$
\begin{bmatrix}
0 &-2 &2 \\
3 & 1 &3 \\
1 &-2 &3
\end{bmatrix} \cdot\begin{bmatrix}
x\\
y\\
z
\end{bmatrix}=\begin{bmatrix}
12\\
-2\\
8
\end{bmatrix}$

follow the directions for (b) and (c)
 
There are many ways to find an inverse matrix. One I like
write the matrix and identity matrix next to each other:
[math]\begin{bmatrix}0 & -2 & 2 \\ 3 & 1 & 3 \\ 1 & -3 & 1 \end{bmatrix}\begin{bmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1\end{bmatrix}[/math].

Now use "row operations" to reduce the matrix to the identity matrix while applying the same row operation to the identity matrix.

Normally the first thing you would do is divide every number in the first row by the leftmost number in that row. But here, that is 0 so instead swap the first and third rows:
[math]\begin{bmatrix}1 & -3 & 1 \\ 3 & 1 & 3 \\ 0 & -2 & 2 \end{bmatrix}\begin{bmatrix}0 & 0 & 1 \\ 0 & 1 & 0 \\ 1 & 0 & 0\end{bmatrix}[/math]

Now there is already a 1 in the upper left so all we need to do to get the right first column is subtract 3 times the first row from the second row:
[math]\begin{bmatrix}1 & -3 & 1 \\ 0 & 10 & 0 \\ 0 & -2 & 2 \end{bmatrix}\begin{bmatrix}0 & 0 & 1 \\ 0 & 1 & -1 \\ 1 & 0 & 0 \end{bmatrix}[/math]

Divide the second row by 10:
[math]\begin{bmatrix}1 & -3 & 1 \\ 0 & 1 & 0 \\ 0 & -2 & 2 \end{bmatrix}\begin{bmatrix}0 & 0 & 1 \\ 0 & \frac{1}{10} & -\frac{1}{10} \\ 1 & 0 & 0 \end{bmatrix}[/math].

Add 3 times the second row to the first row and add 2 times the second row to the third row:
[math]\begin{bmatrix}1 & 0 & 1 \\ 0 & 1 & 0 \\ 0 & 0 & 2 \end{bmatrix}\begin{bmatrix}0 & \frac{3}{10} & \frac{7}{10} \\ 0 & \frac{1}{10} & -\frac{1}{10} \\ 1 & \frac{2}{10} & \frac{8}{10} \end{bmatrix}[/math]

Divide the third row by 2:
[math]\begin{bmatrix}1 & 0 & 1 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{bmatrix}\begin{bmatrix}0 & \frac{3}{10} & \frac{7}{10} \\ 0 & \frac{1}{10} & -\frac{1}{10} \\ \frac{1}{2} & \frac{1}{10} & \frac{4}{10} \end{bmatrix}[/math].

Finally, subtract the third row from the first row:
[math]\begin{bmatrix}1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{bmatrix}\begin{bmatrix}0 & \frac{3}{10} & \frac{3}{10} \\ 0 & \frac{1}{10} & -\frac{1}{10} \\ \frac{1}{2} & \frac{1}{10} & \frac{4}{10} \end{bmatrix}[/math]

IF I have done everything correctly, [math] \begin{bmatrix}0 & \frac{3}{10} & \frac{3}{10} \\ 0 & \frac{1}{10} & -\frac{1}{10} \\ \frac{1}{2} & \frac{1}{10} & \frac{4}{10} \end{bmatrix}[/math] is the inverse matrix to [math]\begin{bmatrix}0 & -2 & 2 \\ 3 & 1 & 3 \\ 1 & -3 & 1 \end{bmatrix}[/math]
 
Suppose ,instead of the usual x,y coordinate system with an I basis vector along the x -axis and a corresponding j basis vector along the y-axis we instead have a different pair of basis vectors ,call them e and f along their respective axes. I have seen that this is an important subject in maths My question is what physical applications does such a model apply to? I am asking here because I have devoted quite a lot of time in the past to understanding convectors and the dual...
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Back
Top