Notes on Parametric Curves and Vector Functions
Parametric Curves
- A parametric curve represents x and y as functions of a parameter, usually t or θ, instead of a single equation y = f(x).
- Given x = x(t) and y = y(t), the curve is traced by letting t vary.
- Example: x = -3t + 1, y = 2t - 1.
- Points on the curve (by tabulating t):
- t = -1 → (x, y) = (4, -3)
- t = 0 → (x, y) = (1, -1)
- t = 1 → (x, y) = (-2, 1)
- t = 2 → (x, y) = (-5, 3)
- The plotted points lie on a straight line, so the parametric curve represents a line.
- To convert to Cartesian form, eliminate the parameter t.
- From x = -3t + 1: t = (1 - x)/3.
- Substitute into y = 2t - 1:
y=2(31−x)−1=32−2x−1=3−2x−1.
So the Cartesian equation is:
y=−32x−31.
- Parameter ranges can be unbounded or bounded.
- Strategies to eliminate the parameter:
- Solve one equation for t and substitute into the other.
- Use identities (e.g., trig identities such as sin2θ+cos2θ=1) when x and y are given in terms of trig functions.
- Problems: Eliminate the parameter and sketch the curve, noting the direction of traversal.
1) Curve: x=t+1,y=t3,−2≤t≤4.
- Cartesian relation: y=(x−1)3.
- Domain of x: since $x = t + 1$, x∈[−1,5]; corresponding y-range is y∈[−8,64].
- Direction: as $t$ increases from -2 to 4, x increases from -1 to 5 (dx/dt = 1 > 0), so the curve is traversed from $(-1,-8)$ toward $(5,64)$.
- 2) x=3+sinθ,y=2+cosθ.
- Eliminate the parameter: (x−3)2+(y−2)2=sin2θ+cos2θ=1.
- This is a circle of radius 1 centered at (3,2).
- Note: this is described as an unbounded curve in the sense that the parameter θ is not bounded, but the locus itself is bounded (a circle). As θ runs over all real values, the full circle is traced.
- Direction: with x−3=sinθ and y−2=cosθ, increasing θ generally traces the circle in a clockwise orientation starting from $(3,3)$ when θ=0.
- 3) x=3+sinθ,y=2+cosθ,0≤θ≤π.
- This traces only a portion of the circle: the right semicircle (the eastern half).
- The locus remains the same circle equation $(x-3)^2 + (y-2)^2 = 1$, but theta is restricted to half the circle.
- Direction on 0→π: starts at $(3,3)$ when θ=0, moves toward $(4,2)$ at θ=π/2, and ends at $(3,1)$ when θ=π.
Vector Functions and lines in 2D
- A vector function is written as r(t)=⟨x(t),y(t)⟩. Each value of t gives a point on a curve, and the set of points traced is the curve.
- Example: r(t)=(4cost)i+(sint)j.
- This traces the ellipse with semi-axes 4 (along x) and 1 (along y):
16x2+y2=1.
- Vector equation of a line and its relationship to parametric and Cartesian forms:
- If $P0(x0, y0)$ is a point on the line and v=⟨a,b⟩ is a direction vector parallel to the line, then the vector equation is:
r(t)=r</em>0+tv=⟨x<em>0,y</em>0⟩+t⟨a,b⟩.
- The corresponding parametric equations are:
x(t)=x<em>0+ta,y(t)=y</em>0+tb. - The Cartesian equation of the line can be obtained by eliminating t (or by slope-intercept form).
- 5) Find the parametric equation of the line through $(3,-2)$ parallel to y=32x+7.
- Slope is m=32, so a direction vector can be ⟨3,2⟩.
- Parametric form: r(t)=⟨3,−2⟩+t⟨3,2⟩.
- Component form: x(t)=3+3t,y(t)=−2+2t.
Perpendicular and intersecting lines
- 6) Find the vector equation of the line through $(1,4)$ perpendicular to the line given by r(t)=(3−5t,2+7t).
- Direction of the given line: v=⟨−5,7⟩.
- A line perpendicular to this has direction vector w with v⋅w=0. One choice: w=⟨7,5⟩.
- Perpendicular line: r(t)=⟨1,4⟩+t⟨7,5⟩.
- 7) Are the lines r<em>1(t)=(−1−2t)i+(2+t)j and r</em>2(s)=(5−3s)i+(3+6s)j parallel, perpendicular, or neither?
- Direction vectors: v<em>1=⟨−2,1⟩, v</em>2=⟨−3,6⟩.
- Not parallel: no scalar $k$ with v<em>1=kv</em>2 (check ratios: −2/−3=1/6).
- Not perpendicular: v<em>1⋅v</em>2=(−2)(−3)+(1)(6)=6+6=12=0.
- Intersection: solve for $t$ and $s$ with
-x-coordinates: $-1 - 2t = 5 - 3s$,
-y-coordinates: $2 + t = 3 + 6s$. - From y: $t = 1 + 6s$.
- Substitute into x: $-1 - 2(1 + 6s) = 5 - 3s$ → $-3 - 12s = 5 - 3s$ → $-8 = 9s$ → s=−98.
- Then t=1+6(−98)=1−948=−313.
- Intersection point: r1(−313)=(−1−2(−313),2+(−313))=(323,−37).
Practice problems (additional problems for study and quick checks)
- 1) Sketch the curve x=cost,y=sect,0≤t≤π/3.
- Relationship: y=sect=cost1=x1.
- Since t∈[0,3π], cost∈[21,1], so x∈[21,1],y∈[1,2].
- The curve is a portion of the rectangular hyperbola $xy = 1$ restricted to that x-range.
- 2) Does the vector function r(t)=⟨t2,t−2⟩ pass through the point $(49, 7)$ for t≥0?
- If it passes, there would be a nonnegative $t$ with $t^2 = 49$ and $t - 2 = 7$.
- From $t^2 = 49$ we get $t = 7$ (since t≥0).
- Then $t - 2 = 5$, not $7$; so $(49,7)$ is not on the curve.
- 3) Find the vector equation of a line that passes through $(2,5)$ and $(-1,7)$.
- Direction vector: ⟨−1−2,7−5⟩=⟨−3,2⟩.
- Line: r(t)=⟨2,5⟩+t⟨−3,2⟩.
- Alternatively, x(t)=2−3t,y(t)=5+2t.