How can I reduce this matrix to its reduced row echelon form?

doggitz
Messages
3
Reaction score
0
I have to produce the reduced row echelon form of the following matrix:

Code:
A  =     |  cos(x)       sin(x)  |
         |  -sin(x)      cos(x)  |

I am just learning Linear Algebra, and I am in the early Chapters of my book, so I can only use the Gauss method or the Gauss-Jordan method for this matrix. Just to clarify, I am hoping to return to school, so I am trying to learn this on my own.


I believe the solution to be the I2 identity matrix:

Code:
I  =      |  1        0  | 
         |  0        1  |

I have found the matrix A raised to a power of n, during previous exercises, where I had to use the double angle formulas for sin(x) and cos(x). Is this the same method/avenue to use when solving this problem?
 
Physics news on Phys.org
No, you just do the same sort of thing you'd do if the matrix were full of numbers. Start out by multiplying the first row by sin(x) and add it to cos(x) times the second row.
 
Prove $$\int\limits_0^{\sqrt2/4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx = \frac{\pi^2}{8}.$$ Let $$I = \int\limits_0^{\sqrt 2 / 4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx. \tag{1}$$ The representation integral of ##\arcsin## is $$\arcsin u = \int\limits_{0}^{1} \frac{\mathrm dt}{\sqrt{1-t^2}}, \qquad 0 \leqslant u \leqslant 1.$$ Plugging identity above into ##(1)## with ##u...
Back
Top