In case we want to transform R3 into R2 we need a Matrix of size 3x2."\\begin{pmatrix}\n x1 & x4 \\\\\n x2 & x5 \\\\\n x3 & x6\n\\end{pmatrix}" The Matrix gives us 6 variables which we can find by solving 6 corresponding equations
"\\begin{cases}\n x1+2*x2+x3=1\\\\\nx4+2*x5+x6=0\\\\\n2*x1+9*x2=-1\\\\\n2*x4+9*x5=1\\\\\n3*x1+3*x2+4*x3=0\\\\\n3*x4+3*x5+4*x6=1\\\\\n\\end{cases}" "\\implies" "\\begin{cases}\n x1+2*x2+x3=1\\\\\n3*x1+3*x2+4*x3=0\\\\\n2*x1+9*x2=-1\\\\\n\\end{cases}\n\\begin{cases}\n2*x4+9*x5=1\\\\\n3*x4+3*x5+4*x6=1\\\\\nx4+2*x5+x6=0\\\\\n\\end{cases}" "\\implies"
"\\begin{cases}\n x1+5*x2=4\\\\\n3*x1+3*x2+4*x3=0\\\\\n2*x1+9*x2=-1\\\\\n\\end{cases}\n\\begin{cases}\n2*x4+9*x5=1\\\\\n3*x4+3*x5+4*x6=1\\\\\nx4+5*x5=-1\\\\\n\\end{cases}" "\\implies"
"\\begin{cases}\n x2=9\\\\\n x1=-41\\\\\n x3=24\\\\\n\\end{cases}\n\\begin{cases}\nx5=-3\\\\\nx4=14\\\\\nx6=-8\\\\\n\\end{cases}"
Solution is "\\begin{pmatrix}\n -41 & 14 \\\\\n 9 & -3 \\\\\n 24 & -8\n\\end{pmatrix}".
Then we can get the formula, which is T(x,y,z)= (-41*x+9*y+24*z, 14*x-3*y-8*z)
Comments
Leave a comment