Scalars and Vectors

Back to Mechanics

1. The Fundamental Distinction: Scalars vs. Vectors

In Physics, measurements are categorized by the information they carry. This distinction is crucial for understanding how objects move and interact.

A. Scalar Quantities (Magnitude Only)

A scalar is a physical quantity that is completely described by its magnitude (a number and a unit).

Algebra: They follow the rules of ordinary algebra ($5\text{kg} + 5\text{kg} = 10\text{kg}$).

Examples: Mass ($m$), Time ($t$), Temperature ($T$), Distance ($d$), Speed ($v$), and Energy ($E$).

B. Vector Quantities (Magnitude + Direction)

A vector requires both magnitude and direction to be fully defined. Changing either the number or the direction changes the vector itself.

Examples: Displacement ($\vec{s}$), Velocity ($\vec{v}$), Acceleration ($\vec{a}$), Force ($\vec{F}$), and Momentum ($\vec{p}$).

Visual Representation

In diagrams, vectors are represented by an arrow:

  • Length: Represents the magnitude (scaled).
  • Arrowhead: Points in the direction of the vector.
  • Tail: The starting point or point of application.

2. Mathematical Representation & Components

Working with angles can be difficult, so we use Rectangular Components to simplify calculations.

A. Resolving a Vector

Any vector $\vec{A}$ in a 2D plane can be broken into two perpendicular parts: the horizontal ($x$) and vertical ($y$) components.

Horizontal Component ($A_x$): $A_x = A \cos \theta$
Vertical Component ($A_y$): $A_y = A \sin \theta$

Note: $\theta$ is the angle measured from the positive x-axis.

B. Unit Vector Notation

To write vectors in a standardized code-like format, we use unit vectors:

  • $\hat{i}$ : A vector with magnitude 1 pointing along the $+x$ axis.
  • $\hat{j}$ : A vector with magnitude 1 pointing along the $+y$ axis.
Standard Form: $\vec{A} = A_x\hat{i} + A_y\hat{j}$

3. Vector Addition: The Analytical Method

When adding multiple vectors (like three people pulling a rope), we find the Resultant Vector ($\vec{R}$).

  1. Resolve: Break every individual vector into its $x$ and $y$ components.
  2. Sum X: Add all horizontal components together ($R_x = \sum A_x$).
  3. Sum Y: Add all vertical components together ($R_y = \sum A_y$).
  4. Pythagorean Theorem: Find the total magnitude: $R = \sqrt{R_x^2 + R_y^2}$.
  5. Trigonometric Direction: Find the angle: $\theta = \tan^{-1}\left(\frac{R_y}{R_x}\right)$.

4. Advanced Examples & Walkthroughs

Level 1: Basic Displacement (Perpendicular)

Scenario: A student walks $30\text{ m}$ East, then turns and walks $40\text{ m}$ North.

Analysis: Since these are perpendicular, $R_x = 30$ and $R_y = 40$.

  • Magnitude: $R = \sqrt{30^2 + 40^2} = \sqrt{900 + 1600} = 50\text{ m}$.
  • Direction: $\theta = \tan^{-1}(\frac{40}{30}) \approx 53.1^\circ$ North of East.

Level 2: Component Extraction

Scenario: A force of $120\text{ N}$ is applied to a block at an angle of $25^\circ$ to the horizontal.

  • Horizontal Force ($F_x$): $120 \times \cos(25^\circ) \approx 108.76\text{ N}$.
  • Vertical Force ($F_y$): $120 \times \sin(25^\circ) \approx 50.71\text{ N}$.

Application: Only the $108.76\text{ N}$ force is actually working to slide the block forward.

Level 3: Multiple Forces (The "Tug of War")

Scenario: Force A is $10\text{ N}$ at $0^\circ$. Force B is $20\text{ N}$ at $120^\circ$.

  • Components of A: $A_x = 10 \cos 0 = 10$; $A_y = 10 \sin 0 = 0$.
  • Components of B: $B_x = 20 \cos 120 = -10$; $B_y = 20 \sin 120 \approx 17.32$.
  • Net Components: $R_x = 10 + (-10) = 0$; $R_y = 0 + 17.32 = 17.32$.
  • Resultant: Magnitude is $17.32\text{ N}$ pointing exactly North ($90^\circ$).

Level 4: Unit Vector Algebra

Scenario: If $\vec{D} = (4\hat{i} - 3\hat{j})$ and $\vec{E} = (-1\hat{i} + 8\hat{j})$, find the magnitude of $2\vec{D} + \vec{E}$.

  1. $2\vec{D} = 8\hat{i} - 6\hat{j}$
  2. Add $\vec{E}$: $(8 - 1)\hat{i} + (-6 + 8)\hat{j} = 7\hat{i} + 2\hat{j}$.
  3. Magnitude: $\sqrt{7^2 + 2^2} = \sqrt{49 + 4} = \sqrt{53} \approx 7.28$.

Level 5: Real-World "Skyscraper" Displacement

Scenario: An object is moved $30\text{ m}$ horizontally, then $45\text{ m}$ vertically (up 10 floors), then $15\text{ m}$ horizontally back toward the start.

  • Total X: $+30\text{ m}$ (forward) $- 15\text{ m}$ (backward) $= 15\text{ m}$.
  • Total Y: $+45\text{ m}$ (upward).
  • Resultant Displacement: $\sqrt{15^2 + 45^2} = \sqrt{225 + 2025} = \sqrt{2250} \approx 47.43\text{ m}$.

Finished studying this topic?

Mark it as completed to unlock the next level in your Physics journey!