Vector Operations
Vector Operations
A vector is a mathematical quantity that has both magnitude (length) and direction. In a 2D coordinate plane, vectors are commonly written in component form as v=âša,bâ©, where a represents the horizontal shift and b represents the vertical shift.
Basic Vector Operations
When working with vectors in component form, operations are performed component by component.
- Addition: To add two vectors, add their corresponding components. âšu1â,u2ââ©+âšv1â,v2ââ©=âšu1â+v1â,u2â+v2ââ©
- Subtraction: To subtract two vectors, subtract their corresponding components. âšu1â,u2ââ©ââšv1â,v2ââ©=âšu1ââv1â,u2ââv2ââ©
- Scalar Multiplication: To multiply a vector by a real number (a scalar) k, multiply each component by k. This scales the vector's length and can reverse its direction if k is negative. kâša,bâ©=âška,kbâ©
Magnitude of a Vector
The magnitude (or length) of a vector v=âša,bâ© is denoted by â£v⣠or â£â£vâ£â£. It can be found using the Pythagorean theorem:
â£vâ£=a2+b2â
Unit Vectors
A unit vector is a vector that has a magnitude of exactly 1. To find a unit vector u^ that points in the exact same direction as a given vector v, you divide the vector by its own magnitude:
u^=â£vâ£1âv=âšâ£vâ£aâ,â£vâ£bââ©
Example Problems
Example 1: Given u=âš3,4â© and v=âšâ1,2â©, find 2uâ3v and â£2uâ3vâ£.
- First, find scalar multiples: 2u=2âš3,4â©=âš6,8â© 3v=3âšâ1,2â©=âšâ3,6â©
- Next, subtract the scaled vectors: 2uâ3v=âš6â(â3),8â6â©=âš9,2â©
- Finally, find the magnitude of the resulting vector: â£2uâ3vâ£=92+22â=81+4â=85â
Example 2: Find the unit vector in the direction of âšâ5,12â©.
- Let v=âšâ5,12â©. First, calculate its magnitude: â£vâ£=(â5)2+122â=25+144â=169â=13
- Divide the vector by its magnitude to get the unit vector: v^=131ââšâ5,12â©=âšâ135â,1312ââ©