• Nakafa

    Nakafa

    Learn free and with quality.
Subject
    • Bachelor
Exercises
Holy
  • Quran
Articles
  • Politics
  • Community
  • About

Command Palette

Search for a command to run...

Linear Methods of AI

Complex Matrix

Definition of Matrix with Complex Entries

Just like matrices with real entries, we can also form matrices whose entries are complex numbers. Imagine a rectangular table containing complex numbers arranged neatly in rows and columns.

A rectangular scheme of complex numbers with m∈Nm \in \mathbb{N}m∈N rows and n∈Nn \in \mathbb{N}n∈N columns is called a complex m×nm \times nm×n matrix:

A=(a11⋯a1n⋮⋮am1⋯amn)=(aij)i=1,…,mj=1,…,nA = \begin{pmatrix} a_{11} & \cdots & a_{1n} \\ \vdots & & \vdots \\ a_{m1} & \cdots & a_{mn} \end{pmatrix} = (a_{ij})_{\substack{i=1,\ldots,m \\ j=1,\ldots,n}}A=​a11​⋮am1​​⋯⋯​a1n​⋮amn​​​=(aij​)i=1,…,mj=1,…,n​​

with coefficients aij∈Ca_{ij} \in \mathbb{C}aij​∈C for i=1,…,mi = 1, \ldots, mi=1,…,m and j=1,…,nj = 1, \ldots, nj=1,…,n. The set of all complex m×nm \times nm×n matrices is written as Cm×n\mathbb{C}^{m \times n}Cm×n.

The main difference from real matrices is that each entry aija_{ij}aij​ can now be a complex number such as 2+3i2 + 3i2+3i or −1−4i-1 - 4i−1−4i.

Adjoint Matrix

In the context of complex matrices, the concept of matrix transpose is extended to a more general concept called the adjoint matrix. This concept is the complex generalization of the transpose matrix ATA^TAT.

Let A∈Cm×nA \in \mathbb{C}^{m \times n}A∈Cm×n be a complex m×nm \times nm×n matrix. The adjoint matrix (complex conjugate transpose matrix) AHA^HAH of AAA is the complex n×mn \times mn×m matrix obtained by swapping the rows and columns of AAA and taking the complex conjugate of each entry:

AH=AT‾=A‾T=(a11‾⋯am1‾⋮⋮a1n‾⋯amn‾)∈Cn×mA^H = \overline{A^T} = \overline{A}^T = \begin{pmatrix} \overline{a_{11}} & \cdots & \overline{a_{m1}} \\ \vdots & & \vdots \\ \overline{a_{1n}} & \cdots & \overline{a_{mn}} \end{pmatrix} \in \mathbb{C}^{n \times m}AH=AT=AT=​a11​​⋮a1n​​​⋯⋯​am1​​⋮amn​​​​∈Cn×m

This process involves two steps: first transpose the matrix (swap rows and columns), then take the complex conjugate of each entry.

Properties of Adjoint Matrix

The adjoint matrix has several important properties that are useful in calculations. Here are the fundamental properties that always hold:

Basic Properties

  1. Relationship with real transpose: For A∈Rm×n⊂Cm×nA \in \mathbb{R}^{m \times n} \subset \mathbb{C}^{m \times n}A∈Rm×n⊂Cm×n, we have AH=ATA^H = A^TAH=AT

This makes sense because if the matrix only contains real entries, then the complex conjugate does not change its value.

  1. Involution: (AH)H=A(A^H)^H = A(AH)H=A

If we take the adjoint of an adjoint, we return to the original matrix.

Linear Operation Properties

  1. Linearity of addition: (A+B)H=AH+BH(A + B)^H = A^H + B^H(A+B)H=AH+BH

  2. Linearity of scalar multiplication: (λ⋅A)H=λ‾⋅AH(\lambda \cdot A)^H = \overline{\lambda} \cdot A^H(λ⋅A)H=λ⋅AH

Note that for scalar multiplication, we need to take the conjugate of the scalar λ\lambdaλ.

Multiplication Properties

  1. Anticommutative property of multiplication: (A⋅B)H=BH⋅AH(A \cdot B)^H = B^H \cdot A^H(A⋅B)H=BH⋅AH

This property shows that the adjoint of a matrix product is the product of the adjoints of those matrices in reverse order.

Euclidean Norm on Complex Spaces

For vectors in complex spaces, we need a way to measure the "length" or norm of that vector. The concept of Euclidean norm is extended for complex spaces using the adjoint matrix.

For v∈Cnv \in \mathbb{C}^nv∈Cn, we define:

vHv=∑i=1nvi‾vi=∑i=1n∣vi∣2∈R0+v^H v = \sum_{i=1}^n \overline{v_i} v_i = \sum_{i=1}^n |v_i|^2 \in \mathbb{R}_0^+vHv=i=1∑n​vi​​vi​=i=1∑n​∣vi​∣2∈R0+​

The Euclidean norm is calculated as:

∥v∥2=vHv\|v\|_2 = \sqrt{v^H v}∥v∥2​=vHv​

This defines a norm on Cn\mathbb{C}^nCn, namely the Euclidean norm ∥⋅∥2:Cn→R:v↦∥v∥2\|\cdot\|_2 : \mathbb{C}^n \to \mathbb{R} : v \mapsto \|v\|_2∥⋅∥2​:Cn→R:v↦∥v∥2​.

Properties of Euclidean Norm

The Euclidean norm satisfies the following properties:

Homogeneity: ∥αv∥2=∣α∣∥v∥2\|\alpha v\|_2 = |\alpha| \|v\|_2∥αv∥2​=∣α∣∥v∥2​

Positive definite: ∥v∥2≥0\|v\|_2 \geq 0∥v∥2​≥0 and ∥v∥2=0⇔v=0\|v\|_2 = 0 \Leftrightarrow v = 0∥v∥2​=0⇔v=0

Triangle inequality: ∥v+w∥2≤∥v∥2+∥w∥2\|v + w\|_2 \leq \|v\|_2 + \|w\|_2∥v+w∥2​≤∥v∥2​+∥w∥2​

These properties guarantee that ∥⋅∥2\|\cdot\|_2∥⋅∥2​ is truly a norm in the formal mathematical sense.

Previous

Complex Vector Space

Next

Eigenvalues, Eigenvectors, and Eigenspaces

  • Complex MatrixLearn complex matrices with adjoint operations, Hermitian transpose, Euclidean norms, and essential properties for quantum computing and signal processing.
On this page
  • Definition of Matrix with Complex Entries
  • Adjoint Matrix
  • Properties of Adjoint Matrix
    • Basic Properties
    • Linear Operation Properties
    • Multiplication Properties
  • Euclidean Norm on Complex Spaces
    • Properties of Euclidean Norm
  • Comments
  • Report
  • Source code