Size: 3428
Comment:
|
← Revision 8 as of 2025-03-28 03:10:35 ⇥
Size: 2755
Comment: Rephrased everything
|
Deletions are marked like this. | Additions are marked like this. |
Line 15: | Line 15: |
The concept of '''orthogonality''' is a generalization of '''perpendicularity''' in 2-dimensional space. | The concept of '''orthogonality''' is a generalization of '''perpendicularity''' from 2-dimensional space. |
Line 17: | Line 17: |
The Pythagorean theorem specifies that the sides of a right triangle are characterized by ''x^2^ + y^2^ = z^2^''. | Put simply, vectors ''a'' and ''b'' are proven to be orthogonal if their [[LinearAlgebra/VectorMultiplication#Dot_Product|dot product]] is 0. |
Line 19: | Line 19: |
For a vector ''x'', the total length can be thought of as the sum of each components' absolute value. If ''x'' is ''[1 2 3]'', the length is 6. The squared length can be thought of as the sum of each components' square. For the same ''x'', this is 14. This can be generalized as ''x^T^x''. | More precisely: assuming orthogonality, vectors ''a'' and ''b'' will satisfy the Pythagorean theorem. The hypotenuse is [[LinearAlgebra/Distance|Euclidean distance]]: ''(a+b)^T^(a+b)''. Simplifying from there: |
Line 21: | Line 21: |
For a similar reason, the total length of the hypotenuse can be thought of as the sum of the other two vectors: ''x+y''. Continuing with the example for ''x'', if ''y'' were ''[2 -1 0]'', then ''z'' would be ''[3 1 3]''. Note that the squared length can be written as ''(x+y)^T^(x+y)''. | ''a^T^a + b^T^b = (a+b)^T^(a+b)'' |
Line 23: | Line 23: |
If the vectors ''x'' and ''y'' are perpendicular then the Pythagorean theorem should hold: ''x^T^x + y^T^y = (x+y)^T^(x+y)''. This expands to ''x^T^x + y^T^y = x^T^x + y^T^y + x^T^y + y^T^x''. By cancelling out common terms, this simplifies to ''0 = x^T^y + y^T^x''. | ''a^T^a + b^T^b = a^T^a + b^T^b + a^T^b + b^T^a'' |
Line 25: | Line 25: |
It must be understood that the last two terms are the same value. Therefore, this further simplifies to ''0 = 2x^T^y'' and finally to ''0 = x^T^y''. | ''0 = a^T^b + b^T^a'' |
Line 27: | Line 27: |
The test for orthogonality of two vectors is ''x^T^y = 0''. | ''0 = 2(a^T^b)'' ''0 = a^T^b'' |
Orthogonality
Orthogonality is an important property for relating two vectors, or two subspaces, or a vector and a plane. The math notation is ⊥, as in x ⊥ y.
Orthonormality is an expanded concept, requiring that the components be unit vectors.
Vectors
The concept of orthogonality is a generalization of perpendicularity from 2-dimensional space.
Put simply, vectors a and b are proven to be orthogonal if their dot product is 0.
More precisely: assuming orthogonality, vectors a and b will satisfy the Pythagorean theorem. The hypotenuse is Euclidean distance: (a+b)T(a+b). Simplifying from there:
aTa + bTb = (a+b)T(a+b)
aTa + bTb = aTa + bTb + aTb + bTa
0 = aTb + bTa
0 = 2(aTb)
0 = aTb
Subspaces
For a subspace S to be orthogonal to a subspace T, every vector in S must be orthogonal to every vector in T.
Vectors and Planes
The null space of a matrix A contains the vectors that are not in the row space. These vectors cancel out; they are not a linear combination of the rows; if the row space is a plane, then these vectors are not on that plane.
The null space of A (a.k.a. N(A)) is orthogonal to the row space of A (a.k.a. R(A)). The null space of AT (a.k.a. N(AT)) is orthogonal to the column space of A (a.k.a. C(A)). Commonly this means that the row and column spaces are planes while the null spaces of A and AT are vectors, but that isn't always true.
Matrices
If a matrix is composed of orthonormal columns, then it is a matrix with orthonormal columns. These are usually denoted as Q. This has an important property: QTQ = I.
The projection of A if A is a matrix with orthonormal columns simplifies from P = A(ATA-1)AT into P = QQT. Correspondingly, the system of normal equations simplifies from ATAx̂ = ATb into x̂ = QTb.
If a matrix with orthonormal columns is also square, only then can it be called an orthogonal matrix. This has an additional important property: QT = Q-1.
For example, if Q is square, then the projection matrix further simplifies to P = I.