QUICK QUESTION about matrix (linear algebra)

AI Thread Summary
Elementary row operations can be performed on a matrix without changing its fundamental properties, as they are used to row-reduce the matrix. When row-reducing, it's important to use the equivalence symbol "→" instead of "=" to avoid misrepresenting the relationships between the rows. The equal sign implies specific values for the matrix elements, which can lead to confusion when performing operations. Row operations help in analyzing systems of equations, such as determining linear independence or the triviality of a kernel. Understanding the correct notation and operations is essential for accurate matrix manipulation in linear algebra.
kougou
Messages
80
Reaction score
0
Hello guys,
I am wondering, could a elementary row operation be done to a matrix without changing it.

I know that if we have the SYSTEM, then we could exchange rows, scalar multiplication of a row, linear combination of one rows.

but if we are only given a matrix, and we are asked to row reduce that matrix, could we still do scalar multiplication of a rows, exchange rows, etc?

Thank you
 
Physics news on Phys.org
Yup. You can think of row-reducing a matrix by itself as essentially solving the system Ax=0, which is something you might want to do to show that vectors are linearly independent, that the kernel of a linear map is trivial, etc. There's really no point in tacking on a column of zeros to form an enhanced matrix since the row operations will leave it unchanged.
 
vela said:
Yup. You can think of row-reducing a matrix by itself as essentially solving the system Ax=0, which is something you might want to do to show that vectors are linearly independent, that the kernel of a linear map is trivial, etc. There's really no point in tacking on a column of zeros to form an enhanced matrix since the row operations will leave it unchanged.

Thank you for your reply.
I remember my TA told me that when we are doing row reduction for a matrix, we must use this symbol "→", not "=", or else marks will be reduced.
I ask him why, but I not exactly remember what he said.

so, I got confuse, ... because of this symbol, sometimes when I am asked to reduce a matrix, I afraid of exchanging rows, etc, because I thought it's not a system.

thank you, very helpful
 
Your TA said that because the equal sign has a specific meaning. If you write, for example,
\begin{pmatrix} a & b \\ c & d \end{pmatrix} = \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix}, it means that a=1, b=2, c=3, and d=4. If you have the matrix \begin{pmatrix} 1 & 2 \\ 1 & 3 \end{pmatrix} and you subtract row 1 from row 2, it wouldn't make sense to write
\begin{pmatrix} 1 & 2 \\ 1 & 3 \end{pmatrix} = \begin{pmatrix} 1 & 2 \\ 0 & 1 \end{pmatrix} because you'd be saying that 1=0 and 3=1, which is obviously nonsense.
 
The symbol for equivalence is used more often, I believe. In fact, I don't recall seeing an arrow used in this context.

Using vela's example, we would have
\begin{bmatrix}1&2 \\ 1 & 3\end{bmatrix} \equiv \begin{bmatrix}1&2 \\ 0 & 1\end{bmatrix}

Here the two matrices are equivalent.
The first matrix could represent the system of equations
x + 2y = 0
x + 3y = 0

The system above is equivalent to this system:
x + 2y = 0
0x + y = 0

Notice that it wouldn't make any sense to call the two systems of equations "equal."
 
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...
Essentially I just have this problem that I'm stuck on, on a sheet about complex numbers: Show that, for ##|r|<1,## $$1+r\cos(x)+r^2\cos(2x)+r^3\cos(3x)...=\frac{1-r\cos(x)}{1-2r\cos(x)+r^2}$$ My first thought was to express it as a geometric series, where the real part of the sum of the series would be the series you see above: $$1+re^{ix}+r^2e^{2ix}+r^3e^{3ix}...$$ The sum of this series is just: $$\frac{(re^{ix})^n-1}{re^{ix} - 1}$$ I'm having some trouble trying to figure out what to...
Back
Top