Cyclic Quadrilateral Area Calculator – Area from Four Side Lengths
A cyclic quadrilateral is a four-sided polygon whose four vertices all lie on a single circle, called the circumscribed circle. This special property gives cyclic quadrilaterals a unique characteristic: their opposite angles always sum to 180°. That symmetry is also what makes it possible to compute the shape's area directly from its four side lengths — no angles, diagonals, or coordinates required.
Brahmagupta's Formula
The calculation is done with Brahmagupta's Formula, discovered by the 7th-century Indian mathematician Brahmagupta. It is a direct generalization of Heron's Formula for triangles, extended to four-sided cyclic figures:
s = (a + b + c + d) / 2 (semiperimeter)
Area = √( (s − a) × (s − b) × (s − c) × (s − d) )
Just like in Heron's Formula, the semiperimeter s is half the total perimeter of the shape. Each term (s − side) measures how much the semiperimeter exceeds that individual side. When all four sides genuinely belong to a valid cyclic quadrilateral, the product of these four terms is non-negative and the square root is a real number.
Worked Example
Suppose a cyclic quadrilateral has sides a = 5, b = 6, c = 7, and d = 8 (in meters):
s = (5 + 6 + 7 + 8) / 2 = 13(s−a) = 8, (s−b) = 7, (s−c) = 6, (s−d) = 5Area = √(8 × 7 × 6 × 5) = √1680 ≈ 40.99 m²
The calculator also derives the circumradius — the radius of the circle that passes through all four vertices — using R = √((ab+cd)(ac+bd)(ad+bc)) / (4 × Area). For the example above, this works out to approximately R ≈ 4.77 m.
Why the Shape Must Be Cyclic
Brahmagupta's Formula only produces the correct area for quadrilaterals that are genuinely cyclic. For a general (non-cyclic) quadrilateral, the same four side lengths can be arranged into many different shapes with different areas — the sides alone do not fix the shape unless it is cyclic. In fact, Brahmagupta's result represents the maximum possible area achievable with those four side lengths, which is why the formula is sometimes used as an upper-bound estimate even for approximately-cyclic shapes.
If the product (s−a)(s−b)(s−c)(s−d) comes out negative, no cyclic quadrilateral exists with those side lengths, and the calculator flags this with an error rather than showing a misleading number.
Unit Handling
All four sides share a single length unit — metric options include mm, cm, m, and km, while imperial options include in, ft, yd, and mi. Internally, every side is converted to meters before the formula is applied, then the resulting area is converted to your chosen squared output unit (for example ft² or km²).
Real-World Applications
Cyclic quadrilaterals appear frequently in surveying, architecture, and engineering:
- Land surveying — plots bounded by four measured edges that happen to be concyclic can have their area computed without needing diagonal measurements.
- Architecture and design — window frames, tile layouts, and structural panels inscribed within circular or arch-based designs.
- Trigonometry coursework — a standard topic bridging Heron's Formula for triangles with more general polygon-area techniques.
- Computer graphics and CAD — validating whether a quadrilateral mesh face is concyclic and computing its area efficiently without trigonometric solvers.
The step-by-step breakdown in the results panel shows every intermediate value — the semiperimeter, each (s − side) term, and the final square root — so you can verify the result by hand or use it as a learning aid alongside the diagram of the quadrilateral inscribed in its circle.