numpy linear algebra basic help - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T16:06:06Zhttp://stackoverflow.com/feeds/question/872376http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/872376/numpy-linear-algebra-basic-help1numpy linear algebra basic helpRobertW2009-05-16T12:53:23Z2009-05-17T09:06:31Z
<p>This is what I need to do-</p>
<p>I have this equation-</p>
<p>Ax = y</p>
<p>Where A is a rational m*n matrix (m<=n), and x and y are vectors of
the right size. I know A and y, I don't know what x is equal to. I
also know that there is no x where Ax equals exactly y.
I want to find the vector x' such that Ax' is as close as possible to
y. Meaning that (Ax' - y) is as close as possible to (0,0,0,...0).</p>
<p>I know that I need to use either the lstsq function:
<a href="http://www.scipy.org/doc/numpy_api_docs/numpy.linalg.linalg.html#lstsq" rel="nofollow">http://www.scipy.org/doc/numpy_api_docs/numpy.linalg.linalg.html#lstsq</a></p>
<p>or the svd function:
<a href="http://www.scipy.org/doc/numpy_api_docs/numpy.linalg.linalg.html#svd" rel="nofollow">http://www.scipy.org/doc/numpy_api_docs/numpy.linalg.linalg.html#svd</a></p>
<p>I don't understand the documentation at all. Can someone please show
me how to use these functions to solve my problem.</p>
<p>Thanks a lot!!!</p>
http://stackoverflow.com/questions/872376/numpy-linear-algebra-basic-help/872445#8724451Answer by David for numpy linear algebra basic helpDavid2009-05-16T13:33:44Z2009-05-16T13:33:44Z<p>The <a href="http://docs.scipy.org/doc/numpy/reference/generated/numpy.linalg.lstsq.html#numpy.linalg.lstsq" rel="nofollow">updated documentation</a> may be a bit more helpful... looks like you want</p>
<pre><code>numpy.linalg.lstsq(A, y)
</code></pre>
http://stackoverflow.com/questions/872376/numpy-linear-algebra-basic-help/872447#8724470Answer by duffymo for numpy linear algebra basic helpduffymo2009-05-16T13:34:35Z2009-05-16T13:34:35Z<p>SVD is for the case of m < n, because you don't really have enough degrees of freedom.</p>
<p>The docs for lstsq don't look very helpful. I believe that's least square fitting, for the case where m > n.</p>
<p>If m < n, you'll want <a href="http://web.mit.edu/be.400/www/SVD/Singular%5FValue%5FDecomposition.htm" rel="nofollow">SVD</a>. </p>
http://stackoverflow.com/questions/872376/numpy-linear-algebra-basic-help/872452#8724520Answer by Pete Kirkham for numpy linear algebra basic helpPete Kirkham2009-05-16T13:37:08Z2009-05-17T09:06:31Z<p>The SVD of matrix A gives you orthogonal matrices U and V and diagonal matrix Σ such that </p>
<p><strong>A</strong> = <strong>U</strong> <strong>Σ</strong> <strong>V</strong> <sup>T</sup></p>
<p>where
<strong>U</strong> <strong>U</strong><sup>T</sup> = <strong>I</strong> ;
<strong>V</strong> <strong>V</strong><sup>T</sup> = <strong>I</strong></p>
<p>Hence, if</p>
<p><strong>x</strong> <strong>A</strong> = <strong>y</strong></p>
<p>then</p>
<p><strong>x</strong> <strong>U</strong> <strong>Σ</strong> <strong>V</strong> <sup>T</sup> = <strong>y</strong></p>
<p><strong>x</strong> <strong>U</strong> <strong>Σ</strong> <strong>V</strong> <sup>T</sup> <strong>V</strong> = <strong>y</strong> <strong>V</strong></p>
<p><strong>x</strong> <strong>U</strong> <strong>Σ</strong> = <strong>y</strong> <strong>V</strong></p>
<p><strong>U</strong> <sup>T</sup> <strong>x</strong> <strong>Σ</strong> = <strong>y</strong> <strong>V</strong></p>
<p><strong>x</strong> <strong>Σ</strong> = <strong>U</strong> <strong>y</strong> <strong>V</strong></p>
<p><strong>x</strong> = <strong>Σ</strong> <sup>-1</sup> <strong>U</strong> <sup>T</sup> <strong>y</strong> <strong>V</strong> </p>
<p><strong>x</strong> = <strong>V</strong> <sup>T</sup> <strong>Σ</strong> <sup>-1</sup> <strong>U</strong> <sup>T</sup> <strong>y</strong> </p>
<p>So given SVD of <strong>A</strong> you can get <strong>x</strong>.</p>
<p><hr></p>
<p>Although for general matrices <strong>A B</strong> != <strong>B A</strong>, it is true for vector <strong>x</strong> that <strong>x U</strong> == <strong>U</strong> <sup>T</sup> <strong>x</strong>.</p>
<p>For example, consider <strong>x</strong> = ( x, y ), <strong>U</strong> = ( a, b ; c, d ): </p>
<p><strong>x</strong> <strong>U</strong> = ( x, y ) ( a, b ; c, d )</p>
<p>= ( xa+yc, xb+yd ) </p>
<p>= ( ax+cy, bx+dy ) </p>
<p>= ( a, c; b, d ) ( x; y )</p>
<p>= <strong>U</strong> <sup>T</sup> <strong>x</strong></p>
<p>It's fairly obvious when you look at the values in <strong>x</strong> <strong>U</strong> being the dot products of <strong>x</strong> and the columns of <strong>U</strong>, and the values in <strong>U</strong><sup>T</sup><strong>x</strong> being the dot products of the <strong>x</strong> and the rows of <strong>U</strong><sup>T</sup>, and the relation of rows and columns in transposition </p>