Dashboard

Featured nodes

Roots

  • Public root

Templates

  • Test template
  • iCorps template
  • Guanyu's Latex template
  • Ivar's latex template
  • Family Tree template
  • Latex template
  • Router template

Trees

  • Public trees

Orphans

  • Browse orphan nodes
Related nodes

Parents1

  • Factorization of matrices

Siblings6
  • Sort by title
  • Sort by date

  • Definition of singular value decomposition (SVD)
  • LU decomposition
  • Definition of rank factorization of a matrix
  • Definition of Cholesky decomposition
  • QR decomposition
  • Definition of Schur triangulation

Children2
  • Sort by title
  • Sort by date

  • Definition of QR decomposition
  • The QR decomposition of a nonsingular matrix exists.
Knowenβ
  • Help
    • Welcome to Knowen!
    • Edit test node (no login required)
    • Create new test node (no login required)
  • Not logged in
    • Sign in
    • Sign up

History & Comments

Back

Fill content

Description:Added QR decomposition
# QR decomposition

Put content here**Definition:** The **QR decomposition** of an $m \times n$ matrix $A$ (with $m \geq n$) is a factorization:
⏎
$$A = QR$$
⏎
where:
- $Q$ is an $m \times m$ orthogonal (unitary) matrix
- $R$ is an $m \times n$ upper triangular matrix (often written with zeros below the first $n$ rows)
⏎
The **reduced QR** has $Q$ as $m \times n$ with orthonormal columns and $R$ as $n \times n$ upper triangular.
⏎
**Example:**
$$\begin{pmatrix} 1 & 1 \\ 1 & 0 \\ 0 & 1 \end{pmatrix} = \begin{pmatrix} 1/\sqrt{2} & 1/\sqrt{6} \\ 1/\sqrt{2} & -1/\sqrt{6} \\ 0 & 2/\sqrt{6} \end{pmatrix} \begin{pmatrix} \sqrt{2} & 1/\sqrt{2} \\ 0 & \sqrt{3/2} \end{pmatrix}$$
⏎
**Methods:** Gram-Schmidt process, Householder reflections, or Givens rotations.
⏎
**Applications:** solving least squares problems, eigenvalue algorithms (QR algorithm), and orthogonalization.

# Parents

* Factorization of matrices
Sign in to add a new comment

Contact us or leave feedback

© KTree Inc. 2026