Area of a Hexagon: Formulas and Solved Examples

Geometry has always been one of the fundamental branches of mathematics. It studies different shapes and their properties. Among many geometric figures, the hexagon stands out because of its special structure and its importance in science and real-life applications. Knowing how to find the area of a hexagon is useful in many professions—from engineers and architects to teachers and students.

In this article, we will take a detailed look at methods for calculating the Area of a Hexagon for a regular hexagon. We’ll also include example problems with solutions to show how these formulas work in practice. Ready to start this journey into the world of geometric calculations? Let’s go!

How to Find the Area of a Hexagon: Geometric Formulas

The area of a hexagon is a geometric value that tells us how much space is inside the shape. In this article, we work specifically with a regular hexagon (all sides are equal and all angles are equal).

To find the area of a hexagon (a regular hexagon), there are different formulas depending on what information you already know. Let’s focus on two main ones:

  • The first uses the side length and the apothem.
  • The second lets you calculate the area using only the side length (without the apothem).

Area of a Hexagon Using the Side and the Apothem

The first formula is based on the side length of a regular hexagon and the length of its apothem. By the way, the apothem is the line segment that connects the center of the hexagon to one of its sides.

Image of hexagon ABCDEF and apothem OG drawn to side AF

This method allows us to find the area of a hexagon using the formula:

\[
A=3 \cdot AF \cdot OG,
\]

where \( A \) is the area of the hexagon.

To understand why this works, let’s look at a short proof. A regular hexagon can be divided into six equal triangles, as shown in the figure.

Image of hexagon ABCDEF divided into six equal triangles

The area of any triangle equals half the product of its base and its height. In our case, the base of each triangle is one side of the hexagon, and the height is the apothem. So, the area of one such triangle is:

\[
A_{\triangle} = \frac{AF \cdot OG}{2}.
\]

Since the hexagon consists of \( 6 \) equal triangles, the area of the whole hexagon is:

\[
A = 6 \cdot A_{\triangle} = 6 \cdot \frac{AF \cdot OG}{2} = 3 \cdot AF \cdot OG.
\]

So, we have obtained the formula for the area of a hexagon using the side and the apothem.

Area of a Hexagon Using Only the Side Length

There is also a way to calculate the area of a hexagon without using the apothem. To do this, we express the apothem in terms of the side length. Since the triangles inside a regular hexagon are equilateral, we can use the height formula for an equilateral triangle:

\[
OG = \frac{\sqrt{3}}{2}\cdot AF.
\]

Now we substitute this into the previous formula:

\[
A = 3 \cdot AF \cdot OG = 3 \cdot AF \cdot \frac{\sqrt{3}}{2}\cdot AF = \frac{3\sqrt{3}}{2}\cdot AF^2.
\]

Note. If we denote the side length and the apothem of the hexagon by \( a \) and \( h \) respectively, then the area formulas take the familiar form:
\[
A = 3 \cdot a \cdot h,\qquad A = \frac{3 \cdot \sqrt{3}}{2} \cdot a^{2}.
\]

Practice Problems and Solutions: Area of a Hexagon in Examples

To better understand how to find the area of a hexagon (a regular hexagon), let’s go through a few examples. Even though each problem includes a solution, try doing the calculations on your own first—and then check your answer.

Example 1. Find the area of a regular hexagon with side 4 cm and apothem 3.5 cm

We are told that the side length and the apothem are \( 4 \) cm and \( 3.5 \) cm. Substitute these values into the formula:

\[
A = 3 \cdot a \cdot h = 3 \cdot 4 \cdot 3.5 = 42.
\]

So, the area of the hexagon is \( 42\ \text{cm}^2 \).

Example 2. What is the area of a regular hexagon with side 6 cm and apothem 5 cm?

In this case, the side and the apothem are \( 6 \) cm and \( 5 \) cm. Using the area formula, we get:

\[
A = 3 \cdot a \cdot h = 3 \cdot 6 \cdot 5 = 90.
\]

Therefore, the area of the hexagon is \( 90\ \text{cm}^2 \).

Example 3. Find the area of a regular hexagon with side 5 cm

Here we only know the side length, so we use the second formula with \( a=5 \):

\[
A = \frac{3 \cdot \sqrt{3}}{2} \cdot a^{2} = \frac{3 \cdot \sqrt{3}}{2} \cdot 5^{2} = \frac{3 \cdot \sqrt{3}}{2} \cdot 25 \approx 64.96.
\]

So, the area of the hexagon is approximately (64.96\ \text{cm}^2).

Example 4. What is the area of a regular hexagon with side 8 cm?

Again, we only have the side length \( a=8 \), so:

\[
A = \frac{3 \cdot \sqrt{3}}{2} \cdot a^{2} = \frac{3 \cdot \sqrt{3}}{2} \cdot 8^{2} = \frac{3 \cdot \sqrt{3}}{2} \cdot 64 \approx 166.28.
\]

So, the area of the hexagon is approximately \( 166.28\ \text{cm}^2 \).

See Also: What Else Is Worth Reviewing?

Once you understand how to calculate the area of a hexagon for a regular hexagon, it makes sense to take one more step and connect this topic with other basic concepts. After all, these ideas appear most often in geometry problems and help you navigate formulas much faster.

  1. Diagonals of a Hexagon: Explanation, Properties, and Examples — You will learn how many diagonals a hexagon has and how to find them in typical problems.
  2. Apothem of a Hexagon: Formulas and Illustrations — The apothem directly links the side length and the area, so it can be calculated easily using well-known relationships.
  3. Perimeter of a Hexagon: Calculation and Practical Uses — The perimeter helps you estimate the overall size of the shape and is often used together with area formulas.

Area of a Hexagon in Code: From a Flowchart to Your Program

If you like it when a formula turns into a clear sequence of actions, then this final step will feel just right. Here you have a flowchart that shows how to take an entered side length \( a \) and calculate the area of a hexagon (a regular hexagon). After that, the rest is up to your imagination.

Try implementing this flowchart in your favorite programming language—Pascal, Python, JavaScript, or anything else—and see how a mathematical idea becomes a real program, complete with input validation and neat, well-formatted output.

Flowchart of the algorithm showing how the area of a hexagon is calculated when the side length is known