← LibraryOrthogonal and Unitary Matrices | KEVOS® MathematicsProject Delivery · Project ManagementLesson 112/189← PrevNext →
ArticlePublished 8 Aug 202622 min readBy Kevin Jogin
Skip to content

Engineering/Mathematics/Matrices

Orthogonal and Unitary Matrices

A square matrix Q is orthogonal when QQ=In, so its inverse is obtained by conjugate transposition rather than by elimination. Such matrices are exactly those with orthonormal columns, and they preserve every inner product and every length they act on.

  • Advanced level
  • Stream: orthogonality
  • Reading time 15 min
  • Ref KVS-ENG-MATH-0046
Taxonomy
Engineering / Mathematics
Prerequisite
Inner products, norms and orthonormal sets
Defining condition
QQ=In, where Q=Q¯t
Inverse
Q1=Q, at zero arithmetic cost
Equivalent to
Columns form an orthonormal set
Geometric effect
Preserves all inner products and lengths

Overview

Most square matrices require an O(n3) computation before their inverse is known. A distinguished class avoids that cost entirely: matrices for which the adjoint — the conjugate transpose — is already the inverse. The defining condition QQ=In looks like an arbitrary algebraic demand at first sight, but it turns out to be one of the most consequential conditions in the subject, and matrices satisfying it are ubiquitous in both theory and computation.

The condition has an immediate interpretation in terms of columns. Entry (i,j) of the product QQ is exactly the inner product of column i with column j. Demanding that this product be the identity matrix therefore says that distinct columns are orthogonal and every column has unit norm — that the columns form an orthonormal set. The algebraic definition and the geometric description are two readings of the same statement, and moving freely between them is the main skill this topic develops.

A second characterisation is geometric in a stronger sense. Such a matrix preserves inner products: Qu,Qv=u,v for all vectors, and specialising to u=v gives Qv=v. Lengths and angles survive the transformation untouched, so the matrix acts as a rigid motion of the space about the origin: a rotation, a reflection, or a composition of the two. This is the property that makes orthogonal and unitary factors so valuable numerically, because a transformation that cannot change a length also cannot amplify an error.

Terminology varies across the literature. Over the real numbers the adjoint reduces to the transpose, the condition becomes QtQ=In, and the classical name is orthogonal. Over the complex numbers the conjugation is essential, and the common modern name is unitary. This page uses the conjugate-transpose condition throughout, so that every statement holds over and specialises correctly to ; a matrix satisfying only QtQ=In over is a genuinely different and much less useful object.

Definition

Adjoint of a Matrix

A

For a matrix A, the adjoint is A=A¯t: transpose the matrix and conjugate every entry. Entrywise, [A]ij=[A]ji¯.

Also written AH or A in engineering and physics texts. For a real matrix A=At, so results stated with adjoints specialise correctly without modification.

Orthogonal Matrix

OM

A square matrix Q of size n satisfying QQ=In, that is Q¯tQ=In. Over the real numbers the condition reduces to QtQ=In.

Much of the modern literature reserves orthogonal for the real case and calls the complex case unitary. The condition stated here is the complex one, so every theorem on this page applies verbatim to real orthogonal matrices.

Orthogonal Matrices are Invertible

OMI

If Q is orthogonal of size n, then Q is nonsingular and Q1=Q. The inverse costs no arithmetic at all: it is a rearrangement of the entries with a sign change on the imaginary parts.

The proof observes that a product involving a singular factor would make In singular, so both Q and Q are nonsingular; the one-sided inverse result then upgrades QQ=In to QQ=In.

Columns of Orthogonal Matrices are Orthonormal Sets

COMOS

Let A be a square matrix of size n with columns S={A1,A2,,An}. Then A is an orthogonal matrix if and only if S is an orthonormal set.

Hermitian Matrix

HM

A square matrix A with A=A, also called self-adjoint. Entrywise [A]ij=[A]ji¯, which forces every diagonal entry to be real. A real symmetric matrix is Hermitian.

Hermitian and orthogonal are independent conditions: the identity matrix is both, a general rotation is orthogonal but not Hermitian, and a general covariance matrix is Hermitian but not orthogonal.

Concepts

The product QQ is a table of inner products

Expanding the matrix product entrywise gives [Q¯tQ]ij=k=1n[Q]ki¯[Q]kj, which is precisely the inner product of column i with column j. Requiring this array to equal In therefore imposes n unit-norm conditions on the diagonal and n(n1) orthogonality conditions off it. The equivalence between the algebraic definition and orthonormality of the columns is not a theorem requiring machinery — it is this expansion read in two directions.

Rows are orthonormal too

Since QQ=In implies QQ=In, the same argument applied to the second product shows the rows of Q also form an orthonormal set. This symmetry is specific to square matrices: a rectangular matrix can have orthonormal columns without having orthonormal rows, which is exactly the situation in a thin QR factorisation and the reason the reduced factor is called semi-orthogonal rather than orthogonal.

Preservation of inner products and lengths

Using u,v=uv and the reversal rule for adjoints, Qu,Qv=(Qu)(Qv)=uQQv=uInv=u,v. Taking u=v and a square root gives Qv=v. Angles are preserved because both the inner product and the two norms in the cosine formula are unchanged, so the transformation is an isometry of the space fixing the origin.

Permutation matrices and the group structure

Any rearrangement of the columns of In produces an orthogonal matrix, since the columns remain the standard unit vectors and those are already orthonormal. There are n! such permutation matrices. More generally the orthogonal matrices of size n are closed under multiplication — if QQ=In and PP=In then (QP)(QP)=PQQP=In — contain the identity and contain an inverse for each member, so they form a group under matrix multiplication. That group is not commutative for n2.

Conjugation is not optional over the complex numbers

The condition QtQ=In without conjugation is a different and far weaker requirement over . For Q=12[11ii] the adjoint product QQ is I2, while the transpose product QtQ has zeros on the diagonal and ones off it. The reason is that vtv can vanish for a non-zero complex vector, whereas vv=v2 cannot. Only the conjugated form measures length.

Why numerical analysts prefer these matrices

Because Qv=v holds for every vector, the induced two-norm of Q and of Q1 are both exactly one, so the condition number of an orthogonal matrix is exactly one. Multiplying by such a matrix therefore cannot amplify an existing error, and algorithms built from orthogonal factors — QR factorisation via Householder reflections or Givens rotations, the singular value decomposition, orthonormal diagonalisation of Hermitian matrices — inherit backward stability from that single fact.

Test: is this square matrix orthogonal?

Form the adjointTranspose Q and conjugate every entry to obtain Q. For a real matrix this is transposition alone.
Choose the cheaper testEither compute the product QQ directly, or compute the inner products of column pairs. The latter needs only 12n(n+1) of them, since the array is Hermitian.
Check the diagonalEvery column must have unit norm. A failure here is usually a missing normalisation constant and is easily repaired.
Check the off-diagonal entriesAll must vanish. A failure here means the columns are not mutually orthogonal, which requires a genuine reconstruction such as Gram-Schmidt.
ConcludeIf QQ=In, then Q is orthogonal, Q1=Q, the columns and rows are orthonormal, and Q preserves all inner products and norms.

Equations

Defining condition for an orthogonal matrix

EQ-OM-01
QQ=Q¯tQ=In

Over the real numbers the conjugation is vacuous and the condition becomes QtQ=In.

Entries of the adjoint product as inner products

EQ-OM-02
[QQ]ij=k=1n[Q]ki¯[Q]kj=Qi,Qj

Entry (i,j) is the inner product of columns i and j, which is why the defining condition is equivalent to orthonormality of the columns.

Inverse by conjugate transposition

EQ-OM-03
Q1=Q,QQ=QQ=In

The inverse requires no arithmetic. The second identity follows from the first by the one-sided inverse result for square matrices.

Orthonormality of the columns

EQ-OM-04
Qi,Qj={1i=j0ij

The geometric restatement of the defining condition: unit norms on the diagonal, mutual orthogonality off it.

Preservation of inner products and norms

EQ-OM-05
Qu,Qv=u,v,Qv=v

Valid for all u,vn. The second identity is the first with u=v, followed by a square root.

A real orthogonal matrix

EQ-OM-06
Q=13[212122221],Q1=Qt=13[212122221]

Every column has squared norm 9/9=1 and every pair of distinct columns is orthogonal. The determinant is +1, so this matrix is a rotation.

A unitary matrix where conjugation is essential

EQ-OM-07
U=12[11ii],UU=I2,UtU=[0110]

The unconjugated product is not the identity, which shows that dropping the conjugation over produces an entirely different condition.

Hermitian condition

EQ-OM-08
A=A[A]ij=[A]ji¯[A]ii

Self-adjointness forces the diagonal entries to equal their own conjugates and therefore to be real.

Variable Definitions

Symbols used on this page
SymbolNameMeaningDomain / type
QOrthogonal matrixSquare matrix satisfying QQ=Inn x n complex matrix
QAdjoint of QConjugate transpose Q¯t; equals the inverse when Q is orthogonaln x n complex matrix
QjColumn j of QOne member of the orthonormal set formed by the columnsC^n, unit norm
u,vInner productkuk¯vk; equals uv in matrix formcomplex scalar
vNorm of a vectorLength v,v, invariant under an orthogonal matrixnonnegative real
A¯Conjugate of a matrixEntrywise complex conjugation, without transpositionsame size as A
PPermutation matrixA rearrangement of the columns of In; always orthogonaln x n matrix
InIdentity matrixTarget of the defining product and the simplest orthogonal matrixn x n matrix
nSizeCommon row and column count of Qpositive integer

Worked Numerical Example

Problem statement

A three-axis inertial sensor is mounted on a bracket that rotates it relative to the vehicle frame. The claimed direction cosine matrix is given. Verify that it is orthogonal, obtain its inverse without elimination, and confirm that the transformation preserves the magnitude and relative orientation of measured vectors.

  1. State the candidate matrix

    Direction cosine matrices are built from unit vectors, so the common factor 13 is the normalisation. Every entry of 3Q is an integer, which makes the arithmetic exact.

    Q=13[212122221]
  2. Check that the columns have unit norm

    The squared norms of the columns of 3Q are 4+1+4=9, 1+4+4=9 and 4+4+1=9. Dividing by 32=9 gives unit norm for each column of Q, so the three diagonal entries of QtQ are 1.

    Q1=Q2=Q3=93=1
  3. Check mutual orthogonality

    Only three inner products are needed rather than six, because the array is symmetric. Using the columns of 3Q: columns 1 and 2 give 2+24=0; columns 1 and 3 give 4+2+2=0; columns 2 and 3 give 2+42=0.

    Q1,Q2=Q1,Q3=Q2,Q3=0
  4. Conclude orthogonality and write down the inverse

    The columns form an orthonormal set, so QtQ=I3 and Q is orthogonal. The inverse is the transpose, obtained by rearranging entries with no arithmetic whatsoever.

    Q1=Qt=13[212122221]
  5. Classify the transformation

    The determinant of 3Q evaluates to 27, so detQ=27/27=1. An orthogonal matrix has determinant ±1; the value +1 identifies this one as a proper rotation rather than a rotation composed with a reflection. A mounting matrix with determinant 1 would indicate that an axis sign convention has been inverted somewhere in the bracket definition.

  6. Transform a measured vector

    A specific-force reading of v=(1,2,2) in sensor axes maps to Qv. The entries are 13(2+24)=0, 13(1+4+4)=3 and 13(24+2)=0.

    Qv=[030],v=Qv=3
  7. Transform a second vector and check the inner product

    For u=(2,1,2) the image is 13(414,22+4,4+2+2)=13(1,4,8), whose squared norm is (1+16+64)/9=9, matching u2=4+1+4=9. The inner products also agree: u,v=22+4=4 and Qu,Qv=433=4.

    Qu,Qv=4=u,v
  8. Note where conjugation would matter

    Had the transformation been complex — a phase-rotation matrix in a modulation chain, for instance — the transpose alone would not suffice. For U=12[11ii] the adjoint product is I2 while the plain transpose product has zeros on its diagonal, because vtv does not measure length over .

Result

The mounting matrix is confirmed orthogonal with determinant +1, so it is a pure rotation and the reverse transformation costs nothing beyond a transposition. Measured magnitudes and the angles between measured vectors are identical in both frames, which is the property that allows sensor data to be resolved into vehicle axes without any recalibration of scale. A failed unit-norm check would have indicated a normalisation error; a failed orthogonality check would have indicated a genuinely skewed mounting definition requiring reconstruction.

Applications & Industry Use

Aerospace and navigation

Direction cosine matrices for attitude

Body-to-navigation frame transformations are stored as real orthogonal matrices with determinant +1. Inverting a frame transformation is a transposition, and the orthogonality condition provides the numerical health check applied during integration: accumulated drift is removed by re-orthonormalising the matrix rather than by recomputing it.

Numerical linear algebra

QR factorisation and least squares

Householder reflections and Givens rotations are orthogonal matrices used to triangularise a matrix. Because they preserve the two-norm exactly, the residual of a least-squares problem is unchanged by their application, which is why QR-based solvers are preferred over normal equations for ill-conditioned data.

Signal processing

Orthogonal transforms and energy conservation

The discrete Fourier transform in its unitary scaling, the discrete cosine transform and orthogonal wavelet transforms are all unitary matrices. Parseval's relation is exactly the norm-preservation property, which means quantisation error introduced in the transform domain has the same energy in the signal domain — the foundation of transform-coding bit allocation.

Quantum computing

Unitary gates and reversible computation

Every quantum gate is a unitary matrix, so state vectors retain unit norm and total probability is conserved. Reversibility is the statement U1=U, and composing gates corresponds to multiplying unitaries, which stays inside the same group.

Computer graphics and robotics

Rigid body transformations

The rotational part of a rigid transformation is orthogonal with determinant +1. Storing rotations this way guarantees that object geometry is neither stretched nor sheared, and re-orthonormalisation after repeated composition prevents accumulated floating-point drift from introducing visible distortion.

Structural dynamics

Modal transformation of coupled systems

The mode shapes of a symmetric undamped system can be scaled to form an orthonormal set, giving an orthogonal modal matrix that decouples the equations of motion. Because the transformation preserves inner products, modal energy sums correctly to physical energy without any correction factor.

Design Considerations

Store rotations as orthogonal matrices only if you maintain them

Repeated multiplication of floating-point rotation matrices accumulates drift, so the product slowly ceases to be orthogonal. Either re-orthonormalise periodically — by a QR step or a polar decomposition — or store the rotation in a representation with fewer redundant parameters, such as a unit quaternion, and convert on demand.

Never solve a system with an orthogonal coefficient matrix by elimination

If Q is orthogonal, the solution of Qx=b is Qb, a single matrix-vector product at 2n2 operations. Applying a general solver instead costs O(n3) and discards a perfectly conditioned structure. Detect orthogonality before dispatching to a general routine.

Test orthogonality with the right number of inner products

Because QQ is Hermitian, only its diagonal and one triangle need to be computed: 12n(n+1) inner products rather than n2. Compare each against 1 or 0 with a tolerance scaled by n and machine epsilon, since exact equality will not hold in floating point.

Distinguish rotations from reflections by determinant

An orthogonal matrix has determinant ±1. The value +1 marks a proper rotation; 1 marks an improper one, which reverses handedness. In a coordinate-frame definition a determinant of 1 almost always means an axis sign convention has been mistaken, and it will silently mirror the geometry rather than raise an error.

Keep the conjugation in complex work

A derivation written with transposes rather than adjoints appears to work on real data and fails silently on complex data, because vtv can vanish for a non-zero complex vector. Write adjoints throughout; nothing is lost on real inputs and complex inputs then need no rework.

Prefer orthogonal factors in any algorithm you must trust

An orthogonal matrix has condition number exactly one, so it cannot amplify an existing error. Algorithms constructed from orthogonal transformations — QR, singular value decomposition, orthonormal diagonalisation of Hermitian matrices — are backward stable for this reason, and the extra cost against an elimination-based method buys exactly that guarantee.

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: MathematicsFixes the notation for the conjugate, transpose and adjoint of a matrix and for the inner product, including the distinction between At and A that this topic depends on.
LAPACK / BLAS referenceLinear Algebra PACKage reference implementationProvides xGEQRF for Householder QR and xORGQR or xUNGQR for forming the orthogonal or unitary factor explicitly, with separate real and complex entry points reflecting the transpose-versus-adjoint distinction.
ISO 1151Flight dynamics — Concepts, quantities and symbolsDefines the axis systems and rotation sequences whose direction cosine matrices are the archetypal engineering example of real orthogonal matrices with determinant +1.
ITU-T T.81Digital compression and coding of continuous-tone still images (JPEG)Specifies the discrete cosine transform whose orthogonality underpins the energy-preservation argument used to allocate quantisation error across coefficients.
IEEE 754-2019IEEE Standard for Floating-Point ArithmeticDetermines why a computed product of rotation matrices drifts away from orthogonality, and hence why re-orthonormalisation is a routine maintenance step in long integrations.

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
Real orthogonal matrix, binary64Attitude, rigid-body and modal transformations where all data is real.Transposition gives the inverse at no cost and conditioning is perfect, but n2 stored numbers carry only 12n(n1) degrees of freedom, so the representation is redundant and drifts.
Complex unitary matrix, binary64Modulation chains, unitary discrete Fourier transforms and quantum gate simulation.Retains all the structural advantages over , at double the storage and roughly four times the arithmetic per multiplication.
Unit quaternionThree-dimensional rotations that are composed or interpolated many times, as in graphics and flight control.Four numbers instead of nine, one normalisation constraint instead of six, and clean interpolation; requires conversion before it can act on a general matrix.
Householder or Givens factored formThe orthogonal factor of a QR decomposition, where it is only ever applied to vectors.Stores the factor implicitly in O(n2) or O(n) parameters and applies it in O(n2), but the explicit matrix must be formed if individual entries are needed.
Permutation matrix as an index vectorRow or column exchanges in factorisation and sorting.Reduces an n×n orthogonal matrix to n integers and turns multiplication into indexing, but is applicable only to this special case.
Fixed-point direction cosinesEmbedded attitude computation on microcontrollers without a floating-point unit.Deterministic timing and small footprint, but drift from orthogonality is faster and the re-orthonormalisation step must itself be designed in fixed point.

Manufacturing Notes

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

Cost of the orthogonality test

Forming QQ in full costs about 2n3 operations. Exploiting the Hermitian symmetry of the result halves that, and in practice the test is usually restricted to the departure from the identity, QQIn, evaluated with a tolerance of order nε. For a matrix known to be nearly orthogonal, a small number of column inner products often suffices as a spot check.

Re-orthonormalising a drifted matrix

Gram-Schmidt applied to the columns restores orthonormality but is not symmetric in its treatment of the columns and can behave poorly in floating point unless the modified variant is used. The polar decomposition, which replaces Q by the nearest orthogonal matrix in the Frobenius norm, is the principled alternative and can be computed by a short Newton iteration or from a singular value decomposition.

Applying rather than forming the factor

LAPACK returns the orthogonal factor of a QR decomposition in factored Householder form. Applying it to a vector costs O(n2) operations, whereas forming the explicit matrix costs O(n3) and then multiplying costs O(n2) again. Unless individual entries of the factor are required, keep it factored.

Verifying preservation of norms empirically

The most direct test of a candidate transformation is to apply it to a set of random unit vectors and check that the image norms remain within tolerance of one. This exercises the full matrix, catches an error in a single entry that a determinant check would miss, and needs no reference implementation.

Library conventions differ on the adjoint

NumPy's .T transposes without conjugating while .conj().T gives the adjoint; MATLAB's apostrophe operator conjugates and the dot-apostrophe does not; Eigen distinguishes transpose() from adjoint(). Code that is correct on real test data and wrong on complex data almost always traces to this distinction.

Failure Modes & Common Mistakes

Failure modes, root causes and prevention
Failure mode / mistakeImpactRoot causePrevention & detection
Using the transpose instead of the adjoint on complex datahighCarrying a real-valued derivation into complex arithmetic, where QtQQQ.Write adjoints throughout and choose the conjugating operator in code deliberately. Test any transform on complex input, not only on real input.
Assuming orthonormal columns without checking normsmediumVerifying mutual orthogonality but omitting the normalisation, so the matrix is a scaled orthogonal matrix.Check the diagonal of QQ as well as the off-diagonal entries. A missing normalisation is trivially repaired once detected.
Accumulated drift in a chain of rotationshighRepeatedly multiplying floating-point rotation matrices without re-orthonormalising, so the product slowly loses orthogonality.Re-orthonormalise on a schedule using a polar decomposition or QR step, or store rotations as unit quaternions and renormalise those instead.
Applying a general solver to an orthogonal systemmediumDispatching Qx=b to an LU-based solver without noticing the structure.Detect or record orthogonality and use x=Qb, an O(n2) operation instead of O(n3).
Overlooking a determinant of 1mediumAccepting any orthogonal matrix as a rotation, when an improper one reverses handedness.Check the determinant explicitly when a proper rotation is required. A value of 1 usually indicates a reversed axis convention in the frame definition.
Testing orthogonality with exact equalitylowComparing a computed QQ against In entry by entry in floating point.Use a norm-based test with a tolerance proportional to n and machine epsilon. Exact agreement should not be expected and its absence is not an error.
Expecting a rectangular factor to be orthogonalmediumAssuming the thin factor of a QR decomposition satisfies both QQ=I and QQ=I.For an m×n factor with m>n only QQ=In holds; QQ is an orthogonal projector, not the identity. Track which identity your derivation uses.
Assuming orthogonal implies Hermitian or vice versalowConflating two independent structural conditions because both involve the adjoint.Orthogonality is QQ=In; Hermitian symmetry is A=A. Only matrices whose square is the identity satisfy both.

FAQs

What is the difference between an orthogonal matrix and a unitary matrix?

They are the same condition stated over different scalar fields. Over the real numbers the adjoint is the transpose and the classical name is orthogonal; over the complex numbers the conjugation matters and the usual name is unitary. Stating the condition as QQ=In covers both, and every theorem here applies to real orthogonal matrices unchanged.

Why does checking the columns suffice to establish orthogonality?

Because entry (i,j) of QQ is exactly the inner product of column i with column j. Demanding that this array equal the identity is literally the demand that the columns be mutually orthogonal and of unit norm. The two statements are the same fact written in different notation.

If the columns are orthonormal, must the rows be too?

For a square matrix, yes: QQ=In implies QQ=In, and the second product encodes orthonormality of the rows. For a rectangular matrix the implication fails; a tall matrix can have orthonormal columns while its rows are not even independent.

Are the entries of an orthogonal matrix bounded?

Yes. Each column has unit norm, so no entry can exceed 1 in modulus. This is a useful sanity check on hand-constructed direction cosine matrices, and it is part of the reason such matrices are numerically benign.

Is every matrix with determinant ±1 orthogonal?

No, and the converse direction is the only valid one. Every orthogonal matrix has determinant of modulus one, but the shear [1101] has determinant 1 and is not orthogonal — it changes lengths. Determinant is a single scalar condition; orthogonality is 12n(n+1) of them.

Why do numerical algorithms favour orthogonal transformations?

Because their condition number is exactly one, so they cannot amplify an existing error. Any algorithm built from a sequence of orthogonal transformations inherits that property, which is why QR factorisation and the singular value decomposition are the tools of choice when a problem is ill-conditioned.

How do I repair a matrix that has drifted from orthogonality?

Compute the polar decomposition and keep its orthogonal factor, which is the nearest orthogonal matrix in the Frobenius norm; it can be obtained from a singular value decomposition or by a short Newton iteration. Modified Gram-Schmidt on the columns is a cheaper alternative that treats the columns asymmetrically.

Do orthogonal matrices of a given size form a group?

Yes. The product of two is orthogonal, the identity is orthogonal, and every orthogonal matrix has an orthogonal inverse, namely its adjoint. The group is non-commutative for n2; the permutation matrices form a finite subgroup of order n! inside it.

References

  1. Beezer, R. A. A First Course in Linear Algebra, Version 0.70. University of Puget Sound, 2006. Section MINSM, Subsection OM. 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, 2012.
  4. Golub, G. H. and Van Loan, C. F. Matrix Computations, 4th edition. Johns Hopkins University Press, 2013.
  5. Higham, N. J. Functions of Matrices: Theory and Computation. Society for Industrial and Applied Mathematics, 2008.
  6. Anderson, E. et al. LAPACK Users' Guide, 3rd edition. Society for Industrial and Applied Mathematics, 1999.

AI Suggested Questions

  • Construct a 4×4 real orthogonal matrix that is not a permutation matrix, and verify its determinant is +1.
  • Show how a Householder reflection is built from a single vector and prove that it is orthogonal and symmetric.
  • Explain why the polar decomposition gives the nearest orthogonal matrix to a drifted rotation, and how to compute it.
  • Compare the drift behaviour of a direction cosine matrix against a unit quaternion over a long attitude integration.
  • Derive Parseval's relation for the unitary discrete Fourier transform directly from the norm-preservation property.
  • Why is the condition number of an orthogonal matrix exactly one, and how does that propagate through a QR-based least-squares solver?

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