Height of an Isosceles Triangle: Theory and Examples

The height of an isosceles triangle is a perpendicular segment drawn from the vertex of the triangle to its base. It helps us better understand the structure of this figure and is also an important value for calculating its area.

In this article, we will look at how to find the height of an isosceles triangle, where the main formula comes from, and how to apply it in problems.

Height of an Isosceles Triangle: Main Formula

The height of an isosceles triangle can be found if the length of its base and the length of its equal side are known. Suppose we have an isosceles triangle \( ABC \), where \( AB=BC \), and \( AC \) is the base. The height \( BH \) is drawn from vertex \( B \) to side \( AC \).

Image: \( ABC \) is an isosceles triangle; \( BH \) is the height of an isosceles triangle drawn from vertex \( B \) to the base \( AC \)

For this triangle, the height \( BH \) can be calculated using the formula:

\[
BH=\sqrt{AB^2-\frac{AC^2}{4}}.
\]

Note. This formula can be used only when the given sides can actually form an isosceles triangle. For this, the following conditions must be satisfied:
\[
AB>0,\qquad AC>0,\qquad AC<2\cdot AB.
\]
That is, the base must be less than the sum of the two equal sides.

Why This Formula Works: Explanation Through Triangle Properties

To understand the formula, it is important to remember one useful property of an isosceles triangle. The height drawn from the vertex to the base is also a median and an angle bisector at the same time. This means that it divides the base in half and forms two equal right triangles.

Therefore, if \( BH \) is the height, then point \( H \) is the midpoint of the base \( AC \). So,

\[
AH=HC=\frac{AC}{2}.
\]

Now let us look at the right triangle \( ABH \). In it, \( AB \) is the hypotenuse, \( BH \) is one leg, and \( AH \) is the other leg. By the Pythagorean theorem, we have:

\[
AB^2=BH^2+AH^2.
\]

Since \( AH=\frac{AC}{2} \), we can write:

\[
AB^2=BH^2+\left(\frac{AC}{2}\right)^2.
\]

Next, let us rearrange the equation:

\[
AB^2=BH^2+\frac{AC^2}{4},\qquad BH^2=AB^2-\frac{AC^2}{4},\qquad BH=\sqrt{AB^2-\frac{AC^2}{4}}.
\]

This is exactly how we get the formula for the height of an isosceles triangle.

Note. If we denote the length of the equal side by \( a \), the base by \( b \), and the height by \( h \), then the formula will have a more familiar form:
\[
h=\sqrt{a^2-\frac{b^2}{4}}.
\]

Height of an Isosceles Triangle: Examples with Answers

Let us look at several problems where we need to find the height of an isosceles triangle or, conversely, find the equal side when the height is known. Each example includes a step-by-step solution, so you can easily follow the logic of the calculations.

Example 1. What is the height of an isosceles triangle if its base is \( 8 \) cm and its equal sides are \( 6 \) cm each?

In this problem, we have \( a=6 \) and \( b=8 \). Let us substitute the given values into the formula:

\[
h=\sqrt{a^2-\frac{b^2}{4}}.
\]

We get:

\[
h=\sqrt{6^2-\frac{8^2}{4}}
=\sqrt{36-\frac{64}{4}}
=\sqrt{36-16}
=\sqrt{20}
\approx 4.47.
\]

Therefore, the height of an isosceles triangle is \( 4.47 \) cm.

Example 2. An isosceles triangle has a base of \( 10 \) cm, and its equal sides are \( 12 \) cm each. Find its height

In this case, \( a=12 \) and \( b=10 \). We will use the same formula:

\[
h=\sqrt{a^2-\frac{b^2}{4}}.
\]

Let us substitute the values:

\[
h=\sqrt{12^2-\frac{10^2}{4}}
=\sqrt{144-\frac{100}{4}}
=\sqrt{144-25}
=\sqrt{119}
\approx 10.91.
\]

Therefore, the height of an isosceles triangle is \( 10.91 \) cm.

Example 3. The height of an isosceles triangle is \( 12 \) cm, and the length of its base is \( 20 \) cm. Find the equal side of the triangle

Now the equal side is not known, but the height is given. We have \( h=12 \) and \( b=20 \). Let us use the formula:

\[
h=\sqrt{a^2-\frac{b^2}{4}}.
\]

Substitute the known values:

\[
12=\sqrt{a^2-\frac{20^2}{4}}.
\]

Now simplify the expression under the square root:

\[
12=\sqrt{a^2-\frac{400}{4}},\qquad 12=\sqrt{a^2-100}.
\]

Square both sides of the equation:

\[
144=a^2-100.
\]

From here, we get:

\[
a^2=244,\qquad a=\sqrt{244}=2\sqrt{61}\approx 15.62.
\]

Therefore, the length of the equal side of the isosceles triangle is \( 15.62 \) cm.

What to Study Next: Useful Topics to Explore

Once the height formula is clear, you can move on to other topics related to the isosceles triangle. They will help you see this figure more broadly and better understand how its properties are used in different problems.

  1. Isosceles Triangle: Definition and Properties — Learn what features an isosceles triangle has and how it differs from other triangles.
  2. Perimeter of an Isosceles Triangle: Formulas and Examples — This topic explains how to find the perimeter of an isosceles triangle using its sides or other given data.
  3. Area of an Isosceles Triangle: Formulas and Examples — Here you will see how to calculate the area of an isosceles triangle and how to apply the formulas correctly in practice.

Height of an Isosceles Triangle: Geometry in Code

If you are interested in programming, try turning the formula for the height of an isosceles triangle into a small program in your favorite programming language. The flowchart below already shows the logic of such an algorithm: the user enters the length of the equal side and the base, the program checks whether these values can form an isosceles triangle, and then calculates the height or displays an error message.

This simple task combines geometry and programming very well, because one mathematical formula turns into a clear algorithm that can be implemented in Pascal, Python, C++, JavaScript, or any other programming language.

Image: a flowchart of the algorithm for calculating the height of an isosceles triangle using the equal side and the base

Leave a Reply

Your email address will not be published. Required fields are marked *