# Eigen Value Decomposition

Solution of the below equation gives the eigenvalues and eigenvectors.

$$
Ax = \lambda x
$$

**Eigenvectors are basically the vectors which only scale under the transformation** $$A$$**where the scale is given by** $$\lambda$$**.**&#x20;

Let $$A$$be matrix of dimension $$n \times n$$. And let it have all the real eigenvalues and eigenvectors i.e $$n$$eigenvalues and eigenvectors. Then we will following equations.&#x20;

$$
Ax\_i = \lambda\_i x\_i  \forall i
$$

Basically we get $$n$$ equations with $$x\_i$$being eigenvectors, now we should we able to represent all the $$n$$individual equations using one matrix equation. You can see that all the equations can be combined as&#x20;

$$
A\[x\_1, x\_2, ..., x\_n] = \[\lambda\_1 x\_1, \lambda\_2 x\_2, .... \lambda\_n x\_n] \\
\= \[x\_1, x\_2, ..., x\_n] \text{diag}(\lambda\_1, \lambda\_2, ...,  \lambda\_n)
$$

where $$\[x\_1, x\_2, ..., x\_n]$$is essentially a matrix with vector $$x\_1, x\_2, ..., x\_n$$as its columns.&#x20;

Let's represent $$\[x\_1, x\_2, ..., x\_n]$$as $$V$$i.e $$V = \[x\_1, x\_2, ..., x\_n]$$. Then we can write&#x20;

$$
AV = V\text{diag}(\lambda\_1, \lambda\_2, \lambda\_n) \\
A = V\text{diag}(\lambda\_1, \lambda\_2, ...,  \lambda\_n)V^{-1}
$$

Where $$V$$is the matrix made by eigenvectors as columns of $$V$$and $${diag}(\lambda\_1,  \lambda\_2, ..., \lambda\_n)$$is the diagonal matrix with eigenvalues as diagonal elements.&#x20;

**This is eigenvalue decomposition.**&#x20;

### **Real-Symmetric Matrix**

Now if the matrix $$A$$is real-symmetric matrix, the eigenvectors are actually orthogonal. Then we represent the decomposition as&#x20;

$$
A = Q\Lambda Q^T
$$

Where $$Q$$is an orthogonal matrix formed by orthogonal eigenvectors.&#x20;

### Use of Eigenvalues

* Matrix is singular if and only if any of it's eigenvalues are zero.&#x20;
* If $$A$$is real-symmetrix then solution of $$f(x)= x^T Ax$$ subject to $$||x||\_2 = 1$$. Here is $$x$$is an eigenvector then $$f(x)$$is corresponding eigenvalue. The minimum and maximum value of $$f(x)$$is simply minimum and maximum eigenvalue.&#x20;
* If all eigenvalues are positive then the matrix is positive-definite. Similary about positive-semidefinite, etc.&#x20;
* $$A^2 = AA=X\Lambda X^{-1}X\Lambda X^{-1} = X\Lambda^2 X^{-1}$$

{% embed url="<https://youtu.be/HWnCv4iHCDc>" %}

{% embed url="<https://youtu.be/PFDu9oVAE-g>" %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://theshank.gitbook.io/ai/linear-algebra/matrix-decomposition/eigen-value-decomposition.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
