Saturday, December 3, 2011

Convex Optimization

http://web.njit.edu/~simeone/ece788.htm

Fundamental theorem of linear algebra


In mathematics, the fundamental theorem of linear algebra makes several statements regarding vector spaces. These may be stated concretely in terms of the rank r of an m×nmatrix A and its singular value decomposition:
A=U\Sigma V^T\
First, each matrix A \in \mathbf{R}^{m \times n} (A has m rows and n columns) induces four fundamental subspaces. These fundamental subspaces are:
name of subspacedefinitioncontaining spacedimensionbasis
column space, range or imageim(A) or range(A)\mathbf{R}^mr (rank)The first r columns of \mathbf{U}
nullspace or kernelker(A) or null(A)\mathbf{R}^nn − r (nullity)The last (n − r) columns of \mathbf{V}
row space or coimageim(AT) or range(AT)\mathbf{R}^nrThe first r rows of \mathbf{V}^T
left nullspace or cokernelker(AT) or null(AT)\mathbf{R}^mm − rThe last (m − r) rows of \mathbf{U}^T

Range of a matrix (Column Space)

In linear algebra, the column space of a matrix (sometimes called the range of a matrix) is the set of all possible linear combinations of its column vectors. The column space of an m × n matrix is a subspace of m-dimensional Euclidean space. The dimension of the column space is called the rank of the matrix.


The column space of a matrix is the image or range of the corresponding matrix transformation.
The dimension of the column space is called the rank of the matrix.


Definition:

Let A be an m × n matrix, with column vectors v1v2, ..., vn. A linear combination of these vectors is any vector of the form
c_1 \textbf{v}_1 + c_2 \textbf{v}_2 + \cdots + c_n \textbf{v}_n\text{,}
where c1c2, ..., cn are scalars. The set of all possible linear combinations of v1,...,vn is called the column space of A. That is, the column space of A is the span of the vectorsv1,...,vn.
Basis
The columns of A span the column space, but they may not form a basis if the column vectors are not linearly independent. Fortunately, elementary row operations do not affect the dependence relations between the column vectors. This makes it possible to use row reduction to find a basis for the column space.



The left null space of A is the set of all vectors x such that xTA = 0T. It is the same as the null space of the transpose of A. The left null space is the orthogonal complement to the column space of A.
This can be seen by writing the product of the matrix AT and the vector x in terms of the dot product of vectors:
A^T\textbf{x} = \begin{bmatrix} \textbf{c}_1 \cdot \textbf{x} \\ \textbf{c}_2 \cdot \textbf{x} \\ \vdots \\ \textbf{c}_n \cdot \textbf{x} \end{bmatrix}\text{,}

Subgradient Method

From wikipedia
Subgradient methods are iterative methods for solving convex minimization problems. Originally developed by Naum Z. Shor and others in the 1960s and 1970s, subgradient methods are convergent when applied even to a non-differentiable objective function. When the objective function is differentiable, subgradient methods for unconstrained problems use the same search direction as the method of steepest descent.
Subgradient projection methods are often applied to large-scale problems with decomposition techniques. Such decomposition methods often allow a simple distributed method for a problem.


http://en.wikipedia.org/wiki/Subgradient_method

Friday, December 2, 2011

Semi-definite and Gramian matrix


It is called positive-semidefinite (or sometimes nonnegative-definite) if
x^{*} M x \geq 0
A matrix M is positive-semidefinite if and only if it arises as the Gram matrix of some set of vectors. In contrast to the positive-definite case, these vectors need not be linearly independent.

Gram matrix:
In linear algebra, the Gramian matrix (or Gram matrix or Gramian) of a set of vectors v_1,\dots, v_n in an inner product space is the Hermitian matrix of inner products, whose entries are given by G_{ij}=\langle v_j, v_i \rangle.