A Euclidean vector is a mathematical object representing both magnitude (length) and direction within Euclidean space. It is an element of a Euclidean vector spaceโa finite-dimensional vector space equipped with an inner product that defines lengths and angles.
Euclidean vectors formalize geometric intuition: arrows in space that can be added, scaled, and compared.
๐งญ Geometric Interpretation
In two or three dimensions, a Euclidean vector is commonly visualized as a directed line segment:
- The length represents magnitude.
- The orientation represents direction.
- Its position in space is irrelevant; only its displacement matters.
Two arrows of equal length and direction represent the same vector, regardless of where they are drawn.
๐งฎ Algebraic Representation
In โยฒ or โยณ, a vector is expressed as an ordered tuple:
\mathbf{v} = (v_1, v_2, \dots, v_n)
For example:
- In โยฒ: ( (x, y) )
- In โยณ: ( (x, y, z) )
These coordinates depend on the chosen basis (typically the standard Cartesian basis).
โ Vector Operations
Addition
Vectors are added component-wise:
[
(u_1, u_2) + (v_1, v_2) = (u_1 + v_1, u_2 + v_2)
]
Geometrically, this corresponds to the parallelogram rule.
Scalar Multiplication
Multiplying a vector by a scalar changes its magnitude and possibly reverses direction:
[
c \mathbf{v} = (c v_1, c v_2, \dots)
]
๐ Norm and Length
The length (or norm) of a vector is defined using the Euclidean metric:
[
|\mathbf{v}| = \sqrt{v_1^2 + v_2^2 + \dots + v_n^2}
]
This formula generalizes the Pythagorean theorem.
๐ Inner Product (Dot Product)
The defining structure of Euclidean space is the inner product, commonly the dot product:
[
\mathbf{u} \cdot \mathbf{v} = \sum_{i=1}^{n} u_i v_i
]
This operation provides:
- A method to compute angles between vectors
- A definition of orthogonality
- A basis for projection
The angle ( \theta ) between two vectors satisfies:
[
\mathbf{u} \cdot \mathbf{v} = |\mathbf{u}| |\mathbf{v}| \cos\theta
]
Vectors are orthogonal when their dot product equals zero.
๐งฑ Euclidean Space
Euclidean vectors inhabit Euclidean space, denoted โโฟ. This space is characterized by:
- Finite dimension
- Standard inner product
- Distance defined via the Euclidean norm
The geometric framework originates from the axioms of Euclid, though the algebraic formalization emerged much later.
๐ฌ Applications
Euclidean vectors are foundational across disciplines:
- Physics โ Representing force, velocity, acceleration
- Engineering โ Structural analysis and signal representation
- Computer graphics โ 3D transformations
- Machine learning โ Feature space representation
In classical mechanics, force vectors combine using vector addition. In computer graphics, position and direction vectors define rendering geometry.
โ๏ธ Euclidean vs. Abstract Vectors
In abstract algebra, a vector may refer to any element of a vector space, possibly infinite-dimensional or non-Euclidean.
A Euclidean vector, by contrast, specifically implies:
- Finite-dimensional real space
- A positive-definite inner product
- Standard geometric interpretation
This structure allows measurement of angles and distances in a familiar way.
๐ง Conceptual Significance
Euclidean vectors unify algebra and geometry:
- Coordinates provide algebraic precision.
- Inner products encode geometric relationships.
- Norms quantify magnitude.
They serve as the mathematical backbone of classical geometry and linear algebra.
๐ See Also
- Vector space
- Dot product
- Linear algebra
- Euclid
Last Updated on 2 weeks ago by pinc