# Trapezoid Area Calculator

- **URL:** https://codeasystem.com/calculators/geometry/trapezoid-area-calculator/
- **Category:** geometry
- **Description:** Find trapezoid area from its two parallel bases and height using the averaged-base formula.
- **Primary output:** Area: 40

## Inputs
- Base a (name: `baseA`, type: number, example: 10)
- Base b (name: `baseB`, type: number, example: 6)
- Height (h) (name: `height`, type: number, example: 5)

## Outputs
- Area: 40
- Average base: 8
- Height: 5

## Formula / methodology
```
A = ½(a + b) × h
```

A trapezoid’s area equals its average base width times its height: half the sum of the parallel sides multiplied by their perpendicular separation. Intuition: it is a rectangle whose top edge was widened or narrowed, so averaging the two edges recovers the mean footprint.

The height must be measured perpendicular to both bases, not along a slanted leg; a common field-measurement mistake that overestimates area.

## Assumptions & limitations
- The two bases entered are the parallel sides.
- Height is the perpendicular distance between them.
- All lengths positive and consistently unit-ed.

## How to use
1. **Identify the parallel sides**; These are your two bases regardless of orientation.
2. **Measure the perpendicular height**; Straight across between the bases, not along a slant.
3. **Read the area**; In squared units; the average-base row shows the intermediate quantity.

## Example
Parallel sides of 10 and 6 separated by a height of 5 give an area of 40 square units; the average base of 8, times 5.

Result for these inputs:

```
Area: 40
```

## About this calculator
### Where trapezoids hide in plain sight

Road cross-sections, retaining-wall faces, roof gables, irrigation channels and hand-drawn area sketches under curves are all trapezoids. The shape is also the workhorse of the trapezoidal rule in numerical integration; approximating curved regions by stacking many thin trapezoids.

### Height versus slant length

Measuring along the slanted leg inflates area because the leg runs diagonal to the bases. If you only know legs and angles, compute the true height first (leg × sin θ); otherwise estimates run high by the cosine factor.

## FAQs
### What if both bases are equal?

Then it is a parallelogram and the formula gracefully reduces to base × height.

### Does the shape need to be symmetric?

No; as long as two sides are parallel and you have the perpendicular height, the slanted legs’ angles are irrelevant.

### Can I use it for sloped land area?

For a plot bounded by two parallel lines, yes; that cross-section is exactly a trapezoid.

### Which sides are “bases”?

Always the two parallel ones. Swapping a and b changes nothing since they are summed.

## Related calculators
- [Rectangle Area & Perimeter Calculator](https://codeasystem.com/calculators/geometry/rectangle-area-perimeter-calculator/)
- [Triangle Area Calculator](https://codeasystem.com/calculators/geometry/triangle-area-calculator/)
- [Concrete Calculator](https://codeasystem.com/calculators/construction/concrete-calculator/)

---
Last updated: 2026-08-23 · Version: 1.0.0 · [HTML version](https://codeasystem.com/calculators/geometry/trapezoid-area-calculator/)
