Linear Algebra: Orthogonal Vectors

Author:Murphy  |  View: 24672  |  Time: 2025-03-23 19:17:21
Photo by Karsten Würth on Unsplash

The previous article discussed Euclidean vector space, inner product, norm, distance, and angle in Rⁿ. This article will introduce orthogonal vectors, orthogonal projection, and Linear Transformation of vectors.

Orthogonal Vector

Image 1. Orthogonal Vector in R² (Image by Author)
  • Two vectors u and v are called orthogonal if u.v = 0
  • If u and v are orthogonal vectors with Euclidean inner product, then

Orthogonal Projection

  • Maps a vector onto its orthogonal projection on a line or a plane
Image 2. Orthogonal Projection. (Image by Author)

Linear Transformation

  • Functions f map Rⁿ into Rᵐ and denoted by f: Rⁿ → Rᵐ:
Image 3. Functions that map Rⁿ into Rᵐ. (Image by Author)
  • If all the functions fᵢ are linear, then transformation T is called a linear transformation and these linear equations can be expressed by matrix form W = AX. Therefore, the above transformations can be written as:
Image 4. Rewrite linear transformations in Image 3. (Image by Author)

Example transformation:

  • Given transformation equations, w₁ = x₁ + x₂ + x₃, w₂ = x₁- x₂- x₃, the transformation will map R³ to R². T: R³ → R² (w₁, w₂) = T(x₁, x₂, x₃) = (x₁ + x₂ + x₃, x₁- x₂- x₃)
Image 5. Standard matrix for the above linear transformation. (Image by Author)

Composition of Linear Transformation

  • If T₁: Rⁿ → Rᵏ and T₂: Rᵏ → Rᵐ are linear transformations, which are
Image 6. Composition of T₂ and T₁. (Image by Author)

Some Common Transformations on Vectors

Reflection

  • Maps a vector into its symmetric image about a line or a plane
  • A vector's reflection about the x-axis

Given u = (x, y)

Image 7. Example of Reflection. (Image by Author)

Dilation or Contraction

  • T(u) = ku is called dilation if factor k ≥ 1 and a contraction if 0 ≤ k ≤ 1. Note: k is a nonnegative scalar.
Image 8. Example of Dilation k ≥ 1. (Image by Author)

Rotation

  • Rotate a vector through a fixed angle θ
Image 9. Example of clockwise and anti-clockwise rotation. (Image by Author)

Composition of Reflection and Dilation

  • A reflection about the x-axis, followed by a dilation with factor 2.
Image 10. Composition of Reflection and Dilation with factor 2. (Image by Author)

Recommended Reading

Linear Algebra: Systems of Linear Equations and Matrices, with Python

Linear Algebra: Matrix Operations and their Properties, with Python

Linear Algebra: Finding Inverse Matrix, with Python

Linear Algebra: LU Decomposition, with Python

Linear Algebra: Euclidean Vector Space

Linear Algebra: General Vector Space

Linear Algebra: Discovering Eigenvalues and Eigenvectors for Diagonalization


References

[1] Orthogonality – Wikipedia

[2] National Chung Cheng University Lecture – Wei-Ta Chu, Euclidean Vector Space, 2008

[3] National Chung Cheng University Lecture – Wei-Ta Chu, Angle, and Orthogonality, 2008

Tags: Linear Algebra Linear Transformation Mathematics Orthogonal Vector

Comment