Difference between revisions of "Weighted Least Squares (WLS)"

From Medusa: Coordinate Free Mehless Method implementation
Jump to: navigation, search
(Normal equations)
(Normal equations)
Line 41: Line 41:
  
 
Complexity of Chol: $\frac{{{n}^{3}}}{3}$  complexity of matrix multiplication $n{{m}^{2}}$
 
Complexity of Chol: $\frac{{{n}^{3}}}{3}$  complexity of matrix multiplication $n{{m}^{2}}$
 +
 +
Pros:
 +
* simple to implement
 +
* low computational complexity
 +
Cons:
 +
* unstable
  
 
== QR Decomposition ==
 
== QR Decomposition ==

Revision as of 19:52, 21 October 2016

One of the most important building blocks of the meshless methods is the Moving Least Squares approximation, which is implemented in the EngineMLS class. Check EngineMLS unit tests for examples.

1D MLS example
Figure 1: Example of 1D MLS approximation

Basics

Our wish is to approximate an unknown function $u$ while knowing $n$ values $u(x_i) := u_i$. the vector of known values will be denoted by $\b{u}$ and the vector of coordinates where those values were achieved by $\b{x}$. The values of $\b{x}$ are called nodes.

In general, an approximation function can be written as \[\hat{u} (\b{p}) = \sum_{i=1}^m \alpha_i b_i(\b{p}) = \b{b}(\b{p})^\T \b{\alpha} \] where $\{b_i\}_{i=1}^m$ is a set of basis functions, and $\alpha_i$ are the unknown coefficients.

In MLS the goal is to minimize the sum of residuum squares error, i.e., the sum of squares of differences between the approximation function and target function in the known points $x_i$. In addition we can also add weight function that controls the significance of nodes, i.e.,

\[{r^2} = \sum\limits_j^n {W\left( {{{\mathbf{p}}_j}} \right){{\left( {u({{\mathbf{p}}_j}) - \hat u({{\mathbf{p}}_j})} \right)}^2}} = {\left( {{\mathbf{B\alpha }} - {\mathbf{u}}} \right)^{\text{T}}}{\mathbf{W}}\left( {{\mathbf{B\alpha }} - {\mathbf{u}}} \right)\]

Where $\b{B}$ is non-square matrix of dimension $m \times n$ and $\b{W}$ diagonal matrix of weights. The least squares problem can be solved with three approaches

  • Normal equation (fastest - less accurate) - using Cholesky decomposition
  • QR decomposition of $\b{B}$ ($rank(\b{B})=m$ - number of basis functions)
  • SVD decomposition of $\b{B}$ (more expensive - more reliable, no rank demand)

In MM we use SVD.

Normal equations

We seek the minimum of \[{r^2} = {\left( {{\bf{u}} - {\bf{B\alpha }}} \right)^{\rm{T}}}\left( {{\bf{u}} - {\bf{B\alpha }}} \right)\] By seeking the zero gradient in terms of coefficient \[\frac{\partial }{{\partial {\alpha _i}}}\left( {{{\left( {{\bf{u}} - {\bf{B\alpha }}} \right)}^{\rm{T}}}\left( {{\bf{u}} - {\bf{B\alpha }}} \right)} \right) = 0\] resulting in \[{\bf{B}}{{\bf{B}}^{\rm{T}}}{\bf{\alpha }} = {{\bf{B}}^{\rm{T}}}{\bf{u}}\] The coefficient matrix $\bf{B}^T\bf{B}$ is symmetric and positive definite. However, solving above problem directly is poorly behaved with respect to round-off effects since the condition number of $\bf{B}^T\bf{B}$ is the square of that of $\bf{B}$. Or in case of weighted LS \[{\bf{WB}}{{\bf{B}}^{\rm{T}}}{\bf{\alpha }} = {\bf{W}}{{\bf{B}}^{\rm{T}}}{\bf{u}}\]

Complexity of Chol: $\frac{{{n}^{3}}}{3}$ complexity of matrix multiplication $n{{m}^{2}}$

Pros:

  • simple to implement
  • low computational complexity

Cons:

  • unstable

QR Decomposition

\[{\bf{B}} = {\bf{QR}} = \left[ {{{\bf{Q}}_1},{{\bf{Q}}_2}} \right]\left[ {\begin{array}{*{20}{c}} {{{\bf{R}}_1}}\\ 0 \end{array}} \right]\] \[{\bf{B}} = {{\bf{Q}}_1}{{\bf{R}}_1}\] $\bf{Q}$ is unitary matrix ($\bf{Q}^{-1}=\bf{Q}^T$). Useful property of a unitary matrices is that multiplying with them does not alter the (Euclidean) norm of a vector, i.e., \[\left\| {{\bf{Qx}}} \right\|{\bf{ = }}\left\| {\bf{x}} \right\|\] And $\bf{R}$ is upper diagonal matrix \[{\bf{R = (}}{{\bf{R}}_{\bf{1}}}{\bf{,}}0{\bf{)}}\] therefore we can say \[\begin{array}{l} \left\| {{\bf{B\alpha }} - {\bf{u}}} \right\| = \left\| {{{\bf{Q}}^{\rm{T}}}\left( {{\bf{B\alpha }} - {\bf{u}}} \right)} \right\| = \left\| {{{\bf{Q}}^{\rm{T}}}{\bf{B\alpha }} - {{\bf{Q}}^{\rm{T}}}{\bf{u}}} \right\|\\ = \left\| {{{\bf{Q}}^{\rm{T}}}\left( {{\bf{QR}}} \right){\bf{\alpha }} - {{\bf{Q}}^{\rm{T}}}{\bf{u}}} \right\| = \left\| {\left( {{{\bf{R}}_1},0} \right){\bf{\alpha }} - {{\left( {{{\bf{Q}}_1},{{\bf{Q}}_{\bf{2}}}} \right)}^{\rm{T}}}{\bf{u}}} \right\|\\ = \left\| {{{\bf{R}}_{\bf{1}}}{\bf{\alpha }} - {{\bf{Q}}_{\bf{1}}}{\bf{u}}} \right\| + \left\| {{\bf{Q}}_2^{\rm{T}}{\bf{u}}} \right\| \end{array}\] Of the two terms on the right we have no control over the second, and we can render the first one zero by solving \[{{\bf{R}}_{\bf{1}}}{\bf{\alpha }} = {\bf{Q}}_{_{\bf{1}}}^{\rm{T}}{\bf{u}}\] Which results in a minimum. We could also compute it with pseudo inverse \[\mathbf{\alpha }={{\mathbf{B}}^{-1}}\mathbf{u}\] Where pseudo inverse is simply \[{{\mathbf{B}}^{-1}}=\mathbf{R}_{\text{1}}^{\text{-1}}{{\mathbf{Q}}^{\text{T}}}\] (once again, R is upper diagonal matrix, and Q is unitary matrix). And for weighted case \[\mathbf{\alpha }={{\left( {{\mathbf{W}}^{0.5}}\mathbf{B} \right)}^{-1}}\left( {{\mathbf{W}}^{0.5}}\mathbf{u} \right)\]

Complexity of QR decomposition \[\frac{2}{3}m{{n}^{2}}+{{n}^{2}}+\frac{1}{3}n-2=O({{n}^{3}})\]

SVD decomposition

In linear algebra, the singular value decomposition (SVD) is a factorization of a real or complex matrix. It has many useful applications in signal processing and statistics.

Formally, the singular value decomposition of an $m \times n$ real or complex matrix $B$ is a factorization of the form $B= U\Sigma V^\T$, where $U$ is an $m \times m$ real or complex unitary matrix, $\Sigma$ is an $m \times n$ rectangular diagonal matrix with non-negative real numbers on the diagonal, and $V^\T$ is an $n \times n$ real or complex unitary matrix. The diagonal entries $\Sigma_{ii}$ are known as the singular values of $B$. The $m$ columns of $U$ and the $n$ columns of $V$ are called the left-singular vectors and right-singular vectors of $B$, respectively.

The singular value decomposition and the eigen decomposition are closely related. Namely:

  • The left-singular vectors of $B$ are eigen vectors of $BB^\T$.
  • The right-singular vectors of $B$ are eigen vectors of $B^\T B$.
  • The non-zero singular values of $B$ (found on the diagonal entries of $\Sigma$) are the square roots of the non-zero eigenvalues of both $B^\T B$ and $B^\T B$.

with SVD we can write B as \[B=U\Sigma {{V}^{\T}}\] where are U and V again unitary matrices and $\Sigma$ stands for diagonal matrix of singular values.

Again we can solve either the system or compute pseudo inverse as

\[ B^{-1} = \left( U\Sigma V^\T\right)^{-1} = V\Sigma^{-1}U^\T \] where $\Sigma^{-1}$ is trivial, just replace every non-zero diagonal entry by its reciprocal and transpose the resulting matrix. The stability gain is exactly here, one can now set threshold below which the singular value is considered as 0, basically truncate all singular values below some value and thus stabilize the inverse.

SVD decomposition complexity \[ 2mn^2+2n^3 = O(n^3) \]