Cheat Sheet

Area Formulas

A printable, searchable reference of every common 2D area formula — with a one-line explanation of when each applies and where it comes from. Bookmark this page when you’re reviewing geometry homework, prepping for SAT/ACT, or just need to look up "area of an ellipse" fast. Every formula links to the AI-Math step-by-step solver so you can plug in your own numbers.

Quadrilaterals — area formulas

Square

A=s2A = s^2

Side squared. A square is a rectangle with equal sides, so A=lwA = l\cdot w collapses to s2s^2.

Rectangle

A=lwA = l \cdot w

Length × width. The unit-square tiling argument: a rectangle of integer sides l×wl\times w contains exactly lwlw unit squares.

Parallelogram

A=bhA = b \cdot h

Base × perpendicular height — not the slanted side. Cut off the triangle on one end and slide it to the other to turn the parallelogram into a rectangle.

Rhombus

A=12d1d2A = \tfrac{1}{2} d_1 d_2

Half the product of the diagonals — the diagonals bisect each other at right angles, splitting the rhombus into four equal right triangles.

Trapezoid

A=12(a+b)hA = \tfrac{1}{2}(a + b)\,h

Average of the two parallel sides a,ba,b, then times height hh. Glue two copies head-to-tail and you get a parallelogram of base a+ba+b.

Kite

A=12d1d2A = \tfrac{1}{2} d_1 d_2

Same diagonal-product formula as the rhombus — a kite is the more general shape whose diagonals are still perpendicular.

Triangles — by what data you have

Base & height

A=12bhA = \tfrac{1}{2} b h

Half base × height — works for any triangle. Two copies form a parallelogram of base bb and height hh.

Heron's formula (three sides)

A=s(sa)(sb)(sc), s=a+b+c2A = \sqrt{s(s-a)(s-b)(s-c)},\ s = \tfrac{a+b+c}{2}

Use when you have only the three side lengths and no height. ss is the semi-perimeter.

Two sides & included angle (SAS)

A=12absinCA = \tfrac{1}{2} a b \sin C

Drop the altitude from the third vertex; it equals asinCa\sin C, giving the standard 12baseheight\tfrac{1}{2}\cdot\text{base}\cdot\text{height}.

Equilateral triangle

A=34a2A = \tfrac{\sqrt{3}}{4} a^2

Special case of SAS with a=ba=b and C=60C = 60^{\circ}; sin60=32\sin 60^{\circ} = \tfrac{\sqrt{3}}{2} gives the constant 34\tfrac{\sqrt{3}}{4}.

Circles and curved shapes

Circle

A=πr2A = \pi r^2

Pi-r-squared. Comes from integrating the circumference 2πr2\pi r as rr grows from 0 — onion-ring derivation.

Sector of a circle

A=12r2θA = \tfrac{1}{2} r^2 \theta

Angle θ\theta in radians. It’s the fraction θ/(2π)\theta / (2\pi) of the full circle area πr2\pi r^2.

Annulus (ring)

A=π(R2r2)A = \pi (R^2 - r^2)

Outer circle area minus inner circle area — the missing center is subtracted, not measured.

Ellipse

A=πabA = \pi a b

Semi-major axis aa times semi-minor axis bb times π\pi. When a=b=ra = b = r you recover πr2\pi r^2 — a circle is an ellipse with equal axes.

Regular polygons & coordinates

Regular polygon (n sides)

A=12PaA = \tfrac{1}{2} P a

PP is the perimeter, aa is the apothem (center-to-side distance). Decompose into nn congruent triangles and the formula falls out.

Regular hexagon

A=332a2A = \tfrac{3\sqrt{3}}{2} a^2

A regular hexagon is exactly six equilateral triangles of side aa, so 634a2=332a26 \cdot \tfrac{\sqrt{3}}{4} a^2 = \tfrac{3\sqrt{3}}{2} a^2.

Coordinates (Shoelace formula)

A=12i=1n(xiyi+1xi+1yi)A = \tfrac{1}{2}\left|\sum_{i=1}^{n} (x_i y_{i+1} - x_{i+1} y_i)\right|

Plug in the vertex coordinates (xi,yi)(x_i, y_i) in order, wrap around (xn+1=x1x_{n+1}=x_1). Works for any simple polygon — no need to triangulate.