Linear Algebra Systems of Equations

AI Thread Summary
The discussion focuses on rewriting two systems of equations as matrix equations Ax = y and By = z, and finding the matrix C such that Cx = z. The initial matrices A and B were proposed, but confusion arose regarding the multiplication order and the substitution of y with Ax. It was clarified that instead of calculating the product AB, the correct approach is to substitute y in the second equation with Ax, leading to the equation z = BAx. This substitution allows for the correct formulation of matrix C. Understanding this substitution is crucial for solving the problem effectively.
lina29
Messages
84
Reaction score
0

Homework Statement


Consider the following two system of equations:

y_{1}=-2x_{1}-x_{2}+2x_{3}
y_{2}=2x_{1}+2x_{2}-3x_{3}
y_{3}=-2x_{1}-2x_{2}+2x_{3}

and

z_{1}=3y_{1}-4y_{2}-3y_{3}
z_{1}=3y_{1}-y_{2}-4y_{3}

Rewrite these 2 systems as Ax=y and By=z. Use this to get C so that Cx=z.
a) What is the matrix C?

B) Find the RREF matrix D which is row equivalent to the augmented matrix [C|z]

The Attempt at a Solution


My initial thought was that the matrix A would be:
-2 -1 2
2 2 -3
-2 -2 2

and matrix B:
3 -4 -3
3 -1 -4
and that C would be the product of A and B. However, I realized that since the column of A isn't the same as the row of B I couldn't form a product with them. I'm lost on how to find the matrix C. Do I need to invert a matrix in order to find C (the product)?
 
Physics news on Phys.org
No, you don't. Your have Ax= y and By= z. Replace y in the second equation by Ax.
 
I'm sorry I don't understand what you mean. Are you saying the matrix A is right but I would have to substitute matrix B with Ax instead of y? I don't get how I would replace y with Ax. My thought is that i would multiply the coefficients of y in the matrix b with the coefficients of x in matrix a.
 
lina29 said:
I don't get how I would replace y with Ax.

Well, you had y=Ax and z=By, so replacing y with Ax gives: z=BAx. I think you came across problems because you tried to calculate AB (which is the wrong order).
 

Similar threads

Back
Top