TC
math7 min read

The Geometry Toolkit: Areas, Volumes, and Triangles

How much paint do you need for a wall? How many cubic yards of concrete for a patio? How tall is a tree you cannot reach? Geometry answers all of these questions with a handful of formulas that have remained unchanged for over two thousand years.


Area: measuring flat surfaces

Area is the amount of space inside a two-dimensional boundary, measured in square units. The rectangle formula — A = length × width — is the foundation. Every other area formula is derived from it.

ShapeFormulaNotes
Rectanglel × wBase case
Triangle(b × h) / 2Half a rectangle
Circleπ × r²r = radius
Trapezoid(a + b) × h / 2a, b = parallel sides
Ellipseπ × a × ba, b = semi-axes
Parallelogramb × hh = perpendicular height

Volume: measuring 3D space

Volume extends area into three dimensions. Just as area measures square units, volume measures cubic units. The key insight: most volume formulas are the corresponding area formula multiplied by height (or scaled by a constant).

SolidFormulaNotes
Cubes = side length
Rectangular prisml × w × hThe classic box
Cylinderπ × r² × hCircle area × height
Sphere(4/3) × π × r³Derived by Archimedes
Cone(1/3) × π × r² × h1/3 of a cylinder
Why does 1/3 keep appearing? Cones and pyramids always have 1/3 the volume of their corresponding prism/cylinder. This is not coincidence — it falls directly out of integral calculus, but Archimedes proved it geometrically around 250 BC.

The Pythagorean theorem

For any right triangle: a² + b² = c², where c is the hypotenuse (the side opposite the right angle). This single equation underpins navigation, construction, computer graphics, and even how your phone calculates the distance between two GPS points.

Right triangle with legs 3 and 4:
c² = 3² + 4² = 9 + 16 = 25
c  = 5

Common Pythagorean triples:
(3, 4, 5)    (5, 12, 13)    (8, 15, 17)
(7, 24, 25)  (20, 21, 29)   (9, 40, 41)

Beyond right triangles: Law of Sines and Cosines

Not every triangle has a 90-degree angle. For any triangle, two powerful laws let you solve for unknown sides and angles:

Law of Sines

a / sin(A) = b / sin(B) = c / sin(C). Use it when you know an angle and its opposite side, plus one other piece. It is especially useful for “skinny” triangles where no right angle exists.

Law of Cosines

c² = a² + b² − 2ab × cos(C). This generalises the Pythagorean theorem — when C = 90°, the cosine term vanishes and you get a² + b² = c² back. Use it when you know two sides and the included angle, or all three sides.


Slope and the equation of a line

Slope measures the steepness of a line: m = (y₂ − y₁) / (x₂ − x₁). A slope of 2 means the line rises 2 units for every 1 unit it moves right. Zero slope is horizontal, and undefined slope is vertical.

Once you have the slope and a point, the line equation follows: y − y₁ = m(x − x₁). This point-slope form converts to the familiar y = mx + b with simple algebra.

Pi (π ≈ 3.14159...) is the ratio of a circle's circumference to its diameter. It is irrational — its decimal expansion never ends and never repeats. We have calculated over 100 trillion digits, but for most engineering work, 3.14159 is more than enough.

Practical applications

  • Construction — Area formulas size materials. Volume formulas estimate concrete, soil, and gravel.
  • Design — Slope determines ramp accessibility (ADA requires ≤1:12). Triangle solvers check roof pitch.
  • Navigation — The Pythagorean theorem (extended to spherical coordinates) calculates distances between GPS waypoints.
  • Computer graphics — Every polygon on your screen is made of triangles. The GPU solves thousands of area and intersection calculations per frame.
Geometry is the art of correct reasoning from incorrectly drawn figures. The formulas are exact even when the real world is messy — that is their power.

Try it yourself

Put what you learned into practice with our Area Calculator.