Two words we lean on constantly, so let's pin them down in plain language before any question:
Also note the letter r: throughout, r is the radius of the circle x2+y2=r2 — a fixed positive number, the distance from the centre to every point of the circle.
The picture that unlocks the whole page is the auxiliary circle: the circle of radius a drawn around the ellipse. The eccentric angle θ is measured there, then the point is pushed straight down by the factor b/a to land on the ellipse — which is exactly why the two angles disagree.
True or false: For the circle x=rcosθ,y=rsinθ (where r>0 is the radius), the parameter θ is the actual geometric angle to the point.
True. The point sits at distance r in the direction θ, so its quadrant-aware direction atan2(rsinθ,rcosθ)=θ — dial and protractor agree exactly, in every quadrant.
True or false: For the ellipse x=acosθ,y=bsinθ, θ equals the geometric angle to the point.
False. The geometric direction is atan2(bsinθ,acosθ). Because the ellipse's y-coordinate is the circle's y scaled by the factor b/a (a vertical affine scaling, not a rotation), the ratio y/x changes from tanθ to abtanθ — so the measured angle shifts even though x is untouched. Thus θ is the eccentric angle, not the protractor angle. See Eccentric angle and auxiliary circle and the figure above.
True or false: (acosθ,bsinθ) can parametrize a hyperbola if we just pick a,b cleverly.
False. No choice of a,b makes a sum of squares into a difference; you'd need cos2−sin2 which is not an identity. The minus sign forces sec2−tan2=1 instead.
True or false: As t runs over all reals, (at2,2at) traces the entire parabola y2=4ax.
True.y=2at takes every real value once, and each fixes x=at2≥0 uniquely — every point of the parabola is hit exactly once, no gaps.
True or false: In x=asecθ,y=btanθ, letting θ range over [0,2π) covers both branches of the hyperbola.
True.secθ≥1 on (−2π,2π) (right branch) and secθ≤−1 on (2π,23π) (left branch), so both are reached — provided θ=2π,23π where sec blows up. The figure below shows how the point jumps to the left branch as θ crosses 2π.
True or false: x=acosht,y=bsinht covers the whole hyperbola.
False. Since cosht≥1 always, x≥a>0, so only the right branch is traced. The left branch needs x=−acosht. See Hyperbolic functions.
True or false: A parametric form is valid only if substituting it back gives the Cartesian equation for some value of the parameter.
False. It must hold identically — for every value in the range. "For some value" would be satisfied by a single point, not the whole curve.
True or false: The circle is just the special case a=b of the ellipse parametrization.
True. Set a=b=r: (rcosθ,rsinθ), and the auxiliary circle coincides with the ellipse, so the eccentric angle becomes the geometric angle again.
True or false: On a parabola y2=4ax, two points t1 and t2 with t2=−t1 are reflections across the axis.
True. They share x=at2 but have y=±2at, so they sit symmetrically above and below the x-axis — the axis of the parabola.
True or false: The parabola's tangent slope t1 works at every point, including the vertex t=0.
False. At t=0, t1 is undefined — because the tangent at the vertex (0,0) is vertical (infinite slope). dtdx=2at=0 there, so the slope dx/dtdy/dt divides by zero; the curve is momentarily going straight up. Every other t gives a finite, valid slope.
Find the error: "Ellipse 9x2+4y2=1, so x=9cosθ,y=4sinθ."
You need a=9=3 and b=4=2, not 9 and 4. The parametrization uses a,b (semi-axis lengths), and the denominators are a2,b2 — so x=3cosθ,y=2sinθ.
Find the error: "Parabola: point is (t2,2t) for every parabola."
The constant a is missing. Correct is (at2,2at); check: y2=4a2t2=4a⋅at2=4ax. Dropping a only works for the specific case a=1.
Find the error: "For hyperbola a2x2−b2y2=1 take x=atanθ,y=bsecθ."
The roles are swapped. That gives tan2−sec2=−1, not +1, so it satisfies the conjugate hyperbola b2y2−a2x2=1. You want x=asecθ,y=btanθ.
Find the error: "Tangent to y2=4ax at t: differentiate to get dxdy=dx/dtdy/dt=2a2at=t."
The ratio is upside down: slope =dx/dtdy/dt=2at2a=t1, not t. Numerator is dy/dt=2a, denominator dx/dt=2at — and this is undefined at t=0 (vertical tangent at the vertex). See Parametric differentiation.
Find the error: "Eliminate parameter from x=asecθ,y=btanθ: since secθ=x/a and tanθ=y/b, we get a2x2+b2y2=1."
The identity is sec2θ−tan2θ=1, so it must be a minus: a2x2−b2y2=1. Copying the ellipse's plus sign silently converts a hyperbola into an ellipse.
Find the error: "θ=2π is fine for x=asecθ; it just gives x=0."
sec2π=cos(π/2)1=01 is undefined, not 0. That's why θ=2π is excluded — it corresponds to the direction toward the asymptote where the point runs off to infinity.
Find the error: "For an ellipse, the point at θ=4π lies on the line y=x from the centre."
Only if a=b. For a=b the point is (a/2,b/2), whose geometric direction is atan2(b/2,a/2)=arctan(b/a)=45∘. Equal eccentric angle does not mean equal geometric angle.
Why do we use a trig identity rather than solving the Cartesian equation for y?
Solving for y gives y=±b1−x2/a2 — a two-valued, square-root mess with sign cases. A trig identity gives a single clean point for each θ and automatically stays on the curve for all θ.
Why does the ellipse use sin/cos but the hyperbola use sec/tan?
The ellipse equation is a sum of squares =1, matched by cos2+sin2=1; the hyperbola is a difference of squares =1, matched by sec2−tan2=1. The identity's sign structure must mirror the conic's.
Why is y=2at (not y=t) the standard choice for the parabola?
Concretely compare the tangent lines. With y=2at you get the point (at2,2at), slope t1, and the tangent collapses to the clean ty=x+at2. With y=t you'd get the point (4at2,t), slope t2a, and the tangent yt=2ax+2t2 — carrying stray 4a's and halves. Both describe the same curve, but the 2a scaling is chosen precisely so the 4 in y2=4ax cancels and the tangent formula has no leftover constants.
Why does parametric differentiation beat implicit differentiation for finding a tangent slope?
With one parameter, dxdy=dx/dtdy/dt is a plain quotient of ordinary derivatives — no need to solve an implicit relation between x and y or track ± branch signs.
Why does the hyperbolic form cosh/sinh only give one branch while sec/tan gives both?
cosht never dips below 1, so x=acosht stays ≥a (right branch only). But secθ swings through both ≥1 and ≤−1 as θ crosses 2π, so x reaches both + and − sides.
Why does eliminating the parameter prove a parametric form is correct?
If you recover the Cartesian equation as an identity (true for all parameter values), you've shown every parametric point satisfies the curve's defining equation — which is exactly the definition of "lies on the curve."
Why is the eccentric angle defined via the auxiliary circle rather than the ellipse itself?
The auxiliary circle (radius a) gives an honest geometric angle; the ellipse point is that circle point pushed vertically by b/a. Borrowing the circle's angle keeps a clean geometric meaning even though it's no longer the direction to the ellipse point. See Eccentric angle and auxiliary circle.
(a⋅0,2a⋅0)=(0,0) — the vertex of the parabola. The parameter passes smoothly through the tip, but note its tangent there is vertical (slope t1 undefined), so it is a special point for slopes.
How does tanθ change sign as θ crosses 2π, and why does that matter for the hyperbola point?
Just below 2π, tanθ→+∞; just above, tanθ→−∞ (it flips sign because cosθ flips from 0+ to 0−). Meanwhile secθ flips from +∞ to −∞, so the point (asecθ,btanθ) leaps from the far top-right of the right branch to the far bottom-left of the left branch. That sign flip is exactly how one continuous dial reaches both branches — see the s03 figure.
What happens to (asecθ,btanθ) as θ→2π−?
Both secθ and tanθ→+∞, and their ratio secθtanθ=sinθ→1, so the point races off to infinity along the asymptote of slope b/a. This is the limiting behaviour, not an actual point.
Does θ=0 give a valid ellipse point, and where?
Yes: (acos0,bsin0)=(a,0) — the right vertex on the major axis. No degeneracy; it's a perfectly ordinary boundary point.
Do θ and θ+2π give the same point on the ellipse (acosθ,bsinθ)?
Yes — cos and sin are 2π-periodic, so (acos(θ+2π),bsin(θ+2π))=(acosθ,bsinθ). The ellipse is traced once per full turn, so its natural range is the half-open [0,2π), exactly like the circle.
What conic does x=acosθ,y=bsinθ become when b→0?
It collapses to the segment y=0,−a≤x≤a traced back and forth — a degenerate ellipse (a line segment). The "curve" has zero height, so it's no longer a genuine 2D conic.
For the circle, do θ and θ+2π give the same point?
Yes — cos,sin are 2π-periodic, so the parameter wraps: the circle is traced once per full turn, which is why the range is written [0,2π) (half-open, to avoid repeating the start point).
Can two different parameter values on the same hyperbola give the same point in the sec/tan form?
Within one period [0,2π)∖{2π,23π}, no — each valid θ gives a distinct point. But θ and θ+2π repeat, exactly as with the circle, so the range must be restricted to one period.
Is x=acosht ever equal to x=−a for real t?
No.cosht≥1 so acosht≥a>0 always — confirming the left vertex (−a,0) is unreachable by this form and belongs to the missing branch.
Recall One-line summary of every trap
Sum of squares → sin/cos → geometric angle only for the circle; difference of squares → sec/tan (both branches, via the sign flip of tan at 2π) or cosh/sinh (right branch only); parabola is direct with the a riding along (vertical tangent at the vertex t=0); and a parametric form is right ⟺ eliminating the parameter reproduces the Cartesian equation identically.