Added a method (#23954)
This commit is contained in:
@ -5,7 +5,7 @@ title: Area of a Triangle
|
|||||||
<!-- The article goes here, in GitHub-flavored Markdown. Feel free to add YouTube videos, images, and CodePen/JSBin embeds -->
|
<!-- The article goes here, in GitHub-flavored Markdown. Feel free to add YouTube videos, images, and CodePen/JSBin embeds -->
|
||||||
## Area of a Triangle
|
## Area of a Triangle
|
||||||
|
|
||||||
A triangle is a three sided, two dimensional polygon. There are two methods to determine the area.
|
A triangle is a three sided, two dimensional polygon. There are three methods to determine the area.
|
||||||
|
|
||||||
### Method 1
|
### Method 1
|
||||||
The area of a triangle can be calculated by multiplying 0.5 to the base length to the perpendicular height.
|
The area of a triangle can be calculated by multiplying 0.5 to the base length to the perpendicular height.
|
||||||
@ -27,6 +27,19 @@ Mathematically this is expressed as:
|
|||||||
|
|
||||||
Note that the formula expressed above uses sides a and b and angle C between them. These can be substituted for another other two sides and the angle between them.
|
Note that the formula expressed above uses sides a and b and angle C between them. These can be substituted for another other two sides and the angle between them.
|
||||||
|
|
||||||
|
### Method 3
|
||||||
|
If only the length of the sides are known, we can use what is known as Heron's formula to find the area.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
Mathematically this is expressed as:
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
Where s is half the perimeter, or
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
### Terminology
|
### Terminology
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user