Triangles

Triangles

Triangles are polygons with three sides and three angles. They are the simplest polygons and are the building blocks of more complex shapes. Triangles can be classified into different types based on the lengths of their sides and the measures of their angles. The sum of the interior angles of a triangle is always 180 degrees. Triangles are used in various fields such as geometry, trigonometry, engineering, and architecture. They are also found in nature, such as in the shape of leaves and crystals.

Definition

Definition

In philosophy, a definition is a statement that explains the meaning of a word or phrase. Definitions can be either explicit or implicit. Explicit definitions state the meaning of a word or phrase directly, while implicit definitions provide information about the meaning of a word or phrase without explicitly stating it.

Examples of Explicit Definitions

  • Dog: A mammal that is typically kept as a pet and is characterized by its loyalty and devotion to its owner.
  • Love: A strong feeling of affection and attachment towards someone or something.
  • Justice: The quality of being fair and impartial.

Examples of Implicit Definitions

  • Dog: A four-legged animal with a tail that barks.
  • Love: A feeling that makes you want to be with someone all the time.
  • Justice: A system that ensures that everyone is treated fairly.

The Importance of Definitions

Definitions are important because they help us to communicate clearly and effectively. When we know the meaning of a word or phrase, we can use it correctly in our writing and speaking. Definitions also help us to understand the world around us. By understanding the meaning of words and phrases, we can better understand the concepts that they represent.

Conclusion

Definitions are an essential part of language. They help us to communicate clearly and effectively, and they help us to understand the world around us. When we know the meaning of a word or phrase, we can use it correctly and understand the concepts that it represents.

Angles of Triangle

Angles of a Triangle

In geometry, a triangle is a polygon with three sides and three angles. The sum of the interior angles of a triangle is always 180 degrees. This means that if you add up the measures of the three angles of a triangle, you will always get 180.

Types of Angles in a Triangle

There are three types of angles in a triangle: acute, obtuse, and right.

  • Acute angle: An acute angle is an angle that measures less than 90 degrees.
  • Obtuse angle: An obtuse angle is an angle that measures greater than 90 degrees but less than 180 degrees.
  • Right angle: A right angle is an angle that measures exactly 90 degrees.

Angle Relationships in a Triangle

There are several relationships between the angles of a triangle.

  • The sum of the interior angles of a triangle is always 180 degrees.
  • The exterior angle of a triangle is equal to the sum of the two remote interior angles.
  • The base angles of an isosceles triangle are congruent.
  • The angles opposite the equal sides of an equilateral triangle are congruent.

Examples of Angles in a Triangle

Here are some examples of angles in a triangle:

  • In a right triangle, one angle is a right angle (90 degrees), and the other two angles are acute angles.
  • In an equilateral triangle, all three angles are congruent (60 degrees).
  • In an isosceles triangle, two angles are congruent, and the third angle is different.

Applications of Angles in a Triangle

The angles of a triangle are used in many applications, such as:

  • Navigation: The angles of a triangle can be used to determine the direction of travel.
  • Surveying: The angles of a triangle can be used to measure distances and areas.
  • Architecture: The angles of a triangle can be used to design buildings and other structures.
  • Engineering: The angles of a triangle can be used to design bridges, roads, and other infrastructure.

Conclusion

The angles of a triangle are an important part of geometry. They are used in many applications, such as navigation, surveying, architecture, and engineering. By understanding the angles of a triangle, you can better understand the world around you.

Properties

Properties are characteristics of objects that can be accessed and modified. In programming, properties are often used to represent the state of an object. For example, a Person object might have properties for name, age, and address.

Properties can be defined in a number of ways. In JavaScript, properties are typically defined using the this keyword. For example:

function Person(name, age, address) {
  this.name = name;
  this.age = age;
  this.address = address;
}

In this example, the Person constructor function defines three properties: name, age, and address. These properties can be accessed and modified using the dot operator. For example:

const person = new Person("John Doe", 30, "123 Main Street");

console.log(person.name); // "John Doe"
person.age = 31;
console.log(person.age); // 31

Properties can also be defined using the Object.defineProperty() method. This method allows you to specify the properties’ attributes, such as whether they are writable, enumerable, or configurable. For example:

const person = {};

Object.defineProperty(person, "name", {
  value: "John Doe",
  writable: true,
  enumerable: true,
  configurable: true
});

console.log(person.name); // "John Doe"
person.name = "Jane Doe";
console.log(person.name); // "Jane Doe"

In this example, the Object.defineProperty() method is used to define a property named name on the person object. The value attribute specifies the initial value of the property, the writable attribute specifies whether the property can be modified, the enumerable attribute specifies whether the property is included in the object’s enumeration, and the configurable attribute specifies whether the property can be deleted or modified.

Properties are a powerful tool for representing the state of objects. They can be used to store data, control access to data, and implement behavior.

Types

Types

In programming, a type is a classification of data that determines the operations that can be performed on that data. For example, the type of a variable might be integer, floating-point number, or string. The type of a variable determines the values that can be stored in it, as well as the operations that can be performed on it.

There are many different types of data in programming, but some of the most common include:

  • Integers: Integers are whole numbers, such as 1, 2, 3, and so on.
  • Floating-point numbers: Floating-point numbers are numbers that can have a decimal point, such as 1.23, 3.14, and so on.
  • Strings: Strings are sequences of characters, such as “Hello, world!”, “This is a string.”, and so on.
  • Booleans: Booleans are logical values that can be either true or false.

The type of a variable is determined by the value that is assigned to it. For example, if you assign the value 1 to a variable, the variable will be of type integer. If you assign the value 1.23 to a variable, the variable will be of type floating-point number. And so on.

The type of a variable can also be explicitly declared using a type annotation. For example, in Python, you can declare a variable of type integer by writing:

x: int = 1

This declares a variable named x of type integer and assigns the value 1 to it.

Type annotations are not required in Python, but they can be helpful for documenting your code and making it easier to read.

Examples of Types

Here are some examples of how types are used in programming:

  • In a web browser, the type of a variable might determine how the data is displayed. For example, an integer might be displayed as a number, while a string might be displayed as text.
  • In a database, the type of a column might determine the kind of data that can be stored in that column. For example, a column of type integer might only be able to store whole numbers, while a column of type string might be able to store any sequence of characters.
  • In a programming language, the type of a variable might determine the operations that can be performed on that variable. For example, you can add two integers together, but you cannot add an integer to a string.

Types are an essential part of programming, and they play a role in many different aspects of the programming process. By understanding the different types of data and how they are used, you can write more efficient and effective code.

Perimeter of Triangle

The perimeter of a triangle is the sum of the lengths of all three sides. It can be calculated using the formula:

Perimeter = Side 1 + Side 2 + Side 3

For example, if a triangle has sides of length 3 cm, 4 cm, and 5 cm, then its perimeter would be:

Perimeter = 3 cm + 4 cm + 5 cm = 12 cm

Here are some additional examples of how to calculate the perimeter of a triangle:

  • A triangle with sides of length 6 cm, 8 cm, and 10 cm has a perimeter of 24 cm.
  • A triangle with sides of length 12 cm, 15 cm, and 18 cm has a perimeter of 45 cm.
  • A triangle with sides of length 20 cm, 25 cm, and 30 cm has a perimeter of 75 cm.

The perimeter of a triangle is a fundamental property that can be used to compare different triangles and to solve geometry problems.

Area of a Triangle

The area of a triangle is a measure of the amount of two-dimensional space enclosed by the triangle. It is a fundamental concept in geometry and has numerous applications in various fields such as engineering, architecture, and surveying.

The formula to calculate the area of a triangle is given by:

Area = (1/2) * base * height

where:

  • Base: The length of one side of the triangle that serves as the base.
  • Height: The perpendicular distance from the base to the opposite vertex of the triangle.

To better understand the concept of the area of a triangle, let’s consider a few examples:

Example 1: Right Triangle

Consider a right triangle with a base of 6 units and a height of 8 units. Using the formula, we can calculate the area as follows:

Area = (1/2) * base * height
Area = (1/2) * 6 units * 8 units
Area = 24 square units

Therefore, the area of the right triangle is 24 square units.

Example 2: Equilateral Triangle

An equilateral triangle has all three sides of equal length. Let’s assume the side length of an equilateral triangle is 5 units. To find the area, we first need to determine the height. Using the Pythagorean theorem, we can calculate the height as follows:

Height = √(side² - (side/2)²)
Height = √(5² - (5/2)²)
Height = √(25 - 6.25)
Height = √18.75
Height ≈ 4.33 units

Now, we can calculate the area of the equilateral triangle:

Area = (1/2) * base * height
Area = (1/2) * 5 units * 4.33 units
Area ≈ 10.83 square units

Therefore, the area of the equilateral triangle is approximately 10.83 square units.

Example 3: Irregular Triangle

Irregular triangles do not have any equal sides or angles. To find the area of an irregular triangle, we can use the formula involving the lengths of the three sides (a, b, and c) and the semi-perimeter (s):

Area = √(s * (s - a) * (s - b) * (s - c))

where:

  • s = (a + b + c) / 2

Let’s consider an irregular triangle with sides a = 4 units, b = 6 units, and c = 8 units. First, we calculate the semi-perimeter:

s = (a + b + c) / 2
s = (4 + 6 + 8) / 2
s = 18 / 2
s = 9 units

Now, we can calculate the area:

Area = √(s * (s - a) * (s - b) * (s - c))
Area = √(9 * (9 - 4) * (9 - 6) * (9 - 8))
Area = √(9 * 5 * 3 * 1)
Area = √135
Area ≈ 11.66 square units

Therefore, the area of the irregular triangle is approximately 11.66 square units.

Understanding the concept of the area of a triangle is essential for various applications, including land surveying, construction, and design. By using the appropriate formula and understanding the properties of different types of triangles, one can accurately calculate the area of any triangle.

Area of Triangle Using Heron’s Formula

Heron’s formula is a mathematical formula that allows you to calculate the area of a triangle when you know the lengths of its three sides. It is named after the Greek mathematician Heron of Alexandria, who lived in the 1st century AD.

The formula is as follows:

Area = √(s(s - a)(s - b)(s - c))

where:

  • s is the semiperimeter of the triangle, which is half the sum of its three sides
  • a, b, and c are the lengths of the three sides of the triangle

To use Heron’s formula, you first need to find the semiperimeter of the triangle. This is done by adding up the lengths of the three sides and dividing by 2.

Once you have the semiperimeter, you can plug it into the formula along with the lengths of the three sides to find the area of the triangle.

For example, let’s say you have a triangle with sides of length 3, 4, and 5. The semiperimeter of this triangle is (3 + 4 + 5) / 2 = 6.

Plugging this into the formula, we get:

Area = √(6(6 - 3)(6 - 4)(6 - 5))
Area = √(6(3)(2)(1))
Area = √36
Area = 6

Therefore, the area of the triangle is 6 square units.

Heron’s formula is a powerful tool that can be used to find the area of any triangle, regardless of its shape or size. It is a versatile formula that has many applications in geometry and other fields of mathematics.

Solved Examples

Solved Examples

Example 1: Solving a linear equation

Solve the equation 3x + 5 = 17.

Solution:

  1. Subtract 5 from both sides of the equation: 3x + 5 - 5 = 17 - 5 3x = 12

  2. Divide both sides of the equation by 3: 3x/3 = 12/3 x = 4

Example 2: Solving a quadratic equation

Solve the equation x^2 - 4x - 5 = 0.

Solution:

  1. Factor the left-hand side of the equation: x^2 - 4x - 5 = (x - 5)(x + 1)

  2. Set each factor equal to zero: x - 5 = 0 or x + 1 = 0

  3. Solve each equation: x = 5 or x = -1

Example 3: Solving a system of linear equations

Solve the system of equations: 3x + 2y = 7 2x - y = 4

Solution:

  1. Multiply the second equation by 2: 4x - 2y = 8

  2. Add the two equations: 7x = 15

  3. Divide both sides of the equation by 7: x = 15/7

  4. Substitute the value of x into one of the original equations to find y: 3(15/7) + 2y = 7 45/7 + 2y = 7 2y = 7 - 45/7 2y = (49 - 45)/7 2y = 4/7 y = 2/7

Example 4: Solving an inequality

Solve the inequality 3x + 5 > 17.

Solution:

  1. Subtract 5 from both sides of the inequality: 3x + 5 - 5 > 17 - 5 3x > 12

  2. Divide both sides of the inequality by 3: 3x/3 > 12/3 x > 4

Example 5: Solving a word problem

A farmer has 100 acres of land. He plants corn on 3/5 of the land and soybeans on the rest of the land. How many acres of soybeans does he plant?

Solution:

  1. Find the number of acres of land planted with corn: 100 acres * 3/5 = 60 acres

  2. Subtract the number of acres planted with corn from the total number of acres to find the number of acres planted with soybeans: 100 acres - 60 acres = 40 acres

Therefore, the farmer plants 40 acres of soybeans.

Triangles: Introduction

Triangles: Introduction

A triangle is a polygon with three sides and three angles. It is one of the basic shapes in geometry. Triangles are classified according to the length of their sides and the measure of their angles.

Types of Triangles

There are three main types of triangles:

  • Equilateral triangles have all three sides of equal length.
  • Isosceles triangles have two sides of equal length.
  • Scalene triangles have all three sides of different lengths.

Angles of Triangles

The sum of the interior angles of a triangle is always 180 degrees. This means that the sum of the measures of the three angles of a triangle is always 180 degrees.

Properties of Triangles

There are many properties of triangles. Some of the most important properties include:

  • The sum of the lengths of any two sides of a triangle is always greater than the length of the third side.
  • The longest side of a triangle is always opposite the largest angle.
  • The shortest side of a triangle is always opposite the smallest angle.
  • The altitude of a triangle is the perpendicular distance from a vertex to the opposite side.
  • The median of a triangle is a line segment that connects a vertex to the midpoint of the opposite side.
  • The angle bisector of a triangle is a line segment that divides an angle into two equal parts.

Examples of Triangles

Triangles are found all around us. Here are a few examples:

  • The roof of a house is a triangle.
  • A slice of pizza is a triangle.
  • A traffic sign is a triangle.
  • A mountain peak is a triangle.

Applications of Triangles

Triangles are used in many different applications. Some of the most common applications include:

  • Triangles are used in architecture to design buildings and bridges.
  • Triangles are used in engineering to design machines and structures.
  • Triangles are used in surveying to measure distances and angles.
  • Triangles are used in navigation to find directions.
  • Triangles are used in art to create paintings, drawings, and sculptures.

Triangles are a versatile and important shape that has many applications in our world.

Frequently Asked Questions – FAQs on Triangles
What are triangles?

What are Triangles?

A triangle is a three-sided polygon. It is the simplest polygon and one of the basic shapes in geometry. Triangles are classified according to the lengths of their sides and the measures of their angles.

Types of Triangles

There are three main types of triangles:

  • Scalene triangles have all sides of different lengths.
  • Isosceles triangles have two sides of the same length.
  • Equilateral triangles have all three sides of the same length.

Triangles can also be classified according to the measures of their angles:

  • Acute triangles have all angles less than 90 degrees.
  • Right triangles have one angle that measures exactly 90 degrees.
  • Obtuse triangles have one angle that measures greater than 90 degrees.

Properties of Triangles

Triangles have a number of important properties, including:

  • The sum of the measures of the angles of a triangle is always 180 degrees.
  • The longest side of a triangle is opposite the largest angle.
  • The shortest side of a triangle is opposite the smallest angle.
  • The sum of the lengths of any two sides of a triangle is always greater than the length of the third side.

Examples of Triangles

Triangles are found all around us in the real world. Here are a few examples:

  • The roof of a house is a triangle.
  • A slice of pizza is a triangle.
  • A traffic sign is a triangle.
  • A mountain peak is a triangle.

Triangles are also used in many different areas of mathematics, including geometry, trigonometry, and calculus.

How many types of triangles are there in Maths?

In mathematics, triangles are classified into different types based on their side lengths and angles. Here are the main types of triangles:

1. Equilateral Triangle:

  • All three sides are equal in length.
  • All three angles are equal to 60 degrees.
  • Example: If the length of each side is 4 cm, then the equilateral triangle has a perimeter of 12 cm and all angles measure 60 degrees.

2. Isosceles Triangle:

  • Two sides are equal in length, and the third side is different.
  • The angles opposite the equal sides are equal.
  • Example: If two sides are 5 cm each and the third side is 6 cm, then the isosceles triangle has a perimeter of 16 cm, and the angles opposite the 5 cm sides are equal.

3. Scalene Triangle:

  • All three sides are different in length.
  • All three angles are different in measure.
  • Example: If the sides are 3 cm, 4 cm, and 5 cm, then the scalene triangle has a perimeter of 12 cm, and all angles have different measures.

4. Right Triangle:

  • One angle is a right angle (90 degrees).
  • The side opposite the right angle is called the hypotenuse.
  • The Pythagorean theorem (a^2 + b^2 = c^2) relates the lengths of the sides in a right triangle.
  • Example: If the two shorter sides (legs) are 3 cm and 4 cm, then the hypotenuse is 5 cm, satisfying the Pythagorean theorem.

5. Obtuse Triangle:

  • One angle is greater than 90 degrees and less than 180 degrees.
  • The side opposite the obtuse angle is the longest side.
  • Example: If one angle is 105 degrees, and the two shorter sides are 4 cm and 6 cm, then the longest side (opposite the 105-degree angle) is approximately 7.21 cm.

6. Acute Triangle:

  • All three angles are less than 90 degrees.
  • The sum of the interior angles is 180 degrees.
  • Example: If the angles are 45 degrees, 60 degrees, and 75 degrees, then the triangle is acute.

These are the main types of triangles in mathematics. Each type has its own properties and characteristics, and they are used in various mathematical applications and real-world scenarios.

What are the properties of triangles?

Triangles, one of the most fundamental geometric shapes, possess several unique properties that define their characteristics and relationships. These properties play a crucial role in various fields, including mathematics, engineering, architecture, and more. Let’s explore some of the key properties of triangles:

1. Sum of Interior Angles: In any triangle, the sum of the measures of its interior angles is always 180 degrees. This property is a fundamental principle in geometry and has numerous applications. For example, it allows us to find the measure of an unknown angle in a triangle if the measures of the other two angles are known.

2. Exterior Angle Property: The exterior angle of a triangle is equal to the sum of the measures of the two remote interior angles. An exterior angle is formed when one side of a triangle is extended, and the adjacent angles are called remote interior angles. This property is useful in proving various geometric theorems and solving problems related to angles in triangles.

3. Triangle Inequality: The sum of the lengths of any two sides of a triangle must be greater than the length of the third side. This property ensures that a triangle can be formed with the given side lengths. It also has implications in real-world applications, such as determining whether a set of measurements can form a valid triangle.

4. Congruence: Two triangles are said to be congruent if they have the same shape and size. Congruent triangles have corresponding sides and angles that are equal in measure. There are several congruence criteria, such as Side-Side-Side (SSS), Side-Angle-Side (SAS), Angle-Side-Angle (ASA), and more, which determine whether two triangles are congruent.

5. Similarity: Two triangles are similar if they have the same shape but not necessarily the same size. Similar triangles have corresponding angles that are equal in measure, and their corresponding sides are proportional. Similarity is often used in applications involving scale drawings, maps, and geometric transformations.

6. Medians and Centroid: A median of a triangle is a line segment that connects a vertex to the midpoint of the opposite side. The three medians of a triangle intersect at a point called the centroid. The centroid divides each median in a 2:1 ratio, with the larger segment being closer to the vertex.

7. Incenter and Incircle: The incenter of a triangle is the point of concurrency of the internal angle bisectors. It is the center of the incircle, which is the largest circle that can be inscribed within the triangle, tangent to all three sides.

8. Circumcenter and Circumcircle: The circumcenter of a triangle is the point of concurrency of the perpendicular bisectors of the sides. It is the center of the circumcircle, which is the smallest circle that can be circumscribed around the triangle, passing through all three vertices.

9. Orthocenter and Altitudes: The orthocenter of a triangle is the point of concurrency of the altitudes. An altitude is a line segment drawn from a vertex perpendicular to the opposite side. The altitudes of a triangle intersect at the orthocenter.

These properties of triangles provide a solid foundation for understanding and analyzing various geometric concepts and relationships. They are essential in solving problems, proving theorems, and making deductions in geometry and beyond.

What is the perimeter and area of a triangle?

Perimeter of a Triangle

The perimeter of a triangle is the sum of the lengths of all three sides. To find the perimeter of a triangle, simply add up the lengths of each side.

For example, if a triangle has sides of length 3 cm, 4 cm, and 5 cm, then the perimeter of the triangle is 3 cm + 4 cm + 5 cm = 12 cm.

Area of a Triangle

The area of a triangle is the amount of space enclosed by the triangle. To find the area of a triangle, you can use the following formula:

Area = (1/2) * base * height

where:

  • base is the length of one side of the triangle
  • height is the length of the altitude from the base to the opposite vertex

For example, if a triangle has a base of 6 cm and a height of 4 cm, then the area of the triangle is (1/2) * 6 cm * 4 cm = 12 cm^2.

Examples

Here are some examples of triangles with different perimeters and areas:

  • A triangle with sides of length 3 cm, 4 cm, and 5 cm has a perimeter of 12 cm and an area of 6 cm^2.
  • A triangle with sides of length 6 cm, 8 cm, and 10 cm has a perimeter of 24 cm and an area of 24 cm^2.
  • A triangle with sides of length 9 cm, 12 cm, and 15 cm has a perimeter of 36 cm and an area of 54 cm^2.

Applications

The perimeter and area of a triangle are important concepts in geometry and have many applications in real life. For example, the perimeter of a triangle can be used to find the length of fencing needed to enclose a triangular area, and the area of a triangle can be used to find the amount of paint needed to paint a triangular surface.

What is the formula for area and perimeter of a triangle?

Area of a Triangle

The area of a triangle is given by the formula:

A = (1/2) * b * h

where:

  • A is the area of the triangle in square units
  • b is the length of the base of the triangle in units
  • h is the height of the triangle in units

Example:

Find the area of a triangle with a base of 6 cm and a height of 8 cm.

A = (1/2) * 6 cm * 8 cm
A = 24 cm²

Perimeter of a Triangle

The perimeter of a triangle is the sum of the lengths of its three sides. The formula for the perimeter of a triangle is:

P = a + b + c

where:

  • P is the perimeter of the triangle in units
  • a, b, and c are the lengths of the three sides of the triangle in units

Example:

Find the perimeter of a triangle with sides of length 3 cm, 4 cm, and 5 cm.

P = 3 cm + 4 cm + 5 cm
P = 12 cm
What is scalene, isosceles and equilateral triangle?

Scalene Triangle:

  • A scalene triangle is a triangle in which all three sides are of different lengths.
  • The angles of a scalene triangle are also all different.
  • Example: A triangle with sides measuring 3 cm, 4 cm, and 5 cm is a scalene triangle.

Isosceles Triangle:

  • An isosceles triangle is a triangle in which two sides are of equal length.
  • The angles opposite the equal sides are also equal.
  • Example: A triangle with sides measuring 5 cm, 5 cm, and 6 cm is an isosceles triangle.

Equilateral Triangle:

  • An equilateral triangle is a triangle in which all three sides are of equal length.
  • All three angles of an equilateral triangle are also equal, measuring 60 degrees each.
  • Example: A triangle with sides measuring 4 cm, 4 cm, and 4 cm is an equilateral triangle.

Here are some additional examples of scalene, isosceles, and equilateral triangles:

  • A triangle with sides measuring 3 cm, 4 cm, and 6 cm is a scalene triangle.
  • A triangle with sides measuring 5 cm, 5 cm, and 7 cm is an isosceles triangle.
  • A triangle with sides measuring 6 cm, 6 cm, and 6 cm is an equilateral triangle.

Scalene, isosceles, and equilateral triangles are all important in geometry. They are used in a variety of applications, such as architecture, engineering, and design.

What is the difference between acute triangle, obtuse triangle and right triangle?

Acute Triangle:

  • An acute triangle is a triangle in which all three interior angles are less than 90 degrees.
  • The sum of the interior angles of an acute triangle is always less than 180 degrees.
  • Acute triangles are always classified as scalene triangles, meaning that all three sides are of different lengths.
  • Example: A triangle with side lengths of 3 cm, 4 cm, and 5 cm is an acute triangle.

Obtuse Triangle:

  • An obtuse triangle is a triangle in which one interior angle is greater than 90 degrees.
  • The sum of the interior angles of an obtuse triangle is always greater than 180 degrees.
  • Obtuse triangles can be classified as either scalene, isosceles, or equilateral triangles, depending on the lengths of their sides.
  • Example: A triangle with side lengths of 6 cm, 8 cm, and 10 cm is an obtuse triangle.

Right Triangle:

  • A right triangle is a triangle in which one interior angle is exactly 90 degrees.
  • The sum of the interior angles of a right triangle is always 180 degrees.
  • The side opposite the right angle is called the hypotenuse, and it is always the longest side of the triangle.
  • The other two sides of a right triangle are called the legs.
  • Example: A triangle with side lengths of 3 cm, 4 cm, and 5 cm is a right triangle.