Right Circular Cone

If A Right Circular Cone Is Intersected By A Plane

6 min read

If a right circular cone is intersected by a plane, what shape do you get?
It’s a question that pops up in everything from architecture to computer graphics, and it turns out the answer is more varied than you’d think.


What Is a Right Circular Cone?

Picture a funnel, a traffic cone, or a party hat. All of those are right circular cones in disguise.
A right circular cone has a circular base and a single apex that sits directly above the center of that base. The line from the apex to the center of the base is called the generatrix* and the height is the perpendicular distance between the apex and the base plane.

[ x^2 + y^2 = \left(\frac{r}{h}\right)^2 z^2, ]

where (r) is the base radius.


Why It Matters / Why People Care

Understanding how a plane slices a cone is essential when you’re:

  • Designing roofs that need to shed water efficiently.
  • Modeling light in 3D graphics; the intersection tells you where shadows fall.
  • Calculating volumes in engineering problems where a cut creates a frustum.
  • Studying conic sections in pure math; the classic ellipse, parabola, and hyperbola all come from this single operation.

If you ignore the geometry of the intersection, you’ll end up with wrong dimensions, bad renderings, or even structural failures.


How It Works (or How to Do It)

The General Setup

Take a right circular cone defined by

[ x^2 + y^2 = k^2 z^2, ]

where (k = r/h). Now slice it with a plane described by

[ ax + by + cz = d. ]

The intersection curve is found by solving both equations simultaneously. In practice, you usually rotate the coordinate system so the plane becomes (z = \text{constant}) or (y = \text{constant}), which simplifies the algebra.

Types of Sections

The shape of the intersection depends on the angle between the plane and the cone’s axis:

Plane angle Intersection shape When it happens
< angle of the cone’s side Circle Plane cuts through the base but stays parallel to it. In practice,
= angle of the cone’s side Point Plane just grazes the apex.
> angle of the cone’s side Ellipse Plane cuts through the cone but not through the base.
= 90° to the axis Parabola Plane is tangent to the cone’s side, cutting it at a single slant.
> 90° to the axis Hyperbola Plane slices both nappes of the double cone.

So, the same cone can produce a circle, ellipse, parabola, or hyperbola depending on the plane’s tilt.

Deriving the Equation of the Section

Assume the plane is horizontal: (z = z_0). Plugging into the cone’s equation gives

[ x^2 + y^2 = k^2 z_0^2. ]

That’s a circle of radius (k z_0).

If the plane is tilted, say (z = mx + b), substitute into the cone equation:

[ x^2 + y^2 = k^2 (mx + b)^2. ]

Expanding and rearranging yields a quadratic in (x) and (y). Completing the square shows the curve is an ellipse, parabola, or hyperbola depending on the sign of the discriminant.

Special Case: Cutting Through the Apex

When the plane passes through the apex (the origin), the intersection degenerates to a pair of straight lines. Because of that, those lines are the generators* of the cone. In equations, setting (d = 0) in the plane equation forces the intersection to be linear.

If you found this helpful, you might also enjoy what is acupuncture geometry worksheet answers or how many square feet in a quarter acre.


Common Mistakes / What Most People Get Wrong

  1. Assuming every cut gives an ellipse.
    The plane’s orientation matters. A shallow cut can produce a circle; a steep cut can produce a hyperbola.

  2. Mixing up the cone’s apex and the plane’s normal.
    The normal vector of the plane dictates the tilt, not the cone’s axis. Forgetting this leads to wrong angle calculations.

  3. Ignoring the sign of the discriminant.
    When you write the quadratic form of the intersection, the discriminant tells you the conic type. Skipping it means you might think you have an ellipse when it’s actually a hyperbola.

  4. Treating the cone as a solid rather than a surface.
    The intersection with a plane is a curve* on the surface, not a 3‑D shape. Mixing up volume calculations with surface intersections is a common pitfall.


Practical Tips / What Actually Works

  • Use a rotation matrix to align the plane with one of the coordinate axes. That turns a messy equation into a clean one.
    [ R = \begin{bmatrix} \cos\theta & -\sin\theta & 0\ \sin\theta & \cos\theta & 0\ 0 & 0 & 1 \end{bmatrix} ] Rotate the cone and plane, then solve.

  • Check the angle first. Compute the angle (\phi) between the plane’s normal (\mathbf{n}) and the cone’s axis (\mathbf{a}) via
    [ \cos\phi = \frac{\mathbf{n}\cdot\mathbf{a}}{|\mathbf{n}||\mathbf{a}|}. ] Compare (\phi) to the cone’s side angle (\arctan(k)) to predict the section type instantly.

  • Plot before you solve. A quick sketch or a 3‑D graphing tool can reveal whether you’re dealing with a circle or a hyperbola, saving time.

  • Remember the apex case. If the plane equation satisfies (d = 0), the intersection is two lines: (y = \pm k x) (for a cone aligned along (z)). That’s handy for checking your algebra.

  • Use parametric forms for the intersection curve. For an ellipse, you can write
    [ \begin{cases} x = a \cos t\ y = b \sin t\ z = z_0 \end{cases} ] where (a) and (b) come from the quadratic coefficients. This is useful in CAD software.


FAQ

Q: Can a plane cut a right circular cone and produce a triangle?
A: No. The intersection is always a conic section (circle, ellipse, parabola, hyperbola) or a degenerate pair of lines. A triangle would require a solid cut, not a surface intersection.

Q: What if the plane is vertical?
A: A vertical plane that isn’t parallel to the cone’s axis will produce a hyperbola. If it’s parallel to the axis, you’ll get two parallel lines (degenerate case).

Q: How do I find the area of the ellipse formed by the intersection?
A: Once you have the semi‑axes (a) and (b), the area is (\pi a b). Derive (a) and (b) from the quadratic coefficients after aligning the plane.

Q: Does the cone’s height affect the intersection shape?
A: The height scales the cone but doesn’t change the angle of its sides. The shape depends on the angle between the plane and the axis, not on the absolute dimensions.

Q: Is it possible to get a parabola from a right circular cone?
A: Yes, when the plane is parallel to a generator of the cone (i.e., it cuts the cone at the same angle as the side). That’s the classic definition of a parabola.


The next time you see a cone sliced by a plane—whether in a physics problem, a piece of art, or a 3‑D model—remember that the intersection isn’t just a random curve. Consider this: it’s a conic section whose type is dictated by a single angle. With a quick angle check, a rotation trick, and a dash of algebra, you can predict the shape, compute its parameters, and apply that knowledge to design, analysis, or just satisfy your curiosity.

Currently Live

Freshly Posted

Kept Reading These

People Also Read

One More Before You Go


Thank you for reading about If A Right Circular Cone Is Intersected By A Plane. We hope the information has been useful. Feel free to contact us if you have any questions. See you next time — don't forget to bookmark!
SW

swiftle

Staff writer at swiftle.io. We publish practical guides and insights to help you stay informed and make better decisions.

Share This Article

X Facebook WhatsApp
⌂ Back to Home