Hermitian[{1,2}]
represents the symmetry of a Hermitian matrix.
Hermitian
Hermitian[{1,2}]
represents the symmetry of a Hermitian matrix.
Details
- A Hermitian matrix is also known as a self-adjoint matrix.
- A square matrix m is Hermitian if ConjugateTranspose[m]m.
Examples
open all close allBasic Examples (2)
Scope (2)
Use Hermitian[…] as a symmetry for matrix domains:
Matrices[{d, d}, Complexes, Hermitian[{1, 2}]]Use the specification to simplify symbolic matrix expressions:
TensorExpand[ConjugateTranspose[m], Assumptions -> m∈%]Symmetrize matrices with respect to Hermitian symmetry:
m = {{9 I, -3 + 2 I}, {6 - 10 I, 4 + 7 I}};Symmetrize[m, Hermitian[{1, 2}]]Normal[%]HermitianMatrixQ[%]Applications (2)
Take a 3×3 matrix of complexes:
m = {{-3 + I, 1 + 5 I, 9 - 7 I}, {2 - 10 I, 5 - 4 I, -8 + 7 I}, {-1 + 3 I, 10 I, 3 - 5 I}};HermitianMatrixQ[m]h = Symmetrize[m, Hermitian[{1, 2}]]Normal[h]HermitianMatrixQ[%]Find the Hermitian matrix
with minimum 2-norm (largest singular value) such that the matrix
is positive semidefinite:
ConvexOptimization[Norm[x], VectorGreaterEqual[{x, {{1, I}, {-I, 1}}}, "SemidefiniteCone"], Element[x, Matrices[{2, 2}, Complexes, Hermitian[{1, 2}]]]]Properties & Relations (2)
Hermitian[slots] for an array of real entries automatically converts into Symmetric[slots]:
Matrices[{3, 3}, Reals, Hermitian[{1, 2}]]The diagonal elements of a Hermitian matrix are real:
Symmetrize[{{1 + I, 2 + 2I}, {3 + 3I, 4 + 4I}}, Hermitian[{1, 2}]]Diagonal[%]∈RealsTech Notes
Related Guides
History
Text
Wolfram Research (2020), Hermitian, Wolfram Language function, https://reference.wolfram.com/language/ref/Hermitian.html.
CMS
Wolfram Language. 2020. "Hermitian." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/Hermitian.html.
APA
Wolfram Language. (2020). Hermitian. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/Hermitian.html
BibTeX
@misc{reference.wolfram_2026_hermitian, author="Wolfram Research", title="{Hermitian}", year="2020", howpublished="\url{https://reference.wolfram.com/language/ref/Hermitian.html}", note=[Accessed: 13-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_hermitian, organization={Wolfram Research}, title={Hermitian}, year={2020}, url={https://reference.wolfram.com/language/ref/Hermitian.html}, note=[Accessed: 13-June-2026]}