US Trends

how to find the area

To find the area , you always answer two questions:

  1. What shape is it?
  2. What measurements do I know (lengths, height, radius, etc.)?

Once you know those, you plug into the right formula.

Core idea: what “area” means

Area is how much space a 2D shape covers, measured in square units (like cm², m², in²). It’s like asking “how many 1×1 squares can fit inside this shape.”

Most common area formulas

Here are the key ones you’ll use most often:

1. Rectangle

  • Formula: Area=length×width\text{Area}=\text{length}\times \text{width}Area=length×width
  • Example: A 5 cm by 3 cm rectangle has area 5×3=15 cm25\times 3=15,\text{cm}^25×3=15cm2.

2. Square

  • All sides are equal.
  • Formula: Area=side2\text{Area}=\text{side}^2Area=side2
  • Example: Side 4 m → area 42=16 m24^2=16,\text{m}^242=16m2.

3. Triangle

  • Formula: Area=12×base×height\text{Area}=\frac{1}{2}\times \text{base}\times \text{height}Area=21​×base×height
  • Example: Base 10 cm, height 6 cm → 12×10×6=30 cm2\frac{1}{2}\times 10\times 6=30,\text{cm}^221​×10×6=30cm2.

4. Circle

  • Formula: Area=πr2\text{Area}=\pi r^2Area=πr2, where rrr is the radius
  • Example: Radius 3 m → area π×32=9π≈28.27 m2\pi \times 3^2=9\pi \approx 28.27,\text{m}^2π×32=9π≈28.27m2.

5. Parallelogram

  • Formula: Area=base×height\text{Area}=\text{base}\times \text{height}Area=base×height
  • Height is the perpendicular distance between the two parallel sides, not the slanted side.

6. Trapezoid (trapezium)

  • Formula:
    Area=(base1+base2)×height2\text{Area}=\dfrac{(\text{base}_1+\text{base}_2)\times \text{height}}{2}Area=2(base1​+base2​)×height​

  • The bases are the parallel sides.

Quick HTML table for common formulas

html

<table>
  <tr>
    <th>Shape</th>
    <th>Formula for Area</th>
    <th>Key measurements</th>
  </tr>
  <tr>
    <td>Rectangle</td>
    <td>A = length × width</td>
    <td>Length, width</td>
  </tr>
  <tr>
    <td>Square</td>
    <td>A = side²</td>
    <td>Side length</td>
  </tr>
  <tr>
    <td>Triangle</td>
    <td>A = (base × height) / 2</td>
    <td>Base, perpendicular height</td>
  </tr>
  <tr>
    <td>Circle</td>
    <td>A = π × r²</td>
    <td>Radius</td>
  </tr>
  <tr>
    <td>Parallelogram</td>
    <td>A = base × height</td>
    <td>Base, perpendicular height</td>
  </tr>
  <tr>
    <td>Trapezoid</td>
    <td>A = (base₁ + base₂) × height / 2</td>
    <td>Two parallel sides, height</td>
  </tr>
</table>

How to approach any “find the area” problem

  1. Identify the shape (or break a strange shape into basic shapes like rectangles and triangles).
  2. Write down the correct formula.
  3. Make sure measurements match units (all in cm, or all in m, etc.).
  4. Substitute the numbers.
  5. Multiply/divide carefully and attach correct units (cm², m²).

If you tell me the exact shape and the numbers (like “triangle with base 8 cm and height 5 cm”), I can walk through that specific area step-by-step.