Scalars and Vectors
| English | Chinese | Pinyin |
|---|---|---|
| scalar | 标量 | biāo liàng |
| vector | 矢量 | shǐ liàng |
| magnitude | 大小 | dà xiǎo |
| components | 分量 | fèn liàng |
"Go 5 km" -- but which way?
- Tell a friend to "walk 5 km" and they could end up anywhere on a circle around you.
- Say "walk 5 km north" and there is exactly one destination.
- Some quantities need only a size; others need a direction too.
- Sorting them out is the first step in all of mechanics.
Scalars and vectors
- A scalar 标量 has only a size (magnitude) -- like temperature or time.
- A vector 矢量 has a size and a direction -- like a push or a velocity.
- Getting the type right changes how you add them.
A quantity with both a size and a direction is called a ____.
A vector has magnitude and direction; a scalar has only magnitude.
Which is which
- Scalars: distance, speed, mass, energy, time.
- Vectors: displacement, velocity, acceleration, force, momentum.
- The vector twin of a scalar carries the extra "which way" information.
Scalar or vector?
Sort each quantity by whether it needs a direction.
Which of these is a vector?
Velocity has a size and a direction, so it is a vector. Temperature, mass, and time are scalars.
Select all scalars.
Speed and energy are scalars (size only). Force and displacement are vectors.
Adding vectors
- Vectors add tip-to-tail, not just by numbers.
- The easiest method: break each into components 分量 along the axes, then add the components.
- Two forces of $3\ \text{N}$ can sum to anything from $0$ to $6\ \text{N}$, depending on their directions.
You walk $9\ \text{km}$ east then $12\ \text{km}$ north. How far are you from the start (in km)?
The displacement magnitude is $\sqrt{9^2 + 12^2} = \sqrt{225} = 15\ \text{km}$ -- not $21$.
Two $4\ \text{N}$ forces always add up to $8\ \text{N}$.
Only if they point the same way. At right angles they give $\sqrt{4^2+4^2} \approx 5.7\ \text{N}$; opposite, $0$.
Magnitude and direction
- From components $(A_x, A_y)$, the magnitude 大小 is $|\vec{A}| = \sqrt{A_x^2 + A_y^2}$.
- The direction is the angle $\theta = \tan^{-1}(A_y/A_x)$.
- Components and magnitude-angle are just two languages for the same vector.
A vector has components $A_x = 6$, $A_y = 8$. What is its magnitude?
$|\vec{A}| = \sqrt{6^2 + 8^2} = \sqrt{100} = 10$.
A vector has components $A_x = 3$, $A_y = 4$.
- Magnitude: $|\vec{A}| = \sqrt{3^2 + 4^2} = \sqrt{25} = 5$.
- Direction: $\theta = \tan^{-1}(4/3) \approx 53^\circ$ above the x-axis.
You cannot add vectors like plain numbers. Walking $3\ \text{km}$ east then $4\ \text{km}$ north leaves you $5\ \text{km}$ away -- not $7$. Only when two vectors point the same way do their magnitudes simply add.
A scalar has size only; a vector has size and direction. Add vectors by components ($A_x$, $A_y$), then recover the magnitude $\sqrt{A_x^2 + A_y^2}$ and angle. Distance and speed are scalars; displacement, velocity, and force are vectors.