← LibraryOrthogonal Vectors and Orthonormal Sets | KEVOS® MathematicsProject Delivery · Project ManagementLesson 113/189← PrevNext →
ArticlePublished 8 Aug 202623 min readBy Kevin Jogin
Skip to content

Engineering/Mathematics/Vectors

Orthogonal Vectors and Orthonormal Sets

Two vectors are orthogonal when their inner product is zero, and a set is orthogonal when every distinct pair is. That single condition is strong enough to force linear independence for free, and once the vectors are also scaled to unit norm every coordinate calculation collapses into a single inner product.

  • Core level
  • Stream: orthogonality
  • Reading time 14 min
  • Ref KVS-ENG-MATH-0032
Taxonomy
Engineering / Mathematics
Prerequisite
Inner product; norm of a vector
Test
u,v=0
Key theorem
Orthogonal + non-zero linearly independent
Orthonormal
Orthogonal and every vector of norm 1
Pairs to check
(n2) for a set of n vectors

Overview

Orthogonality is the algebraic generalisation of perpendicularity. In the plane two arrows are perpendicular exactly when their dot product vanishes, and that observation is promoted here into a definition that works unchanged in m, where no picture is available and where the entries carry phase as well as magnitude. Nothing about the definition mentions angles; it mentions only the inner product, which is what allows it to survive the move to high dimension and complex scalars.

The reason orthogonality matters so much more than mere linear independence is decoupling. A general spanning set mixes information: changing one coefficient changes the contribution of every direction. An orthogonal set does not. Each vector contributes to the sum in a way that no other vector can influence, so coefficients can be computed one at a time by a single inner product rather than by solving a linear system. Every fast transform, every modal decomposition and every least-squares algorithm worth using exploits this.

The central structural result is that an orthogonal set of non-zero vectors is automatically linearly independent. This is one of the very few situations in linear algebra where independence — normally established by a full row reduction — falls out of a purely local property that can be checked pair by pair. The hypothesis that the vectors are non-zero cannot be dropped, because the zero vector is orthogonal to everything, including itself, and would sit inside any orthogonal set while destroying independence.

An orthonormal set adds the normalisation condition that every vector has norm 1. Converting an orthogonal set to an orthonormal one is trivial — divide each vector by its own norm — and the conversion cannot break orthogonality, since scaling a vector only scales the inner products it appears in. The payoff is that the denominators disappear from every coordinate formula, and the matrix whose columns are the set satisfies UU=In.

Definition

Orthogonal Vectors

OV

Two vectors u,vm are orthogonal when their inner product vanishes: u,v=0. Because the inner product obeys conjugate symmetry, u,v=v,u¯, one product is zero exactly when the other is, so orthogonality is a symmetric relation and the order of the pair is immaterial.

The zero vector is orthogonal to every vector, itself included. That is a consequence of the definition, not an oversight, and it is why theorems about orthogonal sets carry a non-zero hypothesis.

Orthogonal Set of Vectors

OSV

A set S={u1,u2,,un}m is orthogonal when every pair of distinct members is orthogonal, that is ui,uj=0 whenever ij. Nothing is required of ui,ui, which equals ui2 and is non-zero for any non-zero vector.

The condition is pairwise, so verifying it for a set of n vectors requires (n2) inner products, not n2: conjugate symmetry halves the work and the diagonal is not tested.

Orthonormal Set

ONS

An orthogonal set in which additionally ui=1 for every member. Combining both conditions gives the compact statement ui,uj=1 when i=j and 0 otherwise — the Kronecker delta pattern. Any orthogonal set of non-zero vectors becomes orthonormal on replacing each ui by ui/ui.

Standard Unit Vectors

SUV

The vectors e1,e2,,em, where ei has a 1 in position i and zeros elsewhere — the columns of the identity matrix Im. Any two distinct standard unit vectors have disjoint supports, so their inner product is a sum of terms each containing a factor of zero. They form the prototypical orthonormal set of m.

Concepts

Orthogonal sets are linearly independent

Suppose S={u1,,un} is an orthogonal set of non-zero vectors and that some combination α1u1++αnun=0 holds. Take the inner product of both sides with a fixed ui. Linearity in the first argument distributes the product across the sum, and orthogonality annihilates every term except the i-th, leaving αiui,ui=0. Since ui0, positive definiteness gives ui,ui>0, so αi=0. The index i was arbitrary, so every coefficient vanishes and the only relation of linear dependence is the trivial one.

Linear independence is normally established by row-reducing a matrix — a global computation on all the vectors at once. Here it follows from a family of local, pairwise checks, and the argument extracts one coefficient at a time by projecting onto a single direction. That same manoeuvre reappears throughout the subject: taking an inner product with a chosen basis element to isolate the coefficient attached to it is the mechanism behind Fourier coefficients, modal participation factors and the normal equations of least squares.

The converse is emphatically false

Linear independence does not imply orthogonality. The vectors [10] and [11] are independent but have inner product 1. Orthogonality is therefore a strictly stronger condition, and the Gram-Schmidt procedure exists precisely to upgrade an arbitrary independent set into an orthogonal one spanning the same subspace. Independence is a statement about the set as a whole; orthogonality is a much more rigid geometric constraint on every pair.

The conjugate is not optional

Over the inner product conjugates one argument, and omitting it destroys the meaning of orthogonality. Take u=[1i]. The unconjugated sum 11+ii equals zero, which would declare a non-zero vector orthogonal to itself. The correct computation u,u=11¯+ii¯=1+1=2 gives the squared norm, as it must. Any orthogonality test written for real data and reused on complex data without a conjugate is silently wrong.

Pythagoras, projection and decoupled energy

Expanding u+v2 through the inner product yields u2+v2+2Reu,v. When the vectors are orthogonal the cross term disappears and the Pythagorean identity u+v2=u2+v2 survives. Extended to an orthogonal set this becomes Parseval's relation: the squared norm of a combination is the sum of the squared norms of its parts. In engineering terms, energy adds across orthogonal components with no interference, which is why orthogonal channels, orthogonal modes and orthogonal subcarriers can be budgeted independently.

Coordinates by inner product alone

If {u1,,un} is orthogonal and v lies in its span, then the coefficients in v=jαjuj are given by αj=v,uj/uj,uj, obtained by taking the inner product with uj and letting orthogonality clear the other terms. For an orthonormal set the denominator is 1 and the formula reduces to αj=v,uj. A problem that would otherwise demand an O(n3) solve becomes n independent O(m) dot products — and each coefficient can be computed without reference to any other.

Matrix form: orthonormal columns

Assemble an orthonormal set as the columns of a matrix U of size m×n. The entry in position (i,j) of UU is the inner product of columns j and i, so the orthonormality conditions are exactly UU=In. When m=n the matrix is unitary, its inverse is its adjoint, and it preserves every norm and every inner product. Recognising a set as orthonormal is therefore the same as recognising a matrix as having orthonormal columns, which is what factorisations such as QR are built to produce.

Procedure: testing a set for orthogonality and orthonormality

Discard or reject zero vectorsA zero vector satisfies every orthogonality test but ruins independence. Check ui0 for each member before going further.
Form all distinct pairsThere are (n2) of them. Conjugate symmetry means ui,uj and uj,ui vanish together, so each pair is tested once.
Evaluate each inner productConjugate the second argument. Any non-zero result — in either real or imaginary part — ends the test: the set is not orthogonal.
Conclude independenceIf all pairs vanish and no vector is zero, the set is orthogonal and therefore linearly independent, with no row reduction required.
Normalise if requiredDivide each ui by ui. Orthogonality is unaffected, and the set becomes orthonormal with UU=In.

Equations

Orthogonality of a pair

EQ-OVS-01
u,v=i=1m[u]i[v]i¯=0

The defining condition. The conjugate on the second argument is essential over ; omitting it can make a non-zero vector appear orthogonal to itself.

Orthogonal set condition

EQ-OVS-02
ui,uj=0for all ij

Pairwise, and only for distinct indices. Nothing is asserted about ui,ui, which equals the squared norm.

Orthonormal set condition

EQ-OVS-03
ui,uj={1i=j0ij

The Kronecker delta pattern. Both conditions of an orthonormal set collapse into this single formula.

Normalising an orthogonal set

EQ-OVS-04
wi=1uiuiwi,wj=ui,ujuiuj

Scaling multiplies each inner product by a positive real factor, so zeros stay zero. Orthogonality cannot be lost by normalisation.

Pythagorean identity and Parseval's relation

EQ-OVS-05
i=1nαiui2=i=1n|αi|2ui2

Valid for an orthogonal set. All cross terms vanish, so squared magnitudes — energies — add without interference.

Coordinates from inner products

EQ-OVS-06
v=j=1nv,ujuj,ujuj,v=j=1nv,wjwj

The first form holds for an orthogonal set, the second for an orthonormal one. Each coefficient is computed independently of all the others.

Matrix form of orthonormality

EQ-OVS-07
U=[w1w2wn],UU=In

The Gram matrix of an orthonormal set is the identity. When U is square this makes U unitary, with U1=U.

Variable Definitions

Symbols used on this page
SymbolNameMeaningDomain / type
u,vVectorsMembers of m being tested for orthogonalityelements of C^m
SSet of vectorsThe candidate orthogonal or orthonormal setfinite subset of C^m
nSet sizeNumber of vectors in S; at most m if they are non-zero and orthogonalpositive integer
mVector sizeNumber of entries in each vectorpositive integer
u,vInner productSesquilinear form whose vanishing defines orthogonalitycomplex scalar
uiNormLength of a member, used to normalise and to exclude the zero vectornon-negative real
αjCoordinateCoefficient of uj in an expansion, computable by one inner productcomplex scalar
eiStandard unit vectorColumn i of the identity matrix; the prototype orthonormal setelement of C^m
UMatrix of the setMatrix whose columns are the orthonormal vectors, satisfying UU=Inm x n matrix

Worked Numerical Example

Problem statement

A sensor samples one period of a periodic signal at four equally spaced instants, giving x=[3111]t. Verify that the four sampled complex exponentials of length four form an orthogonal set, normalise them, and use the coordinate formula to decompose the measurement into harmonic components.

  1. Write down the candidate set

    Sampling e2πikn/4 at n=0,1,2,3 for harmonic numbers k=0,1,2,3 produces four vectors in 4 with entries drawn from {1,i,1,i}. They are the harmonic basis of a four-point discrete Fourier transform.

    f0=[1111],f1=[1i1i],f2=[1111],f3=[1i1i]
  2. Test a first pair

    Compute f1,f0, conjugating the entries of f0 — which are all real, so they are unchanged. The four terms cancel in pairs.

    f1,f0=1+i+(1)+(i)=0
  3. Test a pair where conjugation bites

    For f1,f3 the second argument has complex entries, so each is conjugated: 1¯=1, i¯=i, 1¯=1 and i¯=i. Note that without the conjugation this product would evaluate to 4, not 0 — the test would fail and the transform would not decouple.

    f1,f3=(1)(1)+(i)(i)+(1)(1)+(i)(i)=11+11=0
  4. Complete the remaining pairs

    The four remaining products f0,f2, f0,f3, f1,f2 and f2,f3 all evaluate to zero by the same cancellation. With six of six distinct pairs orthogonal and no vector zero, the set is orthogonal and hence linearly independent — four independent vectors in 4, so they span the whole space.

  5. Compute the norms and normalise

    Every entry has modulus 1, so each squared norm is 1+1+1+1=4 and each norm is 2. Dividing every vector by 2 produces an orthonormal set, which is the unitary scaling convention used by symmetric definitions of the DFT.

    fk=2,wk=12fk,wj,wk={1j=k0jk
  6. Extract the coordinates of the measurement

    Apply the coordinate formula with fk,fk=4. Each coefficient needs one inner product and no reference to the others; for example x,f1=3(1)+1(i)+(1)(1)+1(i)=4.

    ck=x,fk4:c0=1,c1=1,c2=0,c3=1
  7. Reassemble and check

    Forming c0f0+c1f1+c3f3 entry by entry returns [3111]t, reproducing the measurement exactly. The pair f1 and f3 are complex conjugates of each other, and with equal coefficients they combine into a real cosine.

    x=f0+f1+f3,[x]n+1=1+2cos(2πn4)
  8. Confirm the energy budget

    Parseval's relation predicts x2=k|ck|2fk2=(1+1+0+1)(4)=12. Direct computation gives 9+1+1+1=12. The agreement is the practical signature of orthogonality: harmonic energies add without cross terms.

Result

The samples decompose as a constant of 1 plus a fundamental cosine of amplitude 2, with no second harmonic present. Because the basis is orthogonal, each harmonic amplitude was obtained by a single independent inner product rather than by solving a 4×4 system, and the total signal energy of 12 splits cleanly as 4 into the constant term and 8 into the fundamental. This decoupling is exactly what makes spectral analysis tractable at practical sample counts.

Applications & Industry Use

Signal processing

Fast transforms and spectral analysis

The discrete Fourier, cosine and wavelet transforms are all expansions in orthogonal sets. Orthogonality is what allows each coefficient to be read off by a single inner product and what makes the inverse transform the adjoint of the forward one, so no matrix has to be inverted to reconstruct a signal.

Telecommunications

Orthogonal subcarriers and spreading codes

OFDM places subcarriers at frequencies whose sampled waveforms are mutually orthogonal over one symbol period, so they overlap in spectrum without interfering. Code-division schemes assign orthogonal spreading sequences so that a receiver correlating against its own code sees the other users' signals cancel to zero.

Structural dynamics

Mode shape orthogonality

Undamped mode shapes of a structure are orthogonal with respect to the mass and stiffness matrices rather than the plain inner product, but the consequence is identical: the coupled equations of motion decouple into independent single-degree-of-freedom oscillators, one per mode, which is the entire basis of modal analysis.

Computer graphics and robotics

Orthonormal frames and rotations

A rigid-body orientation is stored as three mutually orthogonal unit vectors forming the columns of a rotation matrix. Orthonormality guarantees the transform preserves lengths and angles, and it makes the inverse rotation the transpose, avoiding a matrix inversion in every frame of a real-time loop.

Experimental design and statistics

Orthogonal factor designs

In a designed experiment with orthogonal contrast columns, the estimated effect of each factor is independent of which other factors are in the model. Non-orthogonal designs produce correlated estimates whose values change as terms are added or dropped, which is precisely the confounding that orthogonality prevents.

Electrical power engineering

Symmetrical component decomposition

The Fortescue transformation resolves an unbalanced three-phase phasor set into positive, negative and zero sequence components using three mutually orthogonal complex vectors. Protection relays measure sequence magnitudes directly because the decomposition needs only inner products, not a system solve.

Design Considerations

Prefer orthogonal to merely independent whenever you have the choice

Both give unique representations, but only orthogonality gives numerically stable and decoupled ones. Coefficients relative to a nearly dependent basis are enormous and cancel catastrophically; coefficients relative to an orthonormal basis are bounded by the norm of the vector being represented. Where a basis is being constructed rather than inherited, spend the effort to make it orthogonal.

Choose an exact-zero or tolerance-based test deliberately

Orthogonality is a knife-edge condition. On floating-point data, computed inner products of genuinely orthogonal vectors are of order mε times the product of the norms rather than exactly zero. Any test must compare against a tolerance scaled by uv, never against zero, or perfectly valid sets will be rejected.

Decide whether normalisation is worth its cost

Normalising removes the denominators from every coordinate formula but introduces n square roots and n divisions, and on fixed-point hardware it can be the dominant cost. Where the set is used many times, normalise once at construction; where it is used once, keeping the orthogonal-but-unnormalised form and dividing by uj,uj is cheaper and avoids a root altogether.

Respect the size limit

An orthogonal set of non-zero vectors is linearly independent, so it can contain at most m vectors in m. A design that requires more mutually orthogonal channels than there are dimensions is infeasible, and no algorithm can rescue it. This is the hard bound behind the number of orthogonal spreading codes available in a given bandwidth.

Watch orthogonality decay in long computations

Sets that begin orthogonal drift as arithmetic accumulates — the classical failure of Gram-Schmidt and of long Krylov recurrences. Monitor UUIn as a health metric, and reorthogonalise when it exceeds a threshold rather than assuming the property is preserved.

Use a weighted inner product when the physics demands it

Structural modes are orthogonal with respect to the mass matrix, not the identity; statistical directions are orthogonal with respect to an inverse covariance. Replacing u,v by vWu with a Hermitian positive-definite W preserves every theorem on this page, and applying the unweighted test to such data will report that nothing is orthogonal.

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 perpendicularity symbol , the angle-bracket notation for inner products and the Kronecker delta, all of which this page uses to state orthogonality compactly.
IEEE 802.11 / 3GPP OFDM specificationsOrthogonal frequency-division multiplexing physical layersSubcarrier spacing is chosen so that the sampled subcarrier waveforms are exactly orthogonal over one symbol; the cyclic prefix exists to preserve that orthogonality through a dispersive channel.
LAPACK / BLAS referenceLinear Algebra PACKage reference implementationRoutines xGEQRF and xORGQR / xUNGQR produce and apply matrices with orthonormal columns, and are the standard means of obtaining an orthonormal set from arbitrary data.
IEEE 754-2019IEEE Standard for Floating-Point ArithmeticDetermines why a computed inner product of orthogonal vectors is small rather than exactly zero, and therefore why orthogonality tests must be written against a scaled tolerance.
IEC 60909Short-circuit currents in three-phase AC systemsFault calculations are carried out in symmetrical components, an orthogonal decomposition of three-phase phasors, so the standard's sequence networks are an applied use of orthogonal sets.

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
Exact rational or Gaussian-integer entriesVerifying a designed orthogonal set such as a Hadamard matrix, a spreading code family or a symbolic basis.Inner products are exactly zero or exactly non-zero, so the test is decidable with no tolerance; but most orthogonal sets arising from data have irrational entries and cannot be represented this way.
IEEE 754 binary64Numerically constructed orthogonal sets from QR, eigenvectors or Gram-Schmidt.The workhorse choice, with orthogonality maintained to roughly mε; requires an explicit tolerance and periodic monitoring of UUI.
IEEE 754 binary32Real-time signal processing and graphics where throughput dominates.Adequate for short vectors and rotations, but orthogonality decays roughly 109 times faster than in binary64, so long recurrences need reorthogonalisation or periodic renormalisation.
Fixed-point with unit-modulus entriesHardware transform blocks where the basis entries are drawn from {±1,±i} or roots of unity.Multiplication reduces to sign changes and swaps, giving an exact, multiplier-free transform; but only special basis families have this form, and general orthogonal sets do not.
Real versus complex scalarsThe data carries phase, as in spectra, phasors or quantum states.Complex orthogonality requires conjugation and doubles the arithmetic per inner product, but it permits orthogonal sets that have no real counterpart, such as the DFT basis.
Store the set implicitly as Householder reflectorsLarge orthonormal sets produced by QR that will be applied to vectors rather than inspected.Uses far less memory than the explicit matrix and applies more accurately, but individual basis vectors are not directly available without an extra generation step.

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 test

Verifying orthogonality of n vectors of size m requires (n2) inner products, each costing about 2m real flops for real data and roughly 8m for complex data. Total cost is therefore O(mn2), the same order as forming the Gram matrix UU and comparing it with the identity — which is usually the better implementation because it maps onto a single Level 3 BLAS call.

Hand procedure

Work through pairs in a fixed order, (1,2),(1,3),, and record each result rather than checking by eye. Conjugate the second vector before multiplying and take particular care that i¯=i. A useful shortcut: vectors with disjoint supports are orthogonal without computation, which immediately settles many pairs in sparse sets.

Library behaviour

numpy.vdot conjugates its first argument while numpy.dot conjugates nothing, so the two disagree on complex data and only one of them is an inner product. scipy.linalg.qr returns a Q whose columns are orthonormal to machine precision. MATLAB's orth builds an orthonormal basis for a column space from the singular value decomposition rather than by Gram-Schmidt, precisely for stability reasons.

Measuring loss of orthogonality

The standard diagnostic is UUIn in the Frobenius or induced 2-norm. A value of order mε is healthy; a value approaching 1 means the columns are no longer usefully orthogonal and any coefficient extracted from them is unreliable. This single number is cheap to compute and worth logging in any long-running iterative solver.

Constructing orthogonal sets in practice

Three routes dominate. Householder QR is the most accurate general method and is what LAPACK uses. Modified Gram-Schmidt is cheaper to reason about and adequate when reorthogonalisation is applied. Structured families — DFT, Hadamard, Walsh, discrete Legendre — are orthogonal by construction and need no computation at all, which is why hardware designs favour them.

Failure Modes & Common Mistakes

Failure modes, root causes and prevention
Failure mode / mistakeImpactRoot causePrevention & detection
Omitting the conjugate on complex datahighReusing a real dot-product routine, so uivi is computed instead of uivi¯.Use the complex inner-product routine (vdot, zdotc) and validate with the self-test u,u=u2, which fails immediately if the conjugate is missing.
Including the zero vector in an orthogonal sethighThe zero vector passes every pairwise orthogonality test, so an automated check accepts it while independence is destroyed.Screen for ui=0 before testing pairs, and state the non-zero hypothesis explicitly whenever the independence conclusion is invoked.
Testing computed inner products against exact zerohighFloating-point rounding leaves residuals of order mεuv rather than zero.Compare |u,v| against a tolerance proportional to uv, and report the relative rather than absolute residual.
Assuming orthogonal implies orthonormalmediumApplying the coefficient formula αj=v,uj to a set that is orthogonal but not normalised.Divide by uj,uj, or normalise first; verify by reconstructing v from the coefficients and comparing.
Assuming independence implies orthogonalitymediumTreating any basis as though coefficients could be extracted by inner products.Reserve the inner-product coordinate formula for orthogonal sets; for a general basis solve the linear system or run Gram-Schmidt first.
Checking only adjacent pairsmediumVerifying ui,ui+1=0 and inferring the rest, which is not implied.Test all (n2) distinct pairs, or equivalently form the full Gram matrix and inspect every off-diagonal entry.
Silent loss of orthogonality during iterationhighClassical Gram-Schmidt or a long Lanczos recurrence gradually contaminating later vectors with earlier directions.Monitor UUI and reorthogonalise on a threshold; prefer Householder QR where the set must remain orthonormal to machine precision.
Applying the plain inner product to weighted problemsmediumTesting structural mode shapes or statistically whitened directions with the identity-weighted inner product.Use the physically correct weighted form vWu and state the weight matrix alongside any orthogonality claim.

FAQs

Why does an orthogonal set of non-zero vectors have to be linearly independent?

Take any relation iαiui=0 and pair both sides with a fixed uj. Orthogonality kills every term except the j-th, leaving αjuj,uj=0, and uj,uj is strictly positive because uj is non-zero. So every coefficient must be zero, which is the definition of independence.

Is the zero vector orthogonal to itself?

Yes. Its inner product with anything, including itself, is zero, so it satisfies the definition trivially. This is exactly why theorems about orthogonal sets specify non-zero vectors: an orthogonal set containing 0 is never linearly independent, since a non-trivial multiple of the zero vector already gives a dependence relation.

What exactly is the difference between an orthogonal set and an orthonormal set?

An orthogonal set requires only that distinct members have zero inner product; the members may have any non-zero lengths. An orthonormal set adds the requirement that each has norm exactly 1. Any orthogonal set of non-zero vectors is converted to an orthonormal one by dividing each vector by its own norm, and that scaling cannot disturb the orthogonality.

Can more than m vectors in m be mutually orthogonal?

Not if they are all non-zero. Orthogonality forces linear independence, and no independent set in m can exceed m vectors. This is a hard capacity limit: it bounds the number of orthogonal spreading codes, orthogonal contrasts in an experiment, and orthogonal channels in a fixed number of dimensions.

Does orthogonality depend on the order of the two vectors?

No. Conjugate symmetry gives u,v=v,u¯, and a complex number is zero precisely when its conjugate is. So orthogonality is a symmetric relation even though the inner product itself is not, which is what makes checking each pair once sufficient.

How do I test orthogonality reliably in floating-point arithmetic?

Never against exact zero. Compute the inner product, then compare its modulus against a tolerance such as cmεuv for a small constant c. Equivalently, form the Gram matrix and check UUI; that single number scales properly and can be tracked over the life of a computation.

Why do orthogonal bases make coefficient extraction so much cheaper?

Because the coefficients decouple. With a general basis, finding coordinates means solving an n×n linear system at cost O(n3), and every coefficient depends on every vector. With an orthogonal basis each coefficient is a single inner product costing O(m), computable independently and in parallel, which is the structural reason fast transforms exist.

References

  1. Beezer, R. A. A First Course in Linear Algebra, Version 0.70. University of Puget Sound, 2006. Section O, subsection OV. 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. Golub, G. H. and Van Loan, C. F. Matrix Computations, 4th edition. Johns Hopkins University Press, 2013.
  4. Strang, G. Linear Algebra and Its Applications, 4th edition. Cengage Learning, 2006.
  5. Oppenheim, A. V. and Schafer, R. W. Discrete-Time Signal Processing, 3rd edition. Pearson, 2010.
  6. Anderson, E. et al. LAPACK Users' Guide, 3rd edition. Society for Industrial and Applied Mathematics, 1999.

AI Suggested Questions

  • Show me a set of three complex vectors that is orthogonal under the conjugated inner product but not under the unconjugated one, and explain the discrepancy.
  • How large can the computed inner product of two numerically orthogonal binary64 vectors of length one million become, and what tolerance should a test use?
  • Derive the coefficient formula for an orthogonal set and show precisely where the non-zero hypothesis is used.
  • Why are eigenvectors of a Hermitian matrix corresponding to distinct eigenvalues automatically orthogonal?
  • Compare mass-orthogonality of structural mode shapes with plain Euclidean orthogonality and explain when the two coincide.
  • Construct an orthogonal set of eight vectors with entries only +1 and 1, and explain the constraint that limits which lengths admit such a set.

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