Advertisement
← Back to Spatial Reasoning · Guides
Cross-Sections
Identifying 2D shapes that result from slicing 3D objects.
Learn
Identifying 2D shapes that result from slicing 3D objects.
Cross-section analysis involves visualizing the 2D shape that appears when a 3D object is cut by a plane. Different cutting angles produce different cross-sections from the same object. This skill is fundamental in medical imaging, engineering, and geology.
cross_section = intersect(3d_object, cutting_plane)
- Cube cut parallel to face: square
- Cylinder cut perpendicular to axis: circle
- Cone cut at angle: ellipse
- Sphere cut by any plane: circle
How to recognize it
- Visualize where the cutting plane intersects the object
- Consider the angle of the cut relative to the object's axis
- Trace the boundary where the plane meets the object's surface
- Identify the resulting 2D shape from that boundary
Common mistakes
- Confusing the cutting angle with the object's orientation
- Not considering curved surfaces produce different sections
- Assuming all cuts of the same object produce the same shape
Step-by-step walkthrough
A cylinder is cut by a plane at a 45-degree angle to its axis. What shape is the cross-section?
- Identify the 3D object: a cylinder has circular ends and a curved surface.
- Understand the cut angle: 45 degrees to the axis means the plane is tilted, not perpendicular.
- A perpendicular cut would produce a circle (same as the cylinder's base).
- An angled cut stretches the circle in one direction, creating an oval shape.
- This stretched circle is mathematically an ellipse.
Answer: An ellipse
Practice guidance
Advertisement