Line Integral Cheat Sheet
Line Integral Cheat Sheet
Definition:
It adds up values of a scalar function f(x, y) along a curve C, weighted by arc length.
Formula:
∫C f(x, y) ds = ∫a^b f(x(t), y(t)) √[(x'(t))² + (y'(t))²] dt
Definition:
It adds up the effect of a vector field F = P𝑖 + Q𝑗 on a moving object along curve C
Formula (general):
∫C F · dr = ∫C P dx + Q dy
Parametric version:
= ∫a^b [ P(x(t), y(t)) · x'(t) + Q(x(t), y(t)) · y'(t) ] dt
Steps:
1. Parameterize the curve: x = x(t), y = y(t), t ∈ [a, b]
2. Compute derivatives: x'(t), y'(t)
3. Plug into formula:
∫C F · dr = ∫a^b [ P(x(t), y(t)) · x'(t) + Q(x(t), y(t)) · y'(t) ] dt
🔹 5. Tips to Remember
- Always parameterize the curve before integration.
- Scalar field uses arc length: ds = √(dx² + dy²)
- Vector field uses dot product of field and path direction.
- Check whether the field is conservative – if yes, use potential function to simplify!