The dot product of two vectors A and B is a scalar quantity. It is defined as:
Definition: A ⋅ B = |A| |B| cos(θ)
Where |A| and |B| are the magnitudes of the vectors and θ is the angle between them.
In Cartesian coordinates (A = Axi + Ayj + Azk, B = Bxi + Byj + Bzk):
Formula: A ⋅ B = AxBx + AyBy + AzBz
Physical Example: Work done (W) by a constant force F over a displacement d is W = F ⋅ d.
The cross product of two vectors A and B is a new vector that is perpendicular to both A and B.
Its magnitude is:
Magnitude: |A × B| = |A| |B| sin(θ)
The direction is given by the Right-Hand Rule. In Cartesian coordinates, it is calculated using a determinant:
Formula: A × B = | i j k |
| Ax Ay Az |
| Bx By Bz |
= (AyBz - AzBy)i - (AxBz - AzBx)j + (AxBy - AyBx)k
Physical Example: Torque (τ) due to a force F applied at a position r from the pivot is τ = r × F.
This product results in a scalar. It is defined as:
Definition: A ⋅ (B × C)
Physical Significance: The absolute value |A ⋅ (B × C)| represents the volume of the parallelepiped formed by the vectors A, B, and C.
It can be calculated using a determinant:
Formula: A ⋅ (B × C) = | Ax Ay Az |
| Bx By Bz |
| Cx Cy Cz |
Property: The dot and cross can be interchanged, and the vectors can be cyclically rotated without changing the value:
A ⋅ (B × C) = B ⋅ (C × A) = C ⋅ (A × B) = (A × B) ⋅ C
This product results in a vector. It is defined as:
Definition: A × (B × C)
Physical Significance: The resulting vector lies in the plane formed by vectors B and C.
This is computed using the "BAC-CAB" rule:
Formula: A × (B × C) = B(A ⋅ C) - C(A ⋅ B)
A × (B × C) ≠ (A × B) × C
(A × B) × C = -C × (A × B) = -[A(C ⋅ B) - B(C ⋅ A)] = B(A ⋅ C) - A(B ⋅ C)
We introduce the vector differential operator Del (∇):
Del Operator: ∇ = i(∂/∂x) + j(∂/∂y) + k(∂/∂z)
This operator can act on scalar fields (like temperature, T(x,y,z)) and vector fields (like electric field, E(x,y,z)).
The gradient acts on a scalar field (f) and produces a vector field.
Definition: grad(f) = ∇f = i(∂f/∂x) + j(∂f/∂y) + k(∂f/∂z)
Physical Significance:
The divergence acts on a vector field (V) and produces a scalar field. It is the dot product of ∇ and V.
Definition: div(V) = ∇ ⋅ V = (∂Vx/∂x) + (∂Vy/∂y) + (∂Vz/∂z)
Physical Significance:
The curl acts on a vector field (V) and produces another vector field. It is the cross product of ∇ and V.
Definition: curl(V) = ∇ × V = | i j k |
| ∂/∂x ∂/∂y ∂/∂z |
| Vx Vy Vz |
Physical Significance:
Formula: ∫C V ⋅ dl
Example: Work done by a variable force F along a path C is W = ∫C F ⋅ dl.
Formula: ∫∫S V ⋅ dS
Example: Electric flux (ΦE) through a surface S is ΦE = ∫∫S E ⋅ dS.
Formula: ∫∫∫τ f dτ
Example: Total charge (Q) in a volume τ with charge density ρ is Q = ∫∫∫τ ρ dτ.
This theorem relates a volume integral of the divergence of a vector field to a closed surface integral of the flux of that field.
Theorem Statement: The flux of a vector field V through a closed surface S is equal to the volume integral of the divergence of V over the volume τ enclosed by that surface.Formula: ∮∮S V ⋅ dS = ∫∫∫τ (∇ ⋅ V) dτ
Physical Meaning: The total "stuff" flowing out of a closed surface (left side) is equal to the sum of all the "sources" inside that volume (right side).
This theorem relates an open surface integral of the curl of a vector field to a closed line integral of that field around the boundary of the surface.
Theorem Statement: The line integral (circulation) of a vector field V around a closed loop C is equal to the surface integral of the curl of V over any open surface S bounded by that loop.Formula: ∮C V ⋅ dl = ∫∫S (∇ × V) ⋅ dS
Physical Meaning: The total "rotation" of a field over a surface (right side) is equal to the "circulation" of the field around the edge of that surface (left side).
A homogeneous ODE of the first order can be written in the form:
dy/dx = f(y/x)
How to Solve (Separation of Variables):
This is a very common type of equation in physics (e.g., in Simple Harmonic Motion). The general form is:
General Form: a(d²y/dx²) + b(dy/dx) + cy = 0
Where a, b, and c are constants.
How to Solve:
y' = memx
y'' = m²emx
a(m²emx) + b(memx) + c(emx) = 0
Auxiliary Equation: am² + bm + c = 0
The roots are m₁ and m₂. The general solution is:
Solution: y(x) = C₁em₁x + C₂em₂x
The roots are m₁ = m₂ = m. The general solution is:
Solution: y(x) = (C₁ + C₂x)emx
The roots are a complex conjugate pair: m = α ± iβ. The solution is:
y(x) = C₁e(α + iβ)x + C₂e(α - iβ)x
Using Euler's formula (eiθ = cosθ + isinθ), this simplifies to a more useful form:
Solution: y(x) = eαx (A cos(βx) + B sin(βx))
Example (SHM): d²x/dt² + ω²x = 0.
Auxiliary equation: m² + ω² = 0.
Roots: m = ±iω. (This is Case 3 with α=0, β=ω).
Solution: x(t) = A cos(ωt) + B sin(ωt).