5.2 another Ax=B with an inverse

  • Context:
  • Thread starter Thread starter karush
  • Start date Start date
  • Tags Tags
    Inverse
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 2K views
karush
Gold Member
MHB
Messages
3,240
Reaction score
5
Suppose we are given
$A^{-1} =
\begin{bmatrix}
1 & 4 & 0 \\
2 & 3 & 0 \\
4 & 2 & 2
\end{bmatrix}
=
\left[\begin{array}{rrr|rrr}
1&4&0&1&0&0\\
2&3&0&0&1&0\\
4&2&2&0&0&1
\end{array}\right]$
then
$A=
\begin{bmatrix}
-\frac{3}{5}&\frac{4}{5}&0\\ \frac{2}{5}&-\frac{1}{5}&0\\ \frac{4}{5}&-\frac{7}{5}&\frac{1}{2}
\end{bmatrix}$
Solve the matrix equation $AX=B$ to find $x$, $y$ and $z$ where $X =
\begin{bmatrix}
x \\y \\z
\end{bmatrix},
\textit{ and }
B = \begin{bmatrix}
-1 \\2 \\3
\end{bmatrix}$
$\therefore AX=B$ is
$\begin{bmatrix}
-\frac{3}{5}&\frac{4}{5}&0\\ \frac{2}{5}&-\frac{1}{5}&0\\ \frac{4}{5}&-\frac{7}{5}&\frac{1}{2}
\end{bmatrix}
\begin{bmatrix}
x \\y \\z
\end{bmatrix}
=\begin{bmatrix}
-1 \\2 \\3
\end{bmatrix}$
$W\vert A$ returned
$x=7,y=4,z=6$ok my question is that A has 2 zero's in $C_3$
I was able to get x=7 and y=4 by a simple double simultanious equation
but not sure what the proper methed is take advantage of the 2 zeros
 
Physics news on Phys.org
karush said:
Suppose we are given
$A^{-1} =
\begin{bmatrix}
1 & 4 & 0 \\
2 & 3 & 0 \\
4 & 2 & 2
\end{bmatrix}
=
\left[\begin{array}{rrr|rrr}
1&4&0&1&0&0\\
2&3&0&0&1&0\\
4&2&2&0&0&1
\end{array}\right]$
then
$A=
\begin{bmatrix}
-\frac{3}{5}&\frac{4}{5}&0\\ \frac{2}{5}&-\frac{1}{5}&0\\ \frac{4}{5}&-\frac{7}{5}&\frac{1}{2}
\end{bmatrix}$
Solve the matrix equation $AX=B$ to find $x$, $y$ and $z$ where $X =
\begin{bmatrix}
x \\y \\z
\end{bmatrix},
\textit{ and }
B = \begin{bmatrix}
-1 \\2 \\3
\end{bmatrix}$
$\therefore AX=B$ is
$\begin{bmatrix}
-\frac{3}{5}&\frac{4}{5}&0\\ \frac{2}{5}&-\frac{1}{5}&0\\ \frac{4}{5}&-\frac{7}{5}&\frac{1}{2}
\end{bmatrix}
\begin{bmatrix}
x \\y \\z
\end{bmatrix}
=\begin{bmatrix}
-1 \\2 \\3
\end{bmatrix}$
$W\vert A$ returned
$x=7,y=4,z=6$ok my question is that A has 2 zero's in $C_3$
I was able to get x=7 and y=4 by a simple double simultanious equation
but not sure what the proper methed is take advantage of the 2 zeros
If you are asking if it makes sense to write out the two equations in x and y that don't involve z and solving the simpler system for x and y then I think you are doing just fine.

-Dan
 
You are given that [tex]A^{-1}[/tex] exists and is equal to [tex]\begin{bmatrix}1& 4 & 0 \\ 2 & 3 & 0 \\ 4 & 2 & 2 \end{bmatrix}[/tex]. So the solution to [tex]AX= B[/tex] is just [tex]X= A^{-1}B[/tex].

With B given as [tex]\begin{bmatrix}-1 \\ 2 \\ 3\end{bmatrix}[/tex], as here, we have immediately that [tex]X= \begin{bmatrix}x \\ y \\ z \end{bmatrix}= \begin{bmatrix}1& 4 & 0 \\ 2 & 3 & 0 \\ 4 & 2 & 2 \end{bmatrix}\begin{bmatrix}-1 \\ 2 \\ 3\end{bmatrix}= \begin{bmatrix}7 \\ 4 \\ 6\end{bmatrix}[/tex]. That is, x= 7, y= 4, and z= 6. But we can write the initial "AX= B" as the system of equstions [tex]-\frac{3}{5}x+ \frac{4}{5}y= -1[/tex], [tex]\frac{2}{5}x- \frac{1}{5}y= 2[/tex], and [tex]\frac{4}{5}x- \frac{7}{5}y+ \frac{1}{2}z= 3[/tex]. As topsquark said, the fact that the first two entries in the last column are "0" mean that the first two equations have no "z" and can be solved for x and y indpendently of z. I would first multiply each equation by 5 to get [tex]-3x+ 4y= -5[/tex] and [tex]2x- y= 10[/tex]. Multiply the second equation by 4 to geta [tex]8x- 4y= 40[/tex] and add that to the first equation to eliminate y and get [tex]5x= 35[/tex] so that [tex]x= 7[/tex]. Setting x= 7 in [tex]-3x+ 4y= -5[/tex] gives [tex]-21+ 4y= -5[/tex] so that [tex]4y= 16[/tex] and y= 4. Finally, put x= 7, y= 4 into the last equation to get [tex]\frac{28}{5}- \frac{28}{5}+ \frac{1}{2}z= \frac{1}{2}z= 3[/tex] so that [tex]z= 6[/tex]. We get x= 7, y= 4, z= 6 as before.