Matrix-Vector Form Write an Augmented Matrix

AI Thread Summary
The discussion focuses on converting a system of linear equations into an augmented matrix format. The equations provided are r + 2s + t = 1, r - 3s + 3t = 1, and 4s - 5t = 3. Participants clarify that the augmented matrix is formed by appending the constants from the right side of the equations as the last column of the coefficient matrix. The correct structure of the augmented matrix is confirmed to be 3 x 4, with a common practice of using a dotted line to separate the coefficient matrix from the constants. Understanding this process is essential for solving systems of equations using matrix methods.
cosmos42
Messages
21
Reaction score
1

Homework Statement


Write in Vector-Matrix form then write the augmented matrix of the system.
r + 2s + t = 1
r - 3s +3t = 1
4s - 5t = 3

Homework Equations


The matrix to which the operations will be applied is called the augmented matrix of the system Ax = b, It is formed by appending the entries of the column vector b (right hand side of the equation) to those of the coefficient matrix A, creating a matrix that is now of order m x (n + 1).

The Attempt at a Solution


I know to use the coefficients to build the rows and columns of a 3 x 3 (?) matrix but I don't understand the augmentation part.
 
Last edited:
Physics news on Phys.org
cosmos42 said:

Homework Statement


Write in Vector-Matrix form then write the augmented matrix of the system.
r + 2s + t = 1
r - 3s +3t = 1
4s - 5t = 3

Homework Equations


The matrix to which the operations will be applied is called the augmented matrix of the system Ax = b, It is formed by appending the entries of the column vector b (right hand side of the equation) to those of the coefficient matrix A, creating a matrix that is now of order m x (n + 1)^4.
The last bit makes no sense. If matrix A is m x n (m rows by n columns), the augmented matrix will be m x (n + 1), NOT m x (n + 1)^4.
cosmos42 said:

The Attempt at a Solution


I know to use the coefficients to build the rows and columns of a 3 x 3 (?) matrix but I don't understand the augmentation part.
The constants on the right sides of the three equations will be the 4th column of the augmented 3 x 4 matrix.
 
Okay, so you have these linear equations:
\begin{array}{lcl}
r + 2s + t & = & 1 \\
r - 3s + 3t & = & 1 \\
4s - 5t & = & 3 \end{array}​
Now, you said you know how to make them into a matrix. The augmentation part is actually really easy. All you have to do is add the answers to the last column.
\begin{array}{ccc}
1 & 2 & 1 & 1\\
1 & -3 & 3 & 1 \\
0 & 4 & -5 & 3\end{array}​
It is common to see a dotted line separating the fourth column from the 3x3 matrix.
 
  • Like
Likes cosmos42
Mark44 said:
The last bit makes no sense. If matrix A is m x n (m rows by n columns), the augmented matrix will be m x (n + 1), NOT m x (n + 1)^4.

The constants on the right sides of the three equations will be the 4th column of the augmented 3 x 4 matrix.

1.) THE 4 WAS A MISTAKE IT WAS AN INDEX FOR THE FOOTNOTE: "The optional vertical line between the entries of A and those of b emphasizes the way the matrix is constructed"
 
Last edited:
GadgetStrutter said:
Okay, so you have these linear equations:
\begin{array}{lcl}
r + 2s + t & = & 1 \\
r - 3s + 3t & = & 1 \\
4s - 5t & = & 3 \end{array}​
Now, you said you know how to make them into a matrix. The augmentation part is actually really easy. All you have to do is add the answers to the last column.
\begin{array}{ccc}
1 & 2 & 1 & 1\\
1 & -3 & 3 & 1 \\
0 & 4 & -5 & 3\end{array}​
It is common to see a dotted line separating the fourth column from the 3x3 matrix.
Cool thanks!
 
  • Like
Likes GadgetStrutter
I picked up this problem from the Schaum's series book titled "College Mathematics" by Ayres/Schmidt. It is a solved problem in the book. But what surprised me was that the solution to this problem was given in one line without any explanation. I could, therefore, not understand how the given one-line solution was reached. The one-line solution in the book says: The equation is ##x \cos{\omega} +y \sin{\omega} - 5 = 0##, ##\omega## being the parameter. From my side, the only thing I could...
Back
Top