← LibraryMatrices, Complex Conjugation and the Adjoint | KEVOS® MathematicsProject Delivery · Project ManagementLesson 91/189← PrevNext →
ArticlePublished 8 Aug 202621 min readBy Kevin Jogin
Skip to content

Engineering/Mathematics/Matrices

Matrices, Complex Conjugation and the Adjoint

Conjugating a matrix means conjugating every entry, an operation that respects addition, distributes over scalar multiplication with a conjugated scalar, and commutes with the transpose. That last fact makes the adjoint A=A¯t unambiguous and supplies the correct complex analogue of the transpose.

  • Core level
  • Stream: complex
  • Reading time 14 min
  • Ref KVS-ENG-MATH-0037
Taxonomy
Engineering / Mathematics
Prerequisite
Complex conjugation in ; the matrix transpose
Size
A¯ is m×n; A is n×m
Key identity
At¯=A¯t — order is immaterial
Semilinearity
αA¯=α¯A¯, not αA¯
Self-adjoint case
A=A defines a Hermitian matrix

Overview

Complex conjugation on a single number replaces a+bi by abi, reflecting it across the real axis. Extending this to a matrix follows the same pattern as addition and scalar multiplication: conjugate every entry independently and leave the shape alone. The conjugate A¯ of an m×n matrix is therefore another m×n matrix, and every question about it reduces to a question about one complex number.

Two interaction results establish that conjugation is well behaved with the existing operations. Conjugation respects addition exactly, A+B¯=A¯+B¯, because conjugation in respects addition. It respects scalar multiplication only after conjugating the scalar, αA¯=α¯A¯, because conjugation in is multiplicative and α¯ is not generally α. The operation is therefore additive but semilinear, and the missing conjugate on the scalar is one of the more persistent sources of sign error in complex linear algebra.

The third result is the practically decisive one: conjugation and transposition commute, At¯=A¯t. Both routes reverse the index pair and conjugate the value, and neither operation depends on the other's output. This licenses defining the adjoint or conjugate transpose A without specifying an order, and it is the operation that plays the structural role over that the plain transpose plays over .

The engineering motivation is direct. Phasor impedance matrices, scattering matrices, discrete Fourier operators, quantum Hamiltonians and covariance matrices of complex baseband signals all have genuinely complex entries. For these, the plain transpose produces a quantity with no physical meaning: xtx can be zero for a non-zero signal, whereas xx is the total energy. Every notion of length, angle, orthogonality and self-adjointness over is phrased with the adjoint, not the transpose.

Definition

Complex Conjugate of a Matrix

CCM

Given an m×n matrix A, its conjugate A¯ is the m×n matrix defined by [A¯]ij=[A]ij¯ for all 1im, 1jn. Each entry is replaced by its complex conjugate and no entry changes position.

A matrix satisfies A¯=A exactly when every entry is real, so conjugation is a test for a real matrix as well as an operation on a complex one.

Adjoint of a Matrix

ADJ

The adjoint (or conjugate transpose, or Hermitian transpose) of an m×n matrix A is the n×m matrix A=A¯t, with entries [A]ij=[A]ji¯. Because conjugation and transposition commute, At¯ gives the same matrix and the order of the two steps is immaterial.

Also written AH in engineering literature and A in physics. For a real matrix, A=At.

Hermitian (Self-Adjoint) Matrix

HM

A matrix satisfying A=A is Hermitian. As with symmetry, no size hypothesis is needed: A is m×n and A is n×m, so the equality forces m=n. Setting i=j in [A]ij=[A]ji¯ shows every diagonal entry equals its own conjugate and is therefore real.

Over the Hermitian condition reduces exactly to symmetry. Hermitian matrices have real eigenvalues and an orthonormal eigenbasis.

Concepts

Conjugation respects matrix addition

For m×n matrices A and B, A+B¯=A¯+B¯. The proof is four steps at an arbitrary index: the definition of matrix conjugation turns [A+B¯]ij into [A+B]ij¯; the definition of matrix addition expands it to [A]ij+[B]ij¯; the fact that conjugation in distributes over sums splits it; and the two definitions applied in reverse reassemble the right-hand side. Nothing about matrices is used beyond the index notation.

Conjugation is semilinear, not linear

For a scalar α, αA¯=α¯A¯. The scalar must be conjugated as well, which is the single most important structural difference between conjugation and the linear operations. A map that is additive but pulls a conjugate through scalars is called semilinear or conjugate-linear. The same phenomenon makes the complex inner product conjugate-linear in its first argument, and forgetting it turns an energy into a meaningless complex number.

Conjugation commutes with transposition

For any m×n matrix, At¯=A¯t. Chasing an entry, the left side is [At]ij¯=[A]ji¯, and the right side is [A¯]ji=[A]ji¯; the two agree. The result matters because it makes the adjoint well defined without a stated order of operations, and because it lets any identity be manipulated by moving conjugates past transposes freely.

The adjoint, not the transpose, generalises to

The reason the adjoint displaces the transpose is that inner products must remain positive definite. For a complex column vector, xtx=[x]k2 can vanish for non-zero x — take x=(1,i) — whereas xx=|[x]k|2 is real, non-negative, and zero only for the zero vector. Every geometric notion over therefore uses the adjoint: the inner product is u,v=uv, orthogonality is uv=0, and the norm is x=xx.

The adjoint is an involution and reverses products

Applying the adjoint twice restores the original matrix, (A)=A, since both conjugation and transposition are involutions and they commute. Like the transpose, the adjoint reverses the order of a product: (AB)=BA. It is additive and semilinear, (A+B)=A+B and (αA)=α¯A. These four facts, together, are the working rules for manipulating any expression involving adjoints.

Hermitian and unitary matrices

Two classes defined through the adjoint dominate applications. A Hermitian matrix satisfies A=A; its diagonal is real, its eigenvalues are real, and its eigenvectors for distinct eigenvalues are orthogonal. A unitary matrix satisfies UU=I, so its columns form an orthonormal set and it preserves the complex inner product and hence all lengths and angles. Hermitian matrices model observables and energies; unitary matrices model lossless transformations such as the discrete Fourier transform and scattering in a lossless network.

Decision path: choosing between transpose, conjugate and adjoint

Are all entries real?If so, conjugation is the identity and A=At. Use the plain transpose; nothing is gained by carrying complex machinery.
Is the shape meant to change?If rows must become columns, a transpose is involved. If not — for instance when converting a phasor to its time-reversed counterpart — use conjugation alone, which preserves shape.
Does the quantity represent length, energy or an angle?If yes, the adjoint is mandatory. xtx is not a squared norm over and can vanish for non-zero vectors.
Test A=AIf the matrix equals its adjoint it is Hermitian: real diagonal, real eigenvalues, orthonormal eigenbasis, and an LDL or Cholesky factorisation available.
Test AA=IIf so the matrix is unitary; its inverse is its adjoint, its condition number in the 2-norm is one, and it preserves every inner product.

Equations

Definition of the matrix conjugate

EQ-MCC-01
[A¯]ij=[A]ij¯1im,1jn

Each entry is conjugated in place. The shape is unchanged, so A¯ is again m×n.

Worked conjugate of a 2×3 complex matrix

EQ-MCC-02
A=[1+2i43+i52i2i6]A¯=[12i43i5+2i2i6]

Real entries such as 4 and 6 are fixed by conjugation; purely imaginary entries such as 2i change sign.

Conjugation respects matrix addition

EQ-MCC-03
A+B¯=A¯+B¯A,BMmn

Follows entrywise from the additivity of conjugation in .

Conjugation is semilinear in the scalar

EQ-MCC-04
αA¯=α¯A¯α

The scalar is conjugated as well. Omitting the conjugate on α is the most common error in complex matrix manipulation.

Conjugation commutes with transposition

EQ-MCC-05
At¯=A¯t

Both routes reverse the index pair and conjugate the value, so the adjoint may be defined without stating an order.

The adjoint

EQ-MCC-06
A=A¯t,[A]ij=[A]ji¯,(A)=A

The n×m conjugate transpose. It is an involution and reduces to the plain transpose when A is real.

Complex inner product and the Hermitian condition

EQ-MCC-07
u,v=uv,A=A[A]ij=[A]ji¯

The inner product over is built from the adjoint, and a matrix equal to its adjoint is Hermitian with a necessarily real diagonal.

Variable Definitions

Symbols used on this page
SymbolNameMeaningDomain / type
AComplex matrixAn m×n matrix with entries in M_{mn}
A¯ConjugateEntrywise complex conjugate of A; same shape as AM_{mn}
AtTransposeIndex-reversed matrix, without conjugationM_{nm}
AAdjointConjugate transpose A¯tM_{nm}
[A]ijMatrix entryThe complex number in row i, column jcomplex number
αScalarComplex number; conjugated when pulled through the conjugation operatorcomplex number
uComplex column vectorAn m×1 matrix used in inner productsC^m
u,vComplex inner productThe scalar uv; conjugate-linear in its first argumentcomplex number
IIdentity matrixSquare matrix with ones on the diagonal; UU=I defines a unitary matrixn x n matrix

Worked Numerical Example

Problem statement

A two-port radio-frequency subsystem is characterised by a 2×3 complex gain matrix A relating three input tones to two output ports, entries being phasors in volts per volt. Form the conjugate, the transpose and the adjoint, verify that conjugation and transposition commute, and compute the Hermitian output covariance AA.

  1. State the gain matrix

    Rows index the two output ports and columns the three input tones. Entries 4 and 6 are real, meaning those paths introduce no phase shift; 2i is a quarter-wave delay of unit magnitude.

    A=[1+2i43+i52i2i6]
  2. Conjugate every entry

    Apply [A¯]ij=[A]ij¯. The shape stays 2×3. Physically this reverses the sign of every phase angle, which corresponds to conjugating the phasor representation of a real signal.

    A¯=[12i43i5+2i2i6]
  3. Transpose without conjugating

    Apply [At]ij=[A]ji to the original matrix. The result is 3×2 and the entries retain their original phases — this is not the adjoint.

    At=[1+2i52i42i3+i6]
  4. Form the adjoint by both routes

    Conjugating At and transposing A¯ give the same 3×2 matrix, confirming At¯=A¯t on this instance. Check entry (1,2): from At¯ it is 52i¯=5+2i; from A¯t it is [A¯]21=5+2i.

    A=[12i5+2i42i3i6]
  5. Compute the diagonal of AA

    Entry (1,1) is the sum of squared magnitudes along row 1: |1+2i|2+|4|2+|3+i|2=5+16+10=31. Entry (2,2) is |52i|2+|2i|2+|6|2=29+4+36=69. Both are real and positive, as the adjoint construction guarantees.

    [AA]11=31,[AA]22=69
  6. Compute the off-diagonal entry

    Entry (1,2) pairs row 1 of A against the conjugate of row 2: (1+2i)(5+2i)+4(2i)+(3+i)(6). Expanding gives (1+12i)8i+(18+6i)=17+10i. Entry (2,1) is its conjugate, 1710i.

    AA=[3117+10i1710i69]
  7. Verify the result is Hermitian

    The order-reversing rule gives (AA)=(A)A, and the involution property turns (A) back into A, so (AA)=AA and the result is Hermitian before any arithmetic is done. The numbers agree: the diagonal is real and the two off-diagonal entries are conjugates of one another.

Result

The matrix AA is the output covariance of the subsystem under uncorrelated unit-power inputs. Its real diagonal entries 31 and 69 are the total power delivered to each port, and the complex off-diagonal entry 17+10i is the cross-correlation between ports, its magnitude 38919.7 bounding the coupling. Had the plain transpose been used instead of the adjoint, the diagonal would have been complex and the interpretation as power would have been lost entirely.

Applications & Industry Use

Radio-frequency and microwave engineering

Scattering matrices and reciprocity

An S-parameter matrix has complex entries encoding magnitude and phase. A reciprocal network gives a symmetric S (equal to its plain transpose), while a lossless network gives a unitary S satisfying SS=I. The two conditions are different and testing for the wrong one misdiagnoses the network.

Signal processing

Complex baseband covariance and beamforming

Array processing forms the sample covariance R=1Nxkxk, which is Hermitian and positive semi-definite by construction. Beamformer weights are computed from R by Hermitian eigendecomposition, and using a plain transpose would produce a complex-eigenvalued matrix with no physical reading.

Quantum engineering

Observables and unitary evolution

Physical observables are represented by Hermitian operators, guaranteeing real measurement outcomes, and closed-system evolution by unitary operators, guaranteeing probability is conserved. Both classes are defined through the adjoint, and numerical simulation must preserve those properties to machine precision or the physics degrades.

Power systems

Complex power and admittance matrices

Complex power is computed as S=VI, with the conjugate on the current, so that real power emerges as the real part. In a bus admittance matrix the reciprocity of passive elements gives symmetry, not Hermitian structure; the distinction determines which sparse solver is applicable.

Structural dynamics

Complex modal analysis of damped systems

Non-proportionally damped systems have complex mode shapes appearing in conjugate pairs. Modal assurance criteria and orthogonality checks between modes are formed with the adjoint, so that a mode's self-correlation is a real positive number rather than an arbitrary complex value.

Numerical computing

Fourier and wavelet operators

The unitary discrete Fourier matrix satisfies FF=I, so its inverse is its adjoint and costs nothing beyond a conjugation. This identity underpins the inverse FFT and is the reason forward and inverse transforms share almost all of their implementation.

Design Considerations

Default to the adjoint on complex data

Choose the plain transpose only when the mathematics genuinely calls for an index rearrangement with no conjugation, such as reading a symmetric admittance matrix or converting a storage layout. Every quantity carrying an interpretation as energy, power, length, angle or correlation must be built with the adjoint. Making the adjoint the default and the transpose the exception eliminates an entire class of defects.

Do not lose the conjugate on scalars

Conjugation is semilinear: αA¯=α¯A¯ and (αA)=α¯A. When a scalar gain, a phase rotation or a window coefficient is factored out of an expression containing an adjoint, the factor must be conjugated. The resulting error is a sign or phase flip that is invisible in magnitude-only plots and appears only when phases are compared.

Enforce Hermitian structure rather than hoping for it

A covariance or Gram matrix that is Hermitian in exact arithmetic will generally have a small non-Hermitian component after floating-point accumulation, and Hermitian eigensolvers may then return complex eigenvalues or fail outright. Symmetrise explicitly with 12(A+A), or compute only one triangle and mirror it with conjugation.

Store real and imaginary parts thoughtfully

Interleaved complex storage matches most library interfaces and suits entrywise conjugation, which merely negates alternate values. Split storage of real and imaginary arrays vectorises better for arithmetic-heavy kernels and lets a real-valued fast path skip the imaginary array entirely. Choose once and convert at the boundary rather than mixing layouts.

Recognise where symmetry and Hermitian structure diverge

For complex matrices, A=At (complex symmetric) and A=A (Hermitian) are genuinely different conditions with different theory. Complex symmetric matrices need not have real eigenvalues and need not be diagonalisable by a unitary; Hermitian matrices always do. Bus admittance matrices are typically complex symmetric, covariance matrices Hermitian, and applying the wrong solver to either is a correctness failure rather than an efficiency one.

Cost the complex arithmetic honestly

A complex multiply is four real multiplies and two real additions, so a complex matrix operation costs roughly four times its real counterpart in arithmetic and twice in memory. Where a problem is real in substance and complex only in representation, splitting into real subproblems or exploiting conjugate symmetry of the spectrum recovers most of that factor.

Standards & Codes

Notation, interchange and numerical standards that govern how this material is written down, stored and computed in production systems.

Applicable standards, conventions and reference implementations
ReferenceTitleRelevance to this topic
ISO 80000-2Quantities and units — Part 2: MathematicsStandardises the overline for complex conjugation, the asterisk superscript for the conjugate transpose, and the use of upright i for the imaginary unit in quantity expressions.
IEEE 754-2019IEEE Standard for Floating-Point ArithmeticDefines signed zero and its interaction with conjugation: negating a zero imaginary part yields 0, which is distinguishable and can alter branch-cut behaviour in downstream complex functions.
BLAS Level 3 (complex)Basic Linear Algebra Subprograms, complex variantsThe C and Z routines take a TRANS argument accepting 'C' for conjugate transpose alongside 'T' for plain transpose; xHERK and xHEMM exploit Hermitian structure explicitly.
ISO/IEC 9899 Annex GProgramming languages — C, IEC 60559 complex arithmeticSpecifies the conj function and the semantics of complex arithmetic including infinities and NaNs, which govern how a conjugation behaves on degenerate entries.
ISO/IEC 40314Mathematical Markup Language (MathML) Version 3.0Encodes the overline as a semantic mover with an overbar accent rather than as a drawn line, so conjugation is announced correctly by assistive technology.

Material Selection

For a mathematical topic, "material" is the numeric representation: the scalar field, storage format and precision the computation is built from.

Representation and precision selection
RepresentationSelect whenTrade-off
Complex binary64 (double-precision complex)General complex engineering computation: RF networks, modal analysis, spectral methods.Sixteen digits per component and 16 bytes per entry; conjugation is exact, requiring only a sign flip on the imaginary part.
Complex binary32 (single-precision complex)Real-time signal processing and GPU pipelines where sample data has limited dynamic range anyway.Halves memory and typically doubles throughput; accumulation of covariance over many samples can lose accuracy and may need a wider accumulator.
Real arithmetic with conjugate symmetry exploitedThe underlying data is real and the complex representation arises only from a Fourier transform.Roughly halves storage and work by keeping only half the spectrum; the bookkeeping is error-prone and the packing convention must be documented precisely.
Exact Gaussian rational entriesSymbolic verification of adjoint and Hermitian identities on small examples.Identities such as At¯=A¯t hold exactly with no tolerance question; unusable at any scale.
Packed Hermitian storageLarge Hermitian covariance or Gram matrices where memory binds.Stores one triangle plus a real diagonal, halving memory and making the Hermitian property exact; packed routines run slower than full-storage equivalents.
Split real and imaginary arraysArithmetic-intensive kernels on wide vector hardware.Vectorises better than interleaved storage and permits skipping an all-zero imaginary array; requires conversion at every library boundary that expects interleaved layout.

Manufacturing Notes

Implementation notes — how the result is actually produced by hand, by algorithm and by library, including cost and numerical behaviour.

Cost of conjugation and of the adjoint

Conjugation performs no multiplications: it negates mn imaginary components, so it is a pure data operation with a trivial arithmetic cost. Forming an explicit adjoint additionally incurs the movement cost of a transpose, which is cache-bound. As with the real transpose, prefer to pass a conjugate-transpose flag to the consuming routine over materialising A.

Hand procedure and checking

Write the transpose first, then negate every imaginary part, or the reverse — the commutation theorem guarantees agreement, so doing it both ways on a small example is a genuine independent check. Two invariants catch most errors: real entries must be unchanged, and the diagonal of a Hermitian matrix must come out real.

Library conventions

NumPy exposes A.conj() for conjugation and A.conj().T or the shorthand A.H on matrix types for the adjoint; plain A.T does not conjugate. MATLAB's ' is the adjoint and .' is the plain transpose. Eigen provides adjoint() and transpose() as distinct methods. In every ecosystem the shorter, more idiomatic spelling maps to the adjoint, which is the right default.

Verifying Hermitian and unitary structure

Test Hermitian structure by AAεA rather than by exact equality, and unitarity by UUIεn. For a unitary matrix the departure from unitarity grows only slowly under repeated multiplication, but for long chains a periodic re-orthonormalisation by QR restores the property.

Numerical stability

Conjugation is exact and introduces no error. The adjoint inherits that exactness. The stability questions arise in what is built from them: forming AA squares the condition number, exactly as AtA does over , so least-squares problems should be solved by QR or SVD applied to A directly. Hermitian eigensolvers, by contrast, are among the most stable algorithms available and should be preferred wherever the structure is present.

Failure Modes & Common Mistakes

Failure modes, root causes and prevention
Failure mode / mistakeImpactRoot causePrevention & detection
Using the transpose where the adjoint is requiredhighWriting A.T or .' on complex data, so entries are rearranged without conjugation.Default to the adjoint on any complex matrix. Add a test on a matrix with non-real entries where the two operations give visibly different results; real test data cannot detect this fault.
Dropping the conjugate on a factored-out scalarhighTreating conjugation and the adjoint as linear rather than semilinear, so αA¯ is written αA¯.Conjugate every scalar pulled through a conjugation or adjoint. Verify with a purely imaginary scalar such as α=i, where the error changes the sign of the result.
Confusing complex symmetric with HermitianhighAssuming A=At implies real eigenvalues, or feeding a complex symmetric matrix to a Hermitian eigensolver.Test both conditions separately. Bus admittance matrices are typically complex symmetric; covariance matrices are Hermitian. Match the solver to the property actually present.
Loss of Hermitian structure to roundingmediumAccumulating a covariance or Gram matrix in floating point, so the two triangles disagree in the last bits and the diagonal acquires a small imaginary part.Compute one triangle and mirror with conjugation, or symmetrise with 12(A+A) and take the real part of the diagonal before calling a Hermitian routine.
Interpreting xtx as an energyhighCarrying a real-arithmetic habit into , where the quantity is complex and can be zero for a non-zero vector.Compute xx, which is real and non-negative. Assert that the imaginary part is negligible as a runtime check on any quantity claimed to be a power.
Signed-zero artefacts after conjugationlowConjugating a matrix with exactly real entries produces 0 imaginary parts, which can change branch-cut behaviour of downstream complex functions such as square roots and logarithms.Normalise to +0 where a real-valued path is intended, or route genuinely real data through real arithmetic rather than complex.
Assuming a Hermitian matrix may be rectangularmediumApplying the condition A=A without noticing that it constrains the shape.Recognise that A is n×m, so the equality forces m=n. Check squareness first, exactly as for symmetry.
Unnecessary complex arithmetic on real datalowCarrying a complex representation through a computation whose imaginary parts are identically zero, costing roughly four times the arithmetic.Detect a negligible imaginary part early and switch to a real code path, or exploit conjugate symmetry where the complexity arises from a Fourier transform.

FAQs

What is the difference between the conjugate, the transpose and the adjoint?

Conjugation negates the imaginary part of every entry and leaves positions alone, so the shape is unchanged. The transpose reverses the index pair and changes an m×n matrix into an n×m one, leaving values alone. The adjoint does both, and because the two operations commute, the order in which they are applied is immaterial.

Why is the adjoint used instead of the transpose over the complex numbers?

Because inner products must stay positive definite. For a complex vector, xtx can be zero without x being zero — the vector (1,i) is an example — so it cannot serve as a squared length. The quantity xx sums squared magnitudes, is real and non-negative, and vanishes only for the zero vector.

Why is the scalar conjugated in αA¯=α¯A¯?

Because conjugation in is multiplicative: αz¯=α¯z¯ for complex numbers. Applying this entrywise gives the matrix statement. The consequence is that conjugation is additive but not linear — it is semilinear — and the same asymmetry makes the complex inner product conjugate-linear in its first argument.

Does a Hermitian matrix have to be square?

Yes, for exactly the reason a symmetric matrix does. If A is m×n then A is n×m, and matrices of different sizes cannot be equal, so A=A forces m=n. A further consequence of the condition, obtained by setting i=j, is that every diagonal entry equals its own conjugate and is therefore real.

Is a complex symmetric matrix the same as a Hermitian matrix?

No, and the distinction matters. Complex symmetric means A=At with no conjugation; Hermitian means A=A. A Hermitian matrix has real eigenvalues and a unitary eigenbasis; a complex symmetric matrix has neither guarantee and may not even be diagonalisable. Bus admittance matrices are typically complex symmetric while covariance matrices are Hermitian.

How do I check that my code is using the right operation?

Test on a matrix with genuinely complex entries where the transpose and the adjoint differ visibly, and assert on a known invariant — for example that the diagonal of AA is real and positive. Real-valued test data cannot distinguish the two operations, which is why this class of defect survives otherwise thorough test suites.

Does conjugation change eigenvalues or rank?

Rank is unchanged, since conjugation is a bijection preserving all linear relations after conjugating the coefficients. The eigenvalues of A¯ are the conjugates of the eigenvalues of A, so a real matrix has a spectrum closed under conjugation — which is why complex eigenvalues of real matrices always appear in conjugate pairs.

References

  1. Beezer, R. A. A First Course in Linear Algebra, Version 0.70. University of Puget Sound, 2006. Section MO, Subsection MCC, Theorems CRMA, CRMSM and MCT. Licensed under the GNU Free Documentation License v1.2.
  2. ISO 80000-2:2019, Quantities and units — Part 2: Mathematics. International Organization for Standardization.
  3. Horn, R. A. and Johnson, C. R. Matrix Analysis, 2nd edition. Cambridge University Press, 2013.
  4. Anderson, E. et al. LAPACK Users' Guide, 3rd edition. Society for Industrial and Applied Mathematics, 1999.
  5. Pozar, D. M. Microwave Engineering, 4th edition. Wiley, 2011. (Scattering matrices, reciprocity and lossless conditions.)

AI Suggested Questions

  • Give me a complex matrix that is symmetric but not Hermitian, and show that its eigenvalues are not real.
  • Show why the vector (1, i) has zero value under x-transpose-x but non-zero value under x-adjoint-x, and what that means for defining a norm.
  • How does a lossless scattering matrix differ from a reciprocal one, and what test distinguishes them numerically?
  • Write a unit test that catches the use of transpose where adjoint was intended, and explain why real-valued test data cannot detect it.
  • Explain why complex eigenvalues of a real matrix always occur in conjugate pairs, using the conjugation properties on this page.
  • Compare the arithmetic and memory cost of a complex matrix multiply against its real equivalent, including the Karatsuba-style three-multiply variant.

Related Calculators

Continue learning

Algebraic and Geometric Multiplicities of Eigenvalues | KEVOS® MathematicsArticle · Project ManagementAmitsur’s Theorem on the Radical of a Polynomial Ring | KEVOS®Article · Project ManagementAmitsur’s Theorem on the Radical of an Algebra of Small Dimension | KEVOS®Article · Project ManagementArchetypes: Reference Catalogue of Worked Systems | KEVOS® MathematicsArticle · Project Management