title: “Vectors - Recapitulation of lec1”
Vectors are mathematical entities used to represent both magnitude and direction.
They are denoted by a boldface letter or an arrow above a letter.
Examples: a, b, c.
Vectors can be represented in component form, i.e., along the x and y axes.
Example: a = (ax, ay).
Vector Addition: To add vectors, we add the corresponding components.
Example: a + b = (ax + bx, ay + by).
The resultant vector is the vector sum of the given vectors.
Example: r = a + b.
Scalar Multiplication: A scalar can be multiplied with a vector.
Example: ca = (c * ax, c * ay), where c is a scalar.
The direction of the vector remains unchanged, but the magnitude is multiplied by the scalar.
Vector Subtraction: To subtract vectors, we subtract the corresponding components.
Example: a - b = (ax - bx, ay - by).
The resultant vector is the vector difference of the given vectors.
Example: r = a - b.
Magnitude of a Vector: The magnitude of a vector a is denoted by |a|.
It is calculated using the Pythagorean theorem.
Example: |a| = √(ax2 + ay2).
It represents the length or size of the vector.
Unit Vector: A unit vector has a magnitude of 1 and is used to represent direction.
It is denoted by a hat (^) above the vector.
Example: â = (ax/|a|, ay/|a|).
The unit vector points in the same direction as the original vector.
Dot Product: The dot product of two vectors a and b is denoted by a · b.
It is calculated by multiplying the corresponding components and summing the results.
Example: a · b = ax * bx + ay * by.
The dot product gives a scalar value.
Angle between Vectors: The angle θ between two vectors a and b is calculated using the dot product.
Example: cos(θ) = (a · b) / (|a| * |b|).
The angle is measured in radians or degrees, depending on the unit used.
Cross Product: The cross product of two vectors a and b is denoted by a × b.
It is calculated using the determinants of the vectors’ components.
Example: a × b = (ax * by - ay * bx) i.
The cross product gives a vector perpendicular to the plane containing the given vectors.
Applications of Vectors: Vectors have various applications in physics, engineering, and computer science.
They are used to represent forces, velocities, displacements, electric fields, and more.
Vector analysis is essential for understanding and solving real-life problems.
Mastering vectors is crucial for success in many scientific and technical fields.