Vector Fundamentals: Magnitude, Direction & Component Notation
A vector is a mathematical quantity possessing both magnitude (length) and direction, contrasting with a scalar quantity, which has only magnitude (such as temperature or mass). Vectors represent physical quantities including velocity, acceleration, force, and displacement.
In Cartesian space R^3, a 3D vector v is written as an ordered triple or a combination of unit basis vectors i, j, k: v = v_x ; v_y ; v_z = v_x i + v_y j + v_z k
The magnitude (Euclidean norm) of v uses the Pythagorean distance formula: \|v\| = √(v_x^2 + v_y^2 + v_z^2)
A unit vector v has magnitude 1 and points in the same direction as v, found by normalizing: v = v/\|v\|
Vector addition and scalar multiplication are done entry-wise: u + v = (u_x + v_x, u_y + v_y, u_z + v_z) and cv = (cv_x, cv_y, cv_z) — this calculator computes both directly for 2D or 3D input vectors.