Grade 12 → Algebra → Vectors and 3D Geometry ↓
Vector Algebra
Vector algebra is a branch of mathematics that deals with quantities that have both magnitude and direction. These quantities are called vectors, and they are used to represent physical quantities such as force, velocity, and displacement. In this comprehensive guide, we will dive deep into the principles and operations of vector algebra, which are essential to understanding vectors and 3D geometry.
What is a vector?
A vector is a mathematical entity that has both magnitude and direction, while a scalar has only magnitude. Vectors can be represented in various forms: geometrically as arrows, algebraically as an ordered list of numbers, or symbolically using letters.
Geometrical representation
Geometrically, a vector is represented by an arrow. The length of the arrow represents the magnitude, while the tip of the arrow represents the direction.
, |--> this is a vector | (from point O to point A) O(0,0) A(3,4)
Here, point O is the tail of the vector and point A is the head of the vector.
Algebraic representation
Algebraically, a vector is represented by a tuple (an ordered list of numbers). For example:
Let v = (3, 4)
be a vector in 2D space.
Here, 3
and 4
are the coordinates on the x-axis and y-axis respectively.
Basic operations with vectors
Vector addition
Vector summation is the process of combining vectors to determine the resulting vector. If you have two vectors a = (a1, a2)
and b = (b1, b2)
, the sum is found by adding the corresponding components:
a + b = (a1 + b1, a2 + b2)
Example: If a = (1, 2)
and b = (3, 4)
, then:
a + b = (1+3, 2+4) = (4, 6)
Vector subtraction
Vector subtraction is done by subtracting the corresponding components of two vectors. For vectors a = (a1, a2)
and b = (b1, b2)
, the difference is:
a - b = (a1 - b1, a2 - b2)
Example: If a = (5, 5)
and b = (2, 3)
, then:
a - b = (5-2, 5-3) = (3, 2)
Scalar multiplication
Scalar multiplication involves multiplying a vector by a scalar (a real number). If you have a vector a = (a1, a2)
and a scalar k
, the product is:
k * a = (k*a1, k*a2)
Example: If a = (3, 4)
and k = 2
, then:
k * a = 2 * (3,4) = (2*3, 2*4) = (6, 8)
Visual representation of vectors
Visualizing vectors can be very helpful in understanding their behavior and operations. Let's represent the concept of vector addition graphically.
Consider two vectors a = (1, 2)
and b = (3, 1)
. Their vector sum a + b
can be viewed as follows:
Start at the origin. Draw the vector a = (1, 2). Select the head of a as the new starting point. Starting from the vertex of a, draw the vector b = (3, 1). The resultant vector a + b is the direct path from the original starting point to the end at b.
Extended concepts of vectors
Dot product (scalar product)
The dot product of two vectors yields a scalar quantity. For the vectors a = (a1, a2, a3)
and b = (b1, b2, b3)
, the dot product is:
a b = a1*b1 + a2*b2 + a3*b3
Example: If a = (1, 3, 4)
and b = (2, 5, 6)
, then:
a b = 1*2 + 3*5 + 4*6 = 2 + 15 + 24 = 41
Cross product (vector product)
The cross product of two vectors results in another vector that is perpendicular to both of the original vectors. It is defined only in three-dimensional space. For vectors a = (a1, a2, a3)
and b = (b1, b2, b3)
, the cross product is given by:
a × b = (a2*b3 - a3*b2, a3*b1 - a1*b3, a1*b2 - a2*b1)
Example: If a = (1, 0, 0)
and b = (0, 1, 0)
, then:
a × b = (0*0 - 0*1, 0*0 - 1*0, 1*1 - 0*0) = (0, 0, 1)
Applications of vector algebra in 3D geometry
Vectors are fundamental in 3D geometry because they provide a means of describing lines, planes, and motions in space.
Equation of line
A line in 3D can be represented using vectors like this:
r = a + t * b
Here, r
is the position vector of any point on the line, a
is the position vector of a known point on the line, t
is a scalar parameter, and b
is a vector in the direction of the line.
Example: Find the vector equation of the line passing through the point (1, 2, 3)
and parallel to the vector (4, 5, 6)
.
R = (1, 2, 3) + T * (4, 5, 6)
Equation of a plane
A plane in 3D can be given by the vector equation:
r n = d
where r
is the position vector of any point on the plane, n
is the normal vector perpendicular to the plane, and d
is a constant.
Example: If the normal vector is (1, -2, 1)
and it passes through the point (2, -3, 5)
, the equation of the plane is:
(x, y, z) · (1, -2, 1) = 1*(2) + (-2)*(-3) + 1*(5) = 2 + 6 + 5 = 13
Therefore, the equation is: x - 2y + z = 13
.
Vectors in real life
Vector algebra is not just a theoretical concept; it is widely applied in the real world. For example:
- Piloting airplanes and ships involves considering speed (magnitude) and direction (angle).
- In physics, forces are represented as vectors, which help in understanding structures and mechanics.
- In computer graphics, vectors are used to model complex shapes and motions.
Conclusion
Vector algebra is a powerful mathematical tool that extends far beyond simple arithmetic or algebraic calculations. It is integrated into many fields, including engineering, physics, computer science, and more. Understanding the fundamental operations and applications of vectors in 3D geometry is important for students and professionals dealing with any form of spatial analysis or force systems.