Mastering Parametric Curve Sketching | 参数方程曲线草图的绘制技巧

📚 Mastering Parametric Curve Sketching | 参数方程曲线草图的绘制技巧

Parametric equations offer a powerful way to describe curves that cannot be captured by a simple function y = f(x). Instead of plotting y directly against x, we introduce a third variable, usually t, and express both x and y in terms of it. Sketching such curves requires a blend of algebraic insight, geometric intuition, and careful point-plotting.

参数方程为描述那些无法用简单函数 y = f(x) 表达的曲线提供了强大工具。我们不再直接绘制 y 随 x 的变化,而是引入第三个变量(通常为 t),将 x 和 y 都表示为它的函数。绘制这类曲线需要代数洞察、几何直觉与精细描点的结合。


1. The Core Idea of Parametric Curves | 参数方程曲线的核心思想

A parametric curve is defined by a pair of equations, typically x = f(t) and y = g(t), where t varies over an interval. Each value of t gives one point (x, y) on the plane; as t changes, the point traces out the curve. The direction of increasing t matters, as it gives the orientation of the curve.

参数曲线由一对方程定义,通常为 x = f(t) 和 y = g(t),其中 t 在某个区间内变化。每一个 t 值对应平面上的一个点 (x, y);随着 t 变化,该点描绘出曲线轨迹。t 增大时点的运动方向称为曲线的方向,这一点非常重要。

For example, the unit circle can be described by x = cos t, y = sin t for 0 ≤ t < 2π. This parametric representation is more natural than the implicit form x² + y² = 1 because it also tells us how the curve is traversed.

例如,单位圆可以用 x = cos t, y = sin t(0 ≤ t < 2π)来描述。这种参数表示比隐式形式 x² + y² = 1 更为自然,因为它同时告诉我们曲线是如何被遍历的。


2. Point Plotting with a Table of Values | 利用数值表描点

The most direct method for sketching a parametric curve is to select a range of t-values, compute the corresponding x and y, and plot the resulting points in order. This approach works well for unfamiliar curves and provides immediate visual feedback.

绘制参数曲线最直接的方法是选取一系列 t 值,计算对应的 x 和 y,并按顺序描出所得点。这种方法对不熟悉的曲线非常有效,并能提供即时的视觉反馈。

For the curve x = t² − 2, y = t + 1, take t from −3 to 3:

对于曲线 x = t² − 2, y = t + 1,取 t 从 −3 到 3:

t −3 −2 −1 0 1 2 3
x 7 2 −1 −2 −1 2 7
y −2 −1 0 1 2 3 4

Plotting these points reveals a parabola opening to the right. Notice that as t increases from −3 to 3, the curve is traced from the upper-left branch through the vertex at (−2, 1), then to the lower-right branch. The order of points tells us the orientation.

描出这些点后可以发现这是一条开口向右的抛物线。注意随着 t 从 −3 增大到 3,曲线从左上分支经过顶点 (−2, 1),再延伸到右下分支。点的顺序揭示了曲线的方向。


3. Eliminating the Parameter | 消去参数

Often the most efficient way to understand a parametric curve is to eliminate t and obtain a Cartesian equation relating x and y directly. If the parametric equations are linear in t, solve for t from one equation and substitute into the other.

理解参数曲线最有效的方法通常是消去 t,得到直接联系 x 和 y 的直角坐标方程。如果参数方程关于 t 是线性的,可以从一个方程解出 t,再代入另一个方程。

Example: x = 2t + 1, y = t − 3. From the first equation, t = (x − 1)/2. Substituting into y gives y = (x − 1)/2 − 3, which simplifies to y = (x − 7)/2, a straight line with slope ½ and y-intercept −3.5.

例:x = 2t + 1, y = t − 3。由第一个方程可得 t = (x − 1)/2,代入 y 得 y = (x − 1)/2 − 3,化简为 y = (x − 7)/2,即斜率为 ½、y 截距为 −3.5 的直线。

For trigonometric parametric equations, use Pythagorean identities. If x = a cos t and y = b sin t, then cos t = x/a and sin t = y/b. Using cos²t + sin²t = 1 gives:

对于三角函数参数方程,可使用毕达哥拉斯恒等式。若 x = a cos t, y = b sin t,则 cos t = x/a,sin t = y/b。利用 cos²t + sin²t = 1 可得:

x²/a² + y²/b² = 1

which is the standard equation of an ellipse. This tells us the curve is an ellipse centered at the origin, but we must also note the domain restrictions: x ranges from −a to a and y from −b to b.

这是椭圆的标准方程。由此可知曲线是以原点为中心的椭圆,但同时必须注意定义域限制:x 在 −a 到 a 之间,y 在 −b 到 b 之间。


4. Using dy/dx to Find Tangents | 利用 dy/dx 求切线

The slope of the tangent to a parametric curve is found using the chain rule. Since dy/dx = (dy/dt) / (dx/dt), provided dx/dt ≠ 0, we can compute the gradient at any point without eliminating t.

参数曲线切线的斜率由链式法则求出。因为 dy/dx = (dy/dt) / (dx/dt),只要 dx/dt ≠ 0,我们就能在无需消去 t 的情况下计算任意点的斜率。

Consider x = t², y = t³. Then dx/dt = 2t and dy/dt = 3t², so:

考虑 x = t², y = t³。则 dx/dt = 2t,dy/dt = 3t²,因此:

dy/dx = 3t² / (2t) = 3t / 2, for t ≠ 0

At t = 2, the slope is 3(2)/2 = 3, and the point is (4, 8). The tangent line is y − 8 = 3(x − 4), or y = 3x − 4. At t = 0, however, both dx/dt and dy/dt are zero, so the formula breaks down; this is a special point called a cusp.

在 t = 2 处,斜率为 3(2)/2 = 3,该点为 (4, 8)。切线方程为 y − 8 = 3(x − 4),即 y = 3x − 4。然而在 t = 0 处,dx/dt 和 dy/dt 都为零,公式失效;这是一个称为尖点(cusp)的特殊点。


5. Stationary Points and Critical Analysis | 驻点与临界分析

A stationary point on a parametric curve occurs where dy/dx = 0, which means dy/dt = 0 (assuming dx/dt ≠ 0). These are points where the tangent is horizontal, i.e., the curve is momentarily flat. To find where the tangent is vertical, we instead set dx/dt = 0.

参数曲线上的驻点出现在 dy/dx = 0 处,即 dy/dt = 0(假设 dx/dt ≠ 0)。这些是切线水平、曲线暂时平坦的点。若要求竖直切线,则令 dx/dt = 0。

For the curve x = t² − 2t, y = t³ − 3t, we compute dx/dt = 2t − 2 and dy/dt = 3t² − 3. Setting dy/dt = 0 gives 3(t² − 1) = 0, so t = ±1. At t = 1, x = −1, y = −2; at t = −1, x = 3, y = 2. Both are horizontal tangents. Setting dx/dt = 0 gives t = 1, so the point (−1, −2) is both horizontal and vertical? No—check carefully.

对于曲线 x = t² − 2t, y = t³ − 3t,计算得 dx/dt = 2t − 2,dy/dt = 3t² − 3。令 dy/dt = 0 得 3(t² − 1) = 0,故 t = ±1。当 t = 1 时,x = −1, y = −2;当 t = −1 时,x = 3, y = 2。两者都是水平切线。令 dx/dt = 0 得 t = 1,所以点 (−1, −2) 同时是水平和竖直?不,需仔细检查。

At t = 1, both dx/dt and dy/dt are zero, so the derivative dy/dx is indeterminate at that point. We must analyze the behavior near t = 1 using limits or by examining the curve’s shape around that point. In fact, the curve has a self-intersection (a loop) at that location.

在 t = 1 处,dx/dt 和 dy/dt 同时为零,因此该点 dy/dx 无法确定。我们必须利用极限分析 t = 1 附近的行为,或考察该点周围的曲线形状。事实上,曲线在该位置有一个自交点(环)。


6. Concavity with the Second Derivative | 利用二阶导数判断凹凸性

The second derivative d²y/dx² tells us about concavity. For parametric curves, we compute it using the formula:

二阶导数 d²y/dx² 给出凹凸性信息。对于参数曲线,我们使用公式:

d²y/dx² = (d/dt (dy/dx)) / (dx/dt)

Here we treat dy/dx as a function of t, differentiate it with respect to t, then divide by dx/dt. This is the second derivative with respect to x, not with respect to t.

这里我们把 dy/dx 看作 t 的函数,先对 t 求导,再除以 dx/dt。结果是关于 x 的二阶导数,而不是关于 t 的。

Example: x = t², y = t³. We already found dy/dx = 3t/2. Then d/dt (dy/dx) = 3/2. Dividing by dx/dt = 2t gives d²y/dx² = (3/2) / (2t) = 3/(4t).

例:x = t², y = t³。已知 dy/dx = 3t/2。则 d/dt (dy/dx) = 3/2。除以 dx/dt = 2t 得 d²y/dx² = (3/2) / (2t) = 3/(4t)。

For t > 0, the curve is concave up; for t < 0, it is concave down. At t = 0 the second derivative is undefined, consistent with the cusp observed earlier.

当 t > 0 时,曲线上凹;当 t < 0 时,曲线下凹。在 t = 0 处二阶导数无定义,这与之前观察到的尖点一致。


7. Symmetry and Periodicity | 对称性与周期性

Before plotting many points, check for symmetry. If x is an even function of t and y is an odd function of t, the curve is symmetric about the x-axis. If x is odd and y is even, the curve is symmetric about the y-axis. If both are even, the curve is symmetric about both axes.

在描点前先检查对称性。如果 x 是 t 的偶函数而 y 是 t 的奇函数,则曲线关于 x 轴对称;如果 x 是奇函数而 y 是偶函数,则曲线关于 y 轴对称;如果两者均为偶函数,则曲线关于两个轴都对称。

Take x = cos t, y = sin 2t. Since cos(−t) = cos t and sin 2(−t) = −sin 2t, the curve is symmetric about the x-axis. You can halve the t-interval and reflect, saving significant effort.

以 x = cos t, y = sin 2t 为例。因为 cos(−t) = cos t,sin 2(−t) = −sin 2t,所以曲线关于 x 轴对称。你只需绘制一半 t 区间,再进行反射,可省去大量工作。

Periodicity also helps. If both x(t) and y(t) have a common period T, then the curve repeats after T. For example, x = sin t, y = cos 2t has period 2π because both functions share this period. Often you can restrict attention to one period.

周期性同样有帮助。如果 x(t) 和 y(t) 有公周期 T,则曲线在 T 后重复。例如 x = sin t, y = cos 2t 的周期为 2π,因为两个函数共享这个周期。通常只需考虑一个周期即可。


8. Asymptotes and Infinite Behavior | 渐近线与无穷行为

Some parametric curves exhibit asymptotes as t approaches certain values or as t tends to ±∞. To find horizontal asymptotes, examine the limit of y as t → ±∞ while x also tends to ±∞; to find vertical asymptotes, look for values where x → constant while y → ±∞.

当 t 接近某些值或 t → ±∞ 时,部分参数曲线会呈现渐近线。求水平渐近线时,考察 t → ±∞ 时 y 的极限,并同时观察 x 是否趋于 ±∞;求竖直渐近线时,寻找 x → 常数而 y → ±∞ 的情况。

Consider a curve like x = 1/t, y = t². As t → 0⁺, x → +∞ and y → ∞; as t → 0⁻, x → −∞ and y → ∞. There is no finite asymptote in the traditional sense. More interesting is x = t, y = t/(t − 1): as t → ±∞, y → 1, so the horizontal line y = 1 is an asymptote.

考虑曲线 x = 1/t, y = t²。当 t → 0⁺ 时,x → +∞ 且 y → ∞;当 t → 0⁻ 时,x → −∞ 且 y → ∞。此处没有传统意义上的有限渐近线。更有趣的是 x = t, y = t/(t − 1):当 t → ±∞ 时,y → 1,所以水平线 y = 1 是渐近线。

For rational parametric equations, cross-multiply to find relationships. If you eliminate t and obtain a rational function, the asymptotes of the Cartesian form apply. Always verify by taking limits in the parametric form.

对于有理参数方程,可通过交叉相乘寻找关系。若消去 t 后得到有理函数,则直角坐标形式的渐近线适用。务必通过参数形式的极限进行验证。


9. Special Features: Cusps, Loops, and Self-Intersections | 特殊特征:尖点、环与自交点

When both dx/dt = 0 and dy/dt = 0 at the same value of t, the point is called a singular point. Depending on the behavior of the derivatives as t approaches this value, the curve may have a cusp, a loop, or a self-intersection.

当 dx/dt = 0 与 dy/dt = 0 在同一个 t 值同时成立时,该点称为奇异点。根据导数在该 t 值附近的符号变化,曲线可能形成尖点、环或自交点。

For a cusp, the tangent direction changes abruptly; the classic example is the semicubical parabola x = t², y = t³. For a self-intersection, the curve passes through the same point for two different t-values. To find such points, solve x(t₁) = x(t₂) and y(t₁) = y(t₂) with t₁ ≠ t₂.

尖点的特征是切线方向急剧改变,经典例子是半三次抛物线 x = t², y = t³。自交点则指曲线在两个不同 t 值下经过同一点。求这类点需解 x(t₁) = x(t₂) 且 y(t₁) = y(t₂),其中 t₁ ≠ t₂。

Example: For x = t², y = t(t² − 1), check whether any two t-values give the same point. Setting t₁² = t₂² gives t₂ = −t₁, then y becomes t₁(t₁² − 1) and −t₁(t₁² − 1); equality requires t₁(t₁² − 1) = 0, yielding t₁ = 0 or t₁ = ±1. At t = ±1, x = 1, y = 0, so (1, 0) is a self-intersection.

例:对于 x = t², y = t(t² − 1),检查是否存在两个不同的 t 值对应同一点。令 t₁² = t₂² 得 t₂ = −t₁,则 y 分别为 t₁(t₁² − 1) 和 −t₁(t₁² − 1);相等要求 t₁(t₁² − 1) = 0,得到 t₁ = 0 或 t₁ = ±1。当 t = ±1 时,x = 1, y = 0,因此 (1, 0) 是一个自交点。


10. Worked Example: A Complete Sketch | 完整示例:逐步绘制曲线

Let us sketch the curve given by x = cos t, y = sin 2t, for 0 ≤ t ≤ 2π. This curve is known as a Lissajous figure and has a distinctive figure-eight shape.

我们来绘制由 x = cos t, y = sin 2t(0 ≤ t ≤ 2π)给出的曲线。该曲线是利萨如图形的一种,具有独特的“8”字形。

First, note that x is even and y is odd in t, so the curve is symmetric about the x-axis. Also, both functions have period 2π, so we only need t in one full period. We compute key points:

首先,x 是 t 的偶函数,y 是奇函数,因此曲线关于 x 轴对称。同时两个函数的周期均为 2π,因此只需考虑一个完整周期。我们计算关键点:

t 0 π/4 π/2 3π/4 π 5π/4 3π/2 7π/4
x 1 √2/2 ≈ 0.71 0 −0.71 −1 −0.71 0 0.71
y 0 1 0 −1 0 1 0 −1

Next, compute dx/dt = −sin t and dy/dt = 2 cos 2t. Setting dy/dt = 0 gives cos 2t = 0, so t = π/4, 3π/4, 5π/4, 7π/4. At these t-values, the tangent is horizontal. Setting dx/dt = 0 gives t = 0, π, 2π, where the tangent is vertical.

接着,计算 dx/dt = −sin t,dy/dt = 2 cos 2t。令 dy/dt = 0 得 cos 2t = 0,故 t = π/4, 3π/4, 5π/4, 7π/4。在这些 t 值处切线水平。令 dx/dt = 0 得 t = 0, π, 2π,此处切线竖直。

Plotting these points and connecting them smoothly while respecting the horizontal and vertical tangents gives a figure-eight that crosses itself at the origin. The curve starts at (1, 0), moves upward to (0.71, 1), then down through (0, 0) to (−0.71, −1), reaches (−1, 0), and retraces symmetrically. The complete orbit winds around twice, explaining the self-intersection at the origin.

将这些点描出,并在顺应水平与竖直切线的前提下平滑连接,就得到在原点自交的“8”字形。曲线从 (1, 0) 出发,上移至 (0.71, 1),经 (0, 0) 下降至 (−0.71, −1),到达 (−1, 0),再对称地返回。完整轨迹绕行两圈,这就解释了原点处的自交。


11. Common Pitfalls and How to Avoid Them | 常见误区及避免方法

One common mistake is forgetting to track the orientation of the curve. The same set of points can be traced in multiple ways if the parametrization changes. Always annotate the direction of increasing t on your sketch.

常见误区之一是忘记跟踪曲线的方向。相同的点集在参数化改变时可以以多种方式被绘制。务必在草图上标注 t 增大的方向。

Another pitfall is ignoring where dx/dt = 0. At such points the slope may be vertical, or the curve may have a cusp. Attempting to compute dy/dx there leads to division by zero. Instead, examine the limits from both sides.

另一个误区是忽视 dx/dt = 0 的位置。在这些点处,切线可能是竖直的,或曲线可能有尖点。直接计算 dy/dx 会导致除以零。相反,应考察两侧的极限。

Students also often restrict the t-interval incorrectly. If the parameter involves trigonometric functions, ensure the interval covers the full period needed to complete the curve. Truncating the interval may produce only a partial sketch.

学生还常常错误地限制 t 的区间。如果参数涉及三角函数,务必确保区间覆盖完成曲线所需的完整周期。截断区间可能只会得到部分图形。


12. Strategic Checklist for Parametric Sketching | 参数绘图策略清单

A reliable sketching strategy combines algebra, calculus, and geometry. Follow this sequence to avoid missing critical features.

可靠的绘图策略应结合代数、微积分与几何。按以下顺序操作,可避免遗漏关键特征。

  • Identify the domain of t and any symmetries or periodicities in x(t) and y(t).
  • 消除 t 尝试得到直角坐标方程,以判断曲线的整体类型(直线、圆、椭圆、抛物线等)。
  • Compute key points: t = 0, endpoints, and any values where x or y reaches a local maximum or minimum.
  • Find horizontal tangents by setting dy/dt = 0 and vertical tangents by setting dx/dt = 0.
  • Analyze singular points where both derivatives vanish, checking for cusps or self-intersections.
  • Plot the key points, draw smooth curves through them, and indicate the direction of increasing t.

在整个过程中,适时运用导数检验凹凸性与驻点,从而确保曲线形状的准确性。多练习以熟悉各种常见曲线类型,比如摆线、星形线和玫瑰线。


Published by TutorHao | Mathematics Revision Series | aleveler.com

更多咨询请联系16621398022(同微信)

Comments

屏轩国际教育cambridge primary/secondary checkpoint, cat4, ukiset,ukcat,igcse,alevel,PAT,STEP,MAT, ibdp,ap,ssat,sat,sat2课程辅导,国外大学本科硕士研究生博士课程论文辅导

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Discover more from aleveler.com

Subscribe now to keep reading and get access to the full archive.

Continue reading