Topics · 12 formulas

Parametric, Polar & Vectors

Parametric curves, polar coordinates, and vector operations.

Parametric Derivative (dy/dx)

dydx=dy/dtdx/dt=y(t)x(t)\frac{dy}{dx} = \frac{dy/dt}{dx/dt} = \frac{y'(t)}{x'(t)}

The slope of a parametric curve x = x(t), y = y(t) is the ratio of the derivatives with respect to the parameter t.

Conditions: x'(t) ≠ 0.

Parametric Curves

Open formula

Parametric Arc Length

L=αβ(dxdt)2+(dydt)2dtL = \int_\alpha^\beta \sqrt{\left(\frac{dx}{dt}\right)^2 + \left(\frac{dy}{dt}\right)^2}\, dt

The length of a parametric curve from t = α to t = β.

Parametric Curves

Open formula

Parametric Area

A=αβy(t)x(t)dtA = \int_\alpha^\beta y(t)\, x'(t)\, dt

The area under a parametric curve. More precisely, the signed area between the curve and the x-axis.

Parametric Curves

Open formula

Polar to Cartesian

x=rcosθ,y=rsinθ,r2=x2+y2,tanθ=y/xx = r\cos\theta, \quad y = r\sin\theta, \quad r^2 = x^2 + y^2, \quad \tan\theta = y/x

Conversion formulas between polar coordinates (r, θ) and Cartesian coordinates (x, y).

Polar Coordinates

Open formula

Polar Area

A=12αβ[r(θ)]2dθA = \frac{1}{2}\int_\alpha^\beta [r(\theta)]^2 \, d\theta

The area enclosed by a polar curve r = f(θ) from θ = α to θ = β.

Polar Coordinates

Open formula

Polar Arc Length

L=αβr2+(drdθ)2dθL = \int_\alpha^\beta \sqrt{r^2 + \left(\frac{dr}{d\theta}\right)^2}\, d\theta

The arc length of a polar curve r = f(θ) from θ = α to θ = β.

Polar Coordinates

Open formula

Polar Curve Slope

dydx=rsinθ+rcosθrcosθrsinθ\frac{dy}{dx} = \frac{r'\sin\theta + r\cos\theta}{r'\cos\theta - r\sin\theta}

The slope of a polar curve at a given angle θ. Derived from x = r cos θ, y = r sin θ using the parametric derivative formula.

Polar Coordinates

Open formula

Vector Magnitude

v=v12+v22+v32|\vec{v}| = \sqrt{v_1^2 + v_2^2 + v_3^2}

The magnitude (length) of a vector v = ⟨v₁, v₂, v₃⟩.

Vector Operations

Open formula

Dot Product

uv=u1v1+u2v2+u3v3=uvcosθ\vec{u} \cdot \vec{v} = u_1 v_1 + u_2 v_2 + u_3 v_3 = |\vec{u}||\vec{v}|\cos\theta

The dot product is a scalar equal to the sum of component products. It also equals the product of magnitudes times the cosine of the angle between them.

Vector Operations

Open formula

Cross Product

u×v=i^j^k^u1u2u3v1v2v3\vec{u} \times \vec{v} = \begin{vmatrix} \hat{i} & \hat{j} & \hat{k} \\ u_1 & u_2 & u_3 \\ v_1 & v_2 & v_3 \end{vmatrix}

The cross product produces a vector perpendicular to both u and v. Its magnitude equals |u||v|sin θ (the area of the parallelogram formed by u and v).

Vector Operations

Open formula

Vector Projection

projvu=uvv2v\text{proj}_{\vec{v}} \vec{u} = \frac{\vec{u} \cdot \vec{v}}{|\vec{v}|^2} \vec{v}

The projection of u onto v gives the component of u in the direction of v.

Vector Operations

Open formula

Angle Between Vectors

cosθ=uvuv\cos\theta = \frac{\vec{u} \cdot \vec{v}}{|\vec{u}||\vec{v}|}

The angle between two vectors is found using the dot product divided by the product of their magnitudes.

Vector Operations

Open formula