Factor the matrix into the form QR where Q is orthogonal

Dustinsfl
Messages
2,217
Reaction score
5
Factor the matrix into the form QR where Q is orthogonal and R is upper triangular.

\begin{bmatrix}<br /> a &amp; b\\ <br /> c &amp; d<br /> \end{bmatrix}*\begin{bmatrix}<br /> e &amp; f\\ <br /> 0 &amp; g<br /> \end{bmatrix}=\begin{bmatrix}<br /> -1 &amp; 3\\ <br /> 1 &amp; 5<br /> \end{bmatrix}

\begin{bmatrix}<br /> a &amp; c <br /> \end{bmatrix}*\begin{bmatrix}<br /> b\\ <br /> d<br /> \end{bmatrix}=0

ae=-1

af+bg=3

ce=1

cf+dg=5

Skipping some steps but I arrive at:\begin{bmatrix}<br /> 1 &amp; \frac{4}{g}\\ <br /> -1 &amp; \frac{4}{g}<br /> \end{bmatrix}*\begin{bmatrix}<br /> -1 &amp; -1\\ <br /> 0 &amp; g<br /> \end{bmatrix}=\begin{bmatrix}<br /> -1 &amp; 3\\ <br /> 1 &amp; 5<br /> \end{bmatrix}

So as long as g \neq 0 it is all good?
 
Physics news on Phys.org


Works for me. You have a matrix that is orthogonal and another that is upper triangular, and they multiply to make the matrix on the right. The moral of the story seems to be that such factorizations aren't unique.
 


"Q is orthogonal" consists of three conditions, not one...
 


I forgot about the part where the columns have to be unit vectors...
 


Ok so the column vectors also have to be unit vectors and what is the other stipulation?
 


Dustinsfl said:
Ok so the column vectors also have to be unit vectors and what is the other stipulation?
I was counting polynomial equations -- so what you just said counts as 2 conditions.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top