Compute every essential dimension of a regular hexagon: circumradius, inradius, area, perimeter, short & long diagonals, and interior angles. The regular hexagon is unique because its side length equals the circumradius — a property leveraged in nature and engineering. Instant results, live diagram.
A regular hexagon is a six‑sided polygon with all sides equal and all interior angles equal (120° each). It is one of the most geometrically rich shapes: the side length equals the circumradius, making it uniquely constructible with a compass and straightedge. Regular hexagons tile the plane without gaps — a property famously exploited by honeybees to maximize storage efficiency. The hexagon appears across crystallography, mechanical engineering, and modern parametric design.
Essential formulas for regular hexagon (side a)
Circumradius: \( R = a \)
Inradius (apothem): \( r = \frac{\sqrt{3}}{2} a \)
Area: \( A = \frac{3\sqrt{3}}{2} a^2 \)
Short diagonal (spanning 2 sides): \( d_2 = \sqrt{3}\,a \)
Long diagonal (spanning 3 sides): \( d_3 = 2a \)
The regular hexagon fascinated ancient Greek geometers. Euclid’s Elements Book IV demonstrates how to inscribe a regular hexagon in a circle using only the radius. Because the chord of 60° equals the radius, construction is elementary. In nature, hexagonal patterns minimize surface energy: graphene, basalt columns, and snowflakes reveal hexagonal symmetry. The Swiss mathematician Jakob Steiner proved that among all planar figures of equal area, the hexagon (as part of honeycomb conjecture) offers minimal perimeter for tiling — a theorem finally proven in 1999 by Thomas Hales.
| Side a | Circumradius R | Inradius r | Area A | Short diag. d₂ | Long diag. d₃ |
|---|---|---|---|---|---|
| 1 | 1.000000 | 0.866025 | 2.598076 | 1.732051 | 2.000000 |
| 2 | 2.000000 | 1.732051 | 10.392304 | 3.464102 | 4.000000 |
| 3 | 3.000000 | 2.598076 | 23.382685 | 5.196152 | 6.000000 |
| 5 | 5.000000 | 4.330127 | 64.951905 | 8.660254 | 10.000000 |
| 10 | 10.000000 | 8.660254 | 259.807621 | 17.320508 | 20.000000 |
A mechanical engineer needs to design a stainless steel hexagonal bolt head with side length 8 mm. Using this calculator, circumradius = 8 mm (directly affects wrench size), inradius ≈ 6.928 mm, area ≈ 166.277 mm². The short diagonal (≈13.856 mm) determines the minimal clearance. The tool provides immediate, reliable numbers for manufacturing specs, avoiding miscalculations that could lead to improper fastening.
Archimedes used inscribed and circumscribed hexagons to bound π. Starting with a regular hexagon, he progressively doubled sides to obtain his famous approximation 3 + 10/71 < π < 3 + 1/7. The hexagon remains a cornerstone in numerical approximation of π and trigonometric tables.
const n = 6;
const angle = Math.PI / n; // 30°
let a = parseFloat(side);
let R = a; // circumradius
let r = a * Math.cos(angle); // = a * √3/2
let area = (3 * Math.sqrt(3) / 2) * a * a;
let perimeter = 6 * a;
let d2 = 2 * R * Math.sin(2 * angle); // √3 a
let d3 = 2 * R * Math.sin(3 * angle); // 2a