What Is an Irregular Polygon?
An irregular polygon is a closed two-dimensional shape made of three or more straight sides in which the sides are not all equal in length and the interior angles are not all equal in measure. Even if just one side or one angle differs from the rest, the polygon is irregular.
Contrast that with a regular polygon, where every side has the same length and every interior angle has the same measure (an equilateral triangle, a square, a regular hexagon). A regular polygon needs both conditions; an irregular polygon is anything that fails either. For the wider family of shapes this sits inside, see the geometric shapes overview.
A reader question worth answering up front — is a rectangle an irregular polygon? Yes, usually. A (non-square) rectangle has all $90°$ angles but its sides are not all equal — length differs from width — so it fails the equal-sides condition and counts as irregular. Equal angles alone are not enough; a regular polygon needs equal sides too.
Irregular polygons can be convex (no interior angle exceeds $180°$, no "dents") or concave (at least one interior angle is reflex, giving an inward dent). Both are irregular as long as the sides and angles are not all equal.
Types of Irregular Polygons
Because "irregular" just means "not all equal," most familiar shapes are irregular. The common named ones:
Scalene triangle — all three sides different lengths, all three angles different.
Right triangle — one $90°$ angle; its three sides are generally unequal.
Isosceles triangle — two equal sides, but the third differs, so the angles are not all equal.
Rectangle (non-square) — equal angles ($90°$) but unequal sides.
Irregular quadrilateral — a four-sided shape such as a general trapezoid or kite, with sides and angles that differ.
Irregular pentagon, hexagon, and beyond — any five- or six-sided (or more) shape whose sides and angles are not all equal.
The Angle Rules That Still Apply
Being irregular does not free a polygon from the angle rules — it just removes the "all equal" shortcut.
The sum of the interior angles of any $n$-sided polygon, regular or irregular, is:
$$S = (n - 2) \times 180°.$$
This holds because the sum depends only on the number of sides, not on whether the shape is symmetric — it comes from slicing the polygon into $(n-2)$ triangles (derived in the interior angles article). So an irregular pentagon's five interior angles still add to $540°$; they are simply not all $108°$ apiece. To find a missing interior angle of an irregular polygon, add the known angles and subtract from the total.
The sum of the exterior angles is also still $360°$ for an irregular polygon — exactly as for a regular one. What you cannot do with an irregular polygon is divide a total by $n$ to get one angle, because the angles are unequal. That single-angle shortcut is the only thing regularity buys you.
How to Find the Area of an Irregular Polygon
There is no single neat formula for the area of an irregular polygon the way there is for a regular one. The reliable method is decomposition: break the shape into smaller pieces whose areas you can compute — usually triangles and rectangles — then add them up.
The method, step by step:
Divide the irregular polygon into non-overlapping triangles and rectangles by drawing in extra lines.
Find the area of each piece using its own formula — rectangle area is length $\times$ width, triangle area is $\tfrac{1}{2} \times \text{base} \times \text{height}$.
Add the areas of all the pieces. The total is the area of the irregular polygon.
The split is not unique — you can often decompose the same shape several ways, and every correct decomposition gives the same total area. When a shape sits on a coordinate grid, a second route is the shoelace formula, which computes area directly from the vertex coordinates; for school-level work, decomposition into triangles and rectangles is the more intuitive method and the one we lead with here.
Examples of Irregular Polygons
With the definition, the angle rules, and the decomposition method in place, here is the topic doing real work. The problems build from a quick identification up to an area-by-decomposition solve.
Example 1
Is a shape with sides $5$ cm, $5$ cm, $5$ cm, and $7$ cm a regular or irregular polygon?
Three sides are equal but the fourth ($7$ cm) is not, so the sides are not all equal. The shape is an irregular polygon.
Example 2
Find each interior angle of an irregular quadrilateral whose interior angles are in the ratio $1:2:3:4$.
Wrong attempt. A student reasons: "a quadrilateral, so divide $360°$ by $4$ to get $90°$ each." That treats the shape as regular.
Why it breaks. The angles are given as a ratio $1:2:3:4$ — they are deliberately unequal, so they cannot all be $90°$. Dividing the total by $n$ only works when every angle is the same, which is exactly what regular means. This shape is irregular.
Correct. The four angles still sum to $(4-2)\times 180° = 360°$. Split $360°$ into $1 + 2 + 3 + 4 = 10$ parts: each part is $\dfrac{360°}{10} = 36°$. So the angles are $36°, 72°, 108°, 144°$. (Check: they add to $360°$.)
Example 3
Find the missing interior angle of an irregular pentagon whose other four angles are $100°$, $120°$, $90°$, and $130°$.
The five interior angles sum to $(5-2)\times 180° = 540°$. Add the four known: $100° + 120° + 90° + 130° = 440°$. The fifth is $540° - 440° = 100°$.
Example 4
Find the area of an L-shaped polygon that is an $8$ m $\times 6$ m rectangle with a $3$ m $\times 2$ m rectangular notch cut out of one corner.
Take the full rectangle and subtract the notch (a valid form of decomposition):
$$\text{Area} = (8 \times 6) - (3 \times 2) = 48 - 6 = 42 \text{ m}^2.$$
Example 5
An irregular polygon is split into a rectangle of area $24 \text{ cm}^2$ and two triangles of areas $9 \text{ cm}^2$ and $6 \text{ cm}^2$. Find its total area.
By decomposition, add the pieces: $24 + 9 + 6 = 39 \text{ cm}^2$.
Example 6
A composite garden is a rectangle $10$ m $\times 4$ m with a triangular flower bed of base $4$ m and height $3$ m attached to one short end. Find the total area.
Rectangle area: $10 \times 4 = 40 \text{ m}^2$. Triangle area: $\tfrac{1}{2} \times 4 \times 3 = 6 \text{ m}^2$. Total: $40 + 6 = 46 \text{ m}^2$.
Why Irregular Polygons Matter Beyond the Classroom
Irregular polygons are the geometry of anything not mass-produced — which is most of the physical world.
Land surveying and real estate. Plots of land are almost never neat rectangles; their area is found by splitting the boundary into triangles, the same decomposition method, scaled up.
Architecture and floor plans. A house rarely has a single rectangular footprint; architects compute floor area by breaking an irregular plan into rectangles and adding them — exactly Example 4.
Geography and mapping. The area of a state, a lake, or a forest is an irregular-polygon problem, handled today by the shoelace formula running on GPS-traced vertex coordinates.
Computer graphics. Any 3D model is built from irregular polygon meshes; rendering and physics engines treat each face as an irregular polygon to compute lighting and collisions.
For a Grade 8 student, irregular polygons are where geometry stops being about a handful of perfect shapes and becomes a tool for measuring whatever the real world hands you — by breaking the unfamiliar into the familiar.
Where Students Trip Up on Irregular Polygons
Mistake 1: Dividing a total by $n$ to find one angle
Where it slips in: Finding one interior angle of an irregular polygon, the student divides the angle sum by the number of sides.
Don't do this: Compute $\dfrac{540°}{5} = 108°$ for "each" angle of an irregular pentagon.
The correct way: Dividing the sum by $n$ only works for regular polygons, where the angles are equal. For an irregular polygon, add the known angles and subtract from the sum $(n-2)\times 180°$ to find a missing one.
Mistake 2: Forgetting the angle-sum rule still applies
Where it slips in: Because the shape is "irregular," a student assumes none of the polygon rules hold and is unsure how to start.
Don't do this: Treat an irregular polygon as having no predictable angle total.
The correct way: The interior-angle sum is still $(n-2)\times 180°$ and the exterior-angle sum is still $360°$ — irregularity removes only the equal-angle shortcut, not the totals. The second-guesser who abandons every rule for irregular shapes loses the one tool that still works.
Mistake 3: Overlapping pieces when decomposing for area
Where it slips in: Splitting the shape into triangles and rectangles, the student draws pieces that overlap or leave a gap.
Don't do this: Let two sub-rectangles share a region, so its area is counted twice.
The correct way: The pieces must be non-overlapping and cover the whole shape — no double-counting, no missing slivers. Sketch the cut lines first and check that every part of the polygon belongs to exactly one piece before computing.
Key Takeaways
Irregular polygons are closed shapes whose sides are not all equal and whose angles are not all equal.
Most real-world shapes — scalene triangles, non-square rectangles, general quadrilaterals — are irregular.
The interior-angle sum is still $(n-2)\times 180°$ and the exterior-angle sum is still $360°$; only the divide-by-$n$ shortcut needs a regular polygon.
Find the area by decomposition: split into triangles and rectangles, compute each, and add.
The most common mistake is dividing a total by $n$ on an irregular shape, or overlapping pieces when decomposing for area.
Practice These Problems to Solidify Your Understanding
An irregular hexagon has five interior angles of $100°$, $130°$, $120°$, $140°$, and $110°$. Find the sixth.
Find the area of an L-shape that is a $12$ m $\times 5$ m rectangle with a $4$ m $\times 2$ m rectangular notch removed.
The interior angles of an irregular quadrilateral are in the ratio $2:3:4:6$. Find all four angles.
Answer to Question 1: hexagon sum is $(6-2)\times 180° = 720°$; sixth angle $= 720° - 600° = 120°$. Answer to Question 2: $(12 \times 5) - (4 \times 2) = 60 - 8 = 52 \text{ m}^2$. Answer to Question 3: $15$ parts in $360°$ give $24°$ each, so $48°, 72°, 96°, 144°$. If Question 3 gave $90°$ each, revisit Mistake 1.
Want a live Bhanzu trainer to walk your child through irregular polygons and finding area by decomposition? Book a free demo class — online globally.
Was this article helpful?
Your feedback helps us write better content