# Prisms in Geometry: Types, Volume, and Surface Area

## TL;DR

A prism is a 3D solid with two identical, parallel polygon bases joined by flat rectangular faces. Its volume is always base area × height and its total surface area is (2 × base area) + (base perimeter × height). This article covers what makes a solid a prism, the main types (triangular, rectangular, pentagonal, and more), and derives the volume and surface-area formulas with worked examples.

## What Is A Prism?

A **prism** is a three-dimensional solid (a polyhedron) with **two identical, parallel faces called bases**, joined by **flat faces that are all parallelograms** — usually rectangles. The two bases are congruent polygons, one a direct copy of the other, and the shape has the same cross-section all the way along its length. Slice a prism anywhere parallel to its bases and you get the same polygon every time.

A prism is named after the shape of its base: a triangular base gives a triangular prism, a rectangular base gives a [rectangular prism](/content/math/geometry/rectangular-prism/index.html). It sits in the same solid-geometry family as the cylinder — which behaves like a prism with a circular base — and contrasts with the pyramids, which taper to a point instead of holding a constant cross-section. You can place all of these in the wider map of [geometric shapes](/content/math/geometry/geometric-shapes/index.html).

## Types Of Prisms

Prisms are sorted three ways. The most useful is by the shape of the base.

**By base shape:**

- **Triangular prism** — triangular bases, three rectangular side faces.
- **Rectangular prism (cuboid)** — rectangular bases; a box is the everyday example.
- **Pentagonal prism** — pentagonal bases, five rectangular side faces.
- **Hexagonal prism** — hexagonal bases; an unsharpened pencil is a classic case.

**By alignment of the bases:**

- **Right prism** — the side faces are perpendicular to the bases, so the prism stands straight.
- **Oblique prism** — the prism leans, and the side faces are slanted parallelograms rather than rectangles.

**By regularity of the base:**

- **Regular prism** — the base is a regular polygon (all sides and angles equal).
- **Irregular prism** — the base is an irregular polygon.

## Volume Of A Prism

Because a prism has the same cross-section throughout, its volume is wonderfully simple:

V = B × h

**Where this comes from:** imagine stacking copies of the base, each paper-thin, until the stack is h tall. You are filling the base area B over a height h, so the volume is base area times height. There is no taper to worry about — that constant cross-section is exactly what makes the formula a plain multiplication.

**Variable glossary:** V is volume, B is the area of one base, h is the height (the distance between the two bases). Volume is in cubic units.

The base area B is computed from whatever polygon the base happens to be:

| Prism            | Base area B                          | Volume V              |
|------------------|--------------------------------------|-----------------------|
| Rectangular      | length × width = l × w            | l × w × h             |
| Triangular       | ½ × base × height of triangle = ½ × b × a | ½ × b × a × h         |
| Pentagonal (regular, side s) | (5/2) × s × apothem            | base area × h        |
| Any prism        | area of the base polygon            | B × h                 |

Note the single multiplication symbol used throughout this article is the cross (×). Whatever base you have, find its area first, then multiply by the prism height.

## Surface Area Of A Prism

The **total surface area** of a prism is the area of all its faces added together: the two bases plus all the rectangular sides.

TSA = (2 × B) + (P × h)

**Where this comes from:** the two identical bases contribute 2 × B. Now unfold the side faces — they flatten into one long rectangle whose height is the prism's height h and whose width is the full distance around the base, the perimeter P. That long rectangle has area P × h, the **lateral surface area**. Add the two pieces.

Lateral surface area = P × h

**Variable glossary:** TSA is total surface area, B is one base's area, P is the perimeter of the base, h is the prism height. Surface area is in square units.

## Examples of Prisms

Every example below uses centimeters for consistency.

### Example 1

**Find the volume of a rectangular prism with length 8 cm, width 3 cm, and height 5 cm.**

V = l × w × h

V = 8 × 3 × 5

V = 24 × 5

**Final answer:** 120 cm³

### Example 2

**A triangular prism has a triangular base with base 6 cm and height 4 cm, and a prism length of 10 cm. A student finds the volume as 6 × 4 × 10. Find the correct volume.**

Take the wrong path first, because forgetting the triangle's ½ is the most common prism error.

Wrong attempt: the student multiplied 6 × 4 × 10 = 240 cm³, treating the triangular base as if it were a rectangle.

The break: the base is a _triangle_, and a triangle's area is ½ × base × height, not base × height. The student computed the area of the rectangle that contains the triangle, which is exactly twice too big.

Correct method: find the triangular base area first.

Base area B = ½ × 6 × 4 = 12 cm²

Now multiply by the prism length.

V = B × h = 12 × 10

**Final answer:** 120 cm³

### Example 3

**Find the total surface area of a rectangular prism with length 5 cm, width 4 cm, and height 3 cm.**

Base area B = 5 × 4 = 20 cm²

Base perimeter P = 2 × (5 + 4) = 18 cm

TSA = (2 × B) + (P × h)

TSA = (2 × 20) + (18 × 3)

TSA = 40 + 54

**Final answer:** 94 cm²

### Example 4

**A triangular prism has a base area of 15 cm² and a length of 9 cm. Find its volume.**

V = B × h

V = 15 × 9

**Final answer:** 135 cm³

### Example 5

**Find the lateral surface area of a prism whose base perimeter is 22 cm and whose height is 7 cm.**

Lateral surface area = P × h

= 22 × 7

**Final answer:** 154 cm²

### Example 6

**A rectangular prism has volume 200 cm³, length 10 cm, and width 4 cm. Find its height.**

Start from V = l × w × h and solve for h.

200 = 10 × 4 × h

200 = 40 × h

h = 200 ÷ 40

**Final answer:** h = 5 cm

## Why "Base Area Times Height" Runs Through All Of Solid Geometry

The prism formula is not just a fact about boxes — it is the template the rest of solid geometry is built on.

Every prism, every [cylinder](/content/math/geometry/cylinder/index.html), holds the same volume rule: the area you are filling, multiplied by how far you fill it. The cylinder is just a prism whose base is a circle, so its volume πr²h is base area πr² times height h — the identical idea. Then the pyramids — including the [tetrahedron](/content/math/geometry/tetrahedron/index.html) — and the [cone](/content/math/geometry/cone/index.html) take that same base-times-height and multiply by one-third, because they taper. Understand "volume = base area × height" once, here, and you have the spine of how mathematicians measure space: pick the cross-section, then sweep it through a distance.

## Tripping Points To Avoid

### Mistake 1: Forgetting the ½ in a triangular base

**Where it slips in:** the volume or base area of a triangular prism.

**Don't do this:** multiply base × height of the triangle without halving. That gives the rectangle around the triangle, twice the real area.

**The correct way:** a triangle's area is ½ × base × height. Find the base area correctly, then multiply by the prism length. The rusher who jumps to "multiply everything" doubles the volume every time.

### Mistake 2: Confusing the prism height with the base's own height

**Where it slips in:** triangular and other non-rectangular prisms, where the _base triangle_ has a height and the _prism_ has a separate length.

**Don't do this:** mix the two h values. The triangle's height is part of computing B; the prism's height (length) is the separate distance between the two bases.

**The correct way:** keep them apart — compute the base area fully first using the base's own measurements, then multiply by the prism's length. The second-guesser who sees two "heights" in one problem stalls here; labelling them differently fixes it.

### Mistake 3: Using base × height for the wrong polygon

**Where it slips in:** pentagonal, hexagonal, or other prisms.

**Don't do this:** apply the rectangular formula l × w × h to a non-rectangular prism.

**The correct way:** the formula V = B × h works for _every_ prism, but B must be the area of the actual base polygon — a pentagon's area for a pentagonal prism, a hexagon's for a hexagonal one.

## Conclusion

- A **prism** has two identical parallel polygon bases joined by flat side faces, with a constant cross-section.
- Prisms are named by base shape ( **triangular, rectangular, pentagonal, hexagonal**) and classed as right or oblique, regular or irregular.
- **Volume = base area × height (B × h)** for every prism, no matter the base.
- **Total surface area = (2 × B) + (P × h)**, where P is the base perimeter.
- The biggest error is forgetting the ½ when the base is a triangle.

## Frequently Asked Questions

**What is a prism in geometry?**  
A 3D solid with two identical, parallel polygon bases joined by flat side faces, with the same cross-section throughout its length.

**What is the formula for the volume of a prism?**  
V = base area × height (B × h). This works for any prism; you just compute B for whatever polygon the base is.

**What are the main types of prisms?**  
By base shape: triangular, rectangular, pentagonal, hexagonal, and more. They are also classed as right or oblique, and regular or irregular.

**What is the difference between a prism and a pyramid?**  
A prism has two identical parallel bases and a constant cross-section; a pyramid has one base that narrows to a single apex. That is why a pyramid's volume carries a factor of one-third and a prism's does not.

**How do you find the surface area of a prism?**  
Total surface area = (2 × base area) + (base perimeter × height). The second term is the lateral surface area — the side faces unfolded into one rectangle.

**Is a cylinder a prism?**  
Not strictly. A cylinder behaves like a prism with a circular base — same volume logic (base area × height) — but a true prism has a polygon base with flat faces, while a triangular pyramid and the cylinder fall outside that definition.
