Posts

Showing posts with the label Normalised Vectors

Normalised Vectors: A Clear and Intuitive Guide

Image
Normalised Vectors: A Clear and Intuitive Guide Vectors can have any length, but many mathematical problems only depend on direction. To separate direction from magnitude, we normalise the vector. This produces a new vector of length 1 that points the same way as the original. Normalised vectors are central to geometry, physics, 3D graphics, transformations, and any setting where orientation matters. By working with a unit vector, calculations become simpler, cleaner, and more meaningful. What Is a Normalised Vector? A normalised vector is a vector with magnitude 1. It keeps its direction but loses its original size. Some simple unit vectors include: (1, 0, 0) — magnitude 1 (0, 1, 0) — magnitude 1 (0, 0, 1) — magnitude 1 These are the standard basis vectors. In general, any non-zero vector can be transformed into a unit vector by dividing by its magnitude. Normalising a Vector in 2 Dimensions For a 2D vector (a, b) , the length is: √(a² + b²) To n...