Questions tagged [matrix-decomposition]

Questions about matrix decompositions, such as the LU, Cholesky, SVD (Singular value decomposition) and eigenvalue-eigenvector decomposition.

In linear algebra, a matrix decomposition or matrix factorization is a factorization of a matrix into a product of matrices. There are many different matrix decompositions; each finds use among a particular class of problems.

  • For instance, when solving a system of linear equations $Ax=b$, the matrix $A$ can be decomposed via the LU decomposition. The LU decomposition factorizes a matrix into a lower triangular matrix L and an upper triangular matrix U.

  • Similarly, the QR decomposition expresses $A$ as QR with Q an orthogonal matrix and R an upper triangular matrix.

Other decomposition techniques include: Block LU decomposition, LU reduction, rank factorisation, Cholesky decomposition, etc.

Source: Wikipedia.

2679 questions
0
votes
0 answers

Is this the correct iterative version of the multiplicative update rule for matrix factorization?

So we have $A_{m\times n}\approx P_{m\times k}Q_{k\times n}.$ Using the multiplicative update rule due to Lee we, in general, write that: $$P\leftarrow P \circ \frac{AQ^T}{PQQ^T}$$ and $$Q\leftarrow Q \circ \frac{P^TA}{P^TPQ}.$$ Since I am…
Student
  • 9,196
  • 8
  • 35
  • 81
0
votes
1 answer

Complex factorisation of a psd matrix

Let $A\in\mathbb{R}^{n\times n}$ be a symmetric positive definite matrix. Assume that $A=L\cdot L^{t}$ for $L\in\mathbb{C}^{n\times m}$. Can we infer that $L$ is intact real, i.e., has only real entries?
0
votes
0 answers

Proof that in the Jordan-Chevalley decomposition of an invertible matrix, the diagonalisable matrix is invertible

Let $F$ be a field and $n\in \mathbb N^*$. The (additive) Jordan-Chevalley decomposition theorem states that for any matrix $M\in \mathcal M_n(F)$ whose characteristic polynomial splits into linear factors there exists a unique decomposition $M=D+N$…
James Well
  • 1,209
0
votes
1 answer

I need to find $v$ so that $v\times v'$ equals $A(n \times n)$

Be $A_{n\times n}$ symmetric. I need to find $v_{m\times n}$ so that $v^T \times v = A$ for an algorithm in Julia. Can anyone help me (either w/ Julia or linear algebra)?
0
votes
1 answer

Eigenvalue decomposition of Cross Gramian matrix

For a symmetric state space system $G(s)=\left\{A,B,C,D\right\}$, the cross Gramain matrix $R$ is the solution of $$AR+RA+BC=0$$ Using eigenvalue decomposition, problem is to obtain a matrix U which diagonalizes the cross gramian matrix $R$,…
Dee Kay
  • 11
0
votes
1 answer

Non-Negative Matrix Factorization Constraints

$A\in{\mathbb{R}^+}^{m\times n}$ (i.e. a matrix with elements that are positive real numbers). The rank of $A$ is $k$, and $k < min(m,n)$. Therefore $A = BC$, where $B\in{\mathbb{R}^+}^{m\times k}$ and $C\in{\mathbb{R}^+}^{k\times n}$. Also, we…
Alex
  • 452
0
votes
0 answers

What is a practical real world problem that requires the usage of matrix factorization

I am not asking about the various methods of decomposing a matrix. I am looking for a real world problem that can be represented in matrix form and then can be solved using the concepts of decomposition. i.e in short, why do we need to learn matrix…
0
votes
0 answers

Which row/column in a matrix genarate which singular value

I know that svd of a matrix arranges the singular values in descending order. My question is: Is it possible to know which row/column generate a specific singular value, for e.g. the largest one. Thanks in advance.
Tom
  • 1
0
votes
1 answer

A question about positive definite matrix decomposition

G and V are two positive definite symmetric matrices. How to find a symmetric matrix W such that: $$W G W =V$$
xjtein
  • 298
1 2
3