In physics, some things can be described with just a single number, while others need a direction to make sense.
Scalars are quantities that only have a size (magnitude). For example, if you say the temperature is 25∘C or your mass is 60 kg, you have given all the necessary information. Time, speed, and energy are also scalars.
Vectors are quantities that have both a size (magnitude) and a specific direction. If you tell someone to drive at 60 km/h, that is a scalar (speed). But if you tell them to drive 60 km/hNorth, that is a vector (velocity). Force, acceleration, and displacement are other common vectors.
We usually draw vectors as arrows. The length of the arrow shows how big the quantity is, and the arrowhead points in its direction.
Deeper Dive
To work with vectors mathematically, we often break them down into simpler parts or combine them.
Vector Resolution
Resolution is the process of splitting a single vector into two or more perpendicular components. If a vector A lies in a 2D plane at an angle θ relative to the horizontal x-axis, it can be resolved into horizontal ($A_x$) and vertical ($Y$-axis, $A_y$) components using basic trigonometry:
Ax=Acosθ
Ay=Asinθ
We can write the complete vector using unit vectors ($\hat{i}$ for the x-axis and j^ for the y-axis):
A=Axi^+Ayj^
The magnitude of the vector can be found using the Pythagorean theorem:
A=∣A∣=Ax2+Ay2
Vector Addition
When adding vectors, you cannot simply add their magnitudes. Instead, you use the Parallelogram Law or the Triangle Law. If you place two vectors head-to-tail, the resultant vector R=A+B is the vector drawn from the tail of the first to the head of the second.
Technical Details
When multiplying two vectors, the outcome depends on whether the desired result is a scalar or another vector.
1. The Dot Product (Scalar Product)
The dot product multiplies two vectors to yield a scalar. It measures how much one vector points in the direction of another.
A⋅B=ABcosθ
Where θ is the angle between the two vectors. In component form, it is calculated as:
A⋅B=AxBx+AyBy+AzBz
Physical Example: Work done (W$) is the dot product of Force ($\vec{F}$) and Displacement ($\vec{d}$): $W = \vec{F} \cdot \vec{d}.
2. The Cross Product (Vector Product)
The cross product multiplies two vectors to yield a new vector that is perpendicular to both of the original vectors.
A×B=(ABsinθ)n^
Where n^ is a unit vector perpendicular to the plane containing A and B, determined by the Right-Hand Rule. The magnitude of the cross product equals the area of the parallelogram formed by the two vectors.
In Cartesian components, the cross product is calculated using a matrix determinant:
Physical Example: Torque (\vec{\tau}$) is the cross product of the position vector ($\vec{r}$) and the applied force ($\vec{F}$): $\vec{\tau} = \vec{r} \times \vec{F}.