Skip to content
geeksforgeeks
  • Tutorials
    • Python
    • Java
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
    • Practice Coding Problems
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Mathematics
  • Number System and Arithmetic
  • Algebra
  • Trigonometry
  • Statistics
  • Probability
  • Geometry
  • Mensuration
  • Calculus
  • Logarithms
Open In App
Next Article:
Area of Polygons
Next article icon

Area of Polygons

Last Updated : 25 Oct, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report

Area of the Polygon is the area enclosed by the boundary of the polygon. A polygon is a closed, two-dimensional shape with straight sides. Each side of a polygon is a line segment, and the points where the sides meet are called vertices.

Area-of-Polygons
Area of Polygons

A polygon is a figure formed by joining 'n' straight lines such that it forms a closed figure. It has n-sides and there are different types of polygon, such as triangle, square, pentagon, etc. The area of the polygon is found by various methods and different types of polygons have different formulas to calculate its area. For example, suppose we have to find the area of a square (4-sided polygon) then its area is found by the formula, (side)2. Similarly, the area of other polygons is found.

Let's learn more about Area of Polygons with formula, derivation and examples in detail below.

Table of Content

  • Area of Polygon Definition
  • Types of Polygon
    • Regular Polygon
    • Irregular Polygon
  • Area of Polygon Formula
  • Area of Regular Polygons
  • Area of Irregular Polygon
  • Area of Polygons with Coordinates
  • Difference Between Perimeter and Area of Polygons
  • Area of Polygon Examples
  • Practice Questions on Area of Polygons

Area of Polygon Definition

We define the area of the polygon as the space by a polygon. Suppose we have a n-sided polygon then the area enclosed by all its n-sides is called the area of that polygon. the area of the polygon is measured in the unit square, i.e. it is measured in m2, cm2, etc.

We can also say that area of the polygon is the space occupied by the polygon in a 2-Dimensional plane. Finding the area of the polygon is very important and we can find the area of the polygon by dividing the polygon into two types. before learning more about the area of a polygon let's first learn about the type of polygon.

Types of Polygon

The two types of polygons are,

  • Regular Polygon
  • Irregular Polygon

Regular Polygon

A polygon with all n-sides equal is called a Regular Polygon. Examples of regular polygons are Equilateral Triangles, Squares, Regular Pentagons, etc. The area of these regular polygons is easily calculated by using various formulas.

Irregular Polygon

A polygon in which all n-sides are not equal is called an Irregular Polygon. Examples of irregular polygons are Scalene Triangles, Rectangles, etc. Area of an irregular polygon is calculated by using various formulas by dividing these polygons into various known regular polygons and then finding their individual area and then adding them to get the required area of the polygon.

We will learn more about the area of polygon below in this article.

Area of Polygon Formula

As we already know the area of polygon is found by using various formulas for both Regular polygons and Irregular polygons. Here are the formulas for some common polygons that we encountered in our daily lives.

  • Area of Triangle = (1/2) × base × height
  • Area of Rectangle = length × width
  • Area of Parallelogram = base × height
  • Area of Trapezium = (1/2) × (sum of lengths of its parallel sides or bases) × height
  • Area of Rhombus = (1/2) × (product of diagonals)
  • Area of Quadrilateral = (1/2) × Diagonal × (Sum of heights)

Area of Regular Polygons

A regular polygon is a polygon that has equal sides and equal angles. Thus, the technique to calculate the value of the area of regular polygons is based on the formulas associated with each polygon. Let us have a look at the formulas of some commonly used regular polygons. The table added below shows Regular Polygon and the formulas for calculating their areas.

Regular Polygon

Area Formula

Area of Equilateral Triangle√3(side)2/4
Area of Squareside × side
Area of Regular Pentagon(5/2) (side) × (apothem)

Now we see that the formula for area is different for different types of polygons. Suppose we have to give a common formula to find the area of the regular polygon. Then the formula for the same is,

A polygon having equal sides and equal angles is a regular polygon.

Area of Regular Polygon = (½) × Perimeter × Apothem

Area of Regular Polygon = (½) × (Number of Sides) × (Length of One Side) × (Apothem)

The use of this formula is explained in the example added below,

Example: Find the area of the regular polygon if the perimeter of the polygon is 20 cm and Apothem is 5 cm.

Solution:

Given,

  • Perimeter of Polygon = 20 cm
  • Length of Apothem = 5 cm

Area of Regular Polygon(A) = (½) × Perimeter × Apothem

A = (½) × 20 cm × 5 cm

A = 50 cm2

Thus, the area of the regular polygon is 50 cm2

Area of Irregular Polygon

An irregular polygon is a polygon in which all the sides are unequal. To find the area of an irregular polygon we first divide the Irregular Polygon into smaller polygons such as triangles and quadrilateral and then the area of smaller polygons are found and then sum the of all the polygons is found which gives the area of the irregular polygon.

The same can be explained using the example added below:

Area of Irregular Polygon

Area of Quadrilateral(ABCD) = (Area of Triangle ABC) + (Area of Triangle ACD)

In the above figure, the diagonal AC will act as a common base of the two triangles ABC and ADC with heights h1 and h2 respectively.

Area of Quadrilateral (ABCD) = Area of Triangle (ABC) + Area of Triangle (ACD)

Area of Quadrilateral (ABCD) = (1/2) × AC × h1 + (1/2) × AC × h2

Area of Quadrilateral (ABCD) = (1/2) × AC × (h1 + h2)

Thus, the area of the regular polygon is easily found.

Area of Polygons with Coordinates

If the coordinates of any polygon are given then its area is calculated using the steps discussed below.

Step 1: First find the distance of all the sides of the polygon, using the distance formula as,

D = √{(x2 - x1)2 + (y2 - y1)2}

Step 2: Finding all the sides of the polygon we first check whether the polygon is a regular polygon or not.

Step 3: Now, if the polygon is a regular polygon then use the formula,

Area of Regular Polygon = (Number of Sides × Length of One Side × Apothem)/2

Step 4: If the polygon is an irregular polygon then its area is calculated by dividing the polygon into smaller polygons then the area of the smaller polygon is found using the known formula. And then the sum is found which gives the area of the irregular polygon.

Example: Find the area of the polygon with coordinates A(1, 1), B(4, 1), C(1, 3), and D(4, 3)

Solution:

AB = √{(3)2 + (0)2} = 3

BC = √{(3)2 + (2)2} = √13

CD = √{(3)2 + (0)2} = 3

DA = √{(3)2 + (2)2} = √13

Here we see that AB = BC and CD = DA. Hence, ABCD is a rectangle

Therefore Area of Rectangle ABCD is 3√13

Difference Between Perimeter and Area of Polygons

Polygon is a closed figure formed by joining n-sides. Then its area is the space occupied by the boundary of the polygon. The difference between the perimeter and the area of the polygon is discussed in the table added below:

Perimeter of Polygon

Area of Polygon

Perimeter of a polygon is the sum of all the sides of the polygon. It is the length of all the boundaries of the polygon.Area of the polygon is the space occupied by the boundary of the polygon or the total area enclosed by the polygon.
It is measured in units of length, i.e. it is measured in m, cm, etc.It is measured in units of area, i.e. it is measured in m2, cm2,, etc.

The formula to calculate the perimeter of an n-sided polygon is,

Perimeter of Polygon = Length of First Side + Length of Second Side + ..... + Length of N side

The formula to calculate the area of the polygon is,

Area of Polygon = (½) × Perimeter × Apothem

Read More

  • Mensuration
  • Volume of Cuboid
  • Diagonal Formula

Area of Polygon Examples

Example 1: Find the area of the given polygon.

Area of Polygon Example 1

Solution:

We are given the above figure which is a Hexagon and we are supposed to find out the area of the above figure MNOPQR.

Area of the figure MNOPQR = Area of triangle MNO + Area of triangle PQR + Area of rectangle MOPR

Area of the figure MNOPQR = (1/2) × MO × NK +(1/2) × PR × QL + PO × MO

Area of the figure MNOPQR = (1/2) × 20 × 5 + (1/2) x 20 × 5 + 13 × 20

Area of the figure MNOPQR = 10 × 5 + 10 × 5 + 260

Area of the figure MNOPQR = 50 cm2+ 50 cm2 + 260 cm2

Area of the figure MNOPQR = 360 cm2

Hence, the area of the given Hexagon MNOPQR is 360 cm2.

Example 2: Find the area of the given polygon.

Area of Polygon Example 2

Solution: 

We are given the above figure which is a Hexagon and we are supposed to find out the area of the above figure ABCDEF.

Area of the figure ABCDEF = Area of Trapezium DEFC + Area of Square ABCF

Area of the figure ABCDEF = (1/2) × (ED+FC) × EK + (AF)2

Area of the figure ABCDEF = (1/2) × (7 + 18) × 8 + (18)2

Area of the figure ABCDEF = 4 × 25 + 18 × 18

Area of the figure ABCDEF = 100 cm2 + 324 cm2

Area of the figure ABCDEF = 424 cm2

Hence, the area of the given Hexagon ABCDEF is 424 cm2

Example 3: Find the area of the given polygon.

Area of Polygon Example 3

Solution: 

We are given the above figure which is a Pentagon and we are supposed to find out the area of the above figure ABCDE.

Area of the figure ABCDE = Area of triangle AHE + Area of Trapezium DEHF + Area of triangle DFC + Area of Triangle ABC

Area of the figure ABCDE = (1/2) × AH × HE + (1/2) × (EH+DF) × HF + (1/2)× FC × DF + (1/2) × AC × GB

Area of the figure ABCDE = (1/2) × 50 × 30 + (1/2) × (30+20) × 70 + (1/2) × 30 × 20 + (1/2) × 150 × 50

Area of the figure ABCDE = 25 × 30 + 50 × 35 + 15 × 20 + 150 × 25

Area of the figure ABCDE = 750 m2 + 1750 m2+ 300 m2+ 3750 m2

Area of the figure ABCDE = 6550 m2

Hence, the area of the given Pentagon ABCDE is 6550 m2.

Example 4: Find the area of the given polygon, where the length of the diagonal AC is 18 cm.

Area of Polygon Example 4

Solution: 

We are given the above figure which is a quadrilateral, and we are supposed to find out the area of the above figure ABCD.

Area of the quadrilateral ABCD = Area of triangle ABC + Area of triangle ADC

Area of the quadrilateral ABCD = (1/2) × AC × DM + (1/2) × AC × BN

Area of the quadrilateral ABCD = (1/2) × AC × (BN+DM)

Area of the quadrilateral ABCD = (1/2) × 18 × (6+5)

Area of the quadrilateral ABCD = 9 × 11 cm2

Area of the quadrilateral ABCD = 99 cm2

Hence, the area of the given quadrilateral is 99 cm2.

Example 5: Find the area of the given polygon.

Area of Polygon Example 5

Solution: 

We are given the above figure which is a Pentagon and we are supposed to find out the area of the above figure ABCDE.

Area of the figure ABCDE = Area of triangle AGB + Area of Rectangle BCHG + Area of triangle AFE + Area of Trapezium DEFH

Area of the figure ABCDE = (1/2) × AG × BG + BG × GH + (1/2) × AF × FE + (1/2) × (DH+EF) × FH

Area of the figure ABCDE = (1/2) × 8 × 4 + 4 × 3 + (1/2) × 5 × 5 + (1/2) × (3+5) × 6

Area of the figure ABCDE = 4 × 4 + 4 × 3 + 2.5 × 5 + 3 × 8 cm2

Area of the figure ABCDE = 16 + 12 + 12.5 + 24 cm2

Area of the figure ABCDE = 64.5 cm2

Hence, the area of the given Pentagon ABCDE is 64.5 cm2.

Example 6: Find the area of the given polygon.

Area of Polygon Example 6

Solution: 

We are given the above figure which is a Pentagon, and we are supposed to find out the area of the above figure ABCDE.

Area of the figure ABCDE = Area of triangle ADE + Area of triangle CHD + Area of Trapezium BCHF + Area of triangle ABF

Area of the figure ABCDE = (1/2) *AD*GE + (1/2) *HD*CH + (1/2) *(CH+BF)*FH + (1/2) *AF*BF

Area of the figure ABCDE = (1/2) × 7 × 4 + (1/2) × 1 × 4 + (1/2) × (4+3) × 4 + (1/2) × 2 × 3 cm2

Area of the figure ABCDE = 2 × 7 + 2 + 7 × 2 + 1 × 3 cm2

Area of the figure ABCDE = 14 + 2 + 14 + 3 cm2

Area of the figure ABCDE = 33 cm2

Hence, the area of the given Pentagon ABCDE is 33 cm2.

Practice Questions on Area of Polygons

Q1: Find the Area of an Equilateral Triangle of side 6cm.

Q2: Find the Area of a rectangular park whose length is 10 m and breadth is 30 m.

Q3: What is the Area of Square whose diagonal is 6 cm.

Q4: What is the Area of a Rhombus whose diagonals measures 12 cm and 16 cm?

Q5: What is the Area of a Trapezium whose Parallel sides measures 6 and 12 cm and altitude is 8 cm?

Q6: Find the area of a regular pentagon with a side length of 5 cm.

Q7: A triangular garden has a base of 12 m and a height of 10 m. What is its area?

Q8: Calculate the area of a circle inscribed within a square whose side length is 4 m.

Q9: What is the area of a parallelogram with the base of 8 cm and a height of 5 cm?

Q10: A hexagonal plot of land has a side length of 10 m. Calculate its area.

Conclusion

The area of polygons is a fundamental concept in geometry that allows us to quantify the space enclosed by the various polygonal shapes such as the triangles, rectangles, pentagons and more. By utilizing the different formulas and methods tailored to specific types of polygons we can accurately calculate their areas. Understanding how to find the area is not only crucial for the academic purposes but also for practical applications in fields such as the architecture, engineering and land surveying. Mastery of these concepts enables better spatial reasoning and problem-solving skills in real-world scenarios.


Next Article
Area of Polygons

D

dheerajhinaniya
Improve
Article Tags :
  • Mathematics
  • School Learning
  • Class 8
  • Maths MAQ
  • Mensuration 2D
  • Maths-Formulas
  • Maths-Class-8
  • Math-Concepts

Similar Reads

    Simplification and Approximation

    Profit & Loss

    Profit and Loss - Aptitude Questions and Answers
    Question 1: A person buys a pen from a wholesaler at Rs. 10 for 20 pens. He sells those pens at Rs. 10 for 15 pens. Find his profit or loss percent. Solution: CP for each pen = 10 / 20 = Rs. 0.50SP for each pen = 10 / 15 = Rs. 2 / 3 Profit = SP - CP = Rs. (2 / 3) - 0.50 = Rs. 1 / 6 Therefore, profit
    5 min read

    Mixtures & Alligations

    Mixture and Alligation - Solved Questions and Answers
    Question 1: From a vessel of 20 liters of pure milk, 1 liter is taken out and replaced with water, so as to keep the volume constant at 20 liters. This process is repeated 5 times. Find the percentage of pure milk left in the vessel after 5 replacements. Solution: Here, we need to apply the formula
    3 min read

    Permutation and Combination

    Permutations and Combinations
    Permutation and Combination are the most fundamental concepts in mathematics related to picking items from a group or set. Permutation is arranging items considering the order of selection from a certain group.Combination is selecting items without considering order.For example, in the below diagram
    14 min read
    Time and Work - Aptitude Questions and Answers
    Time and Work is one of the most basic concepts in Quantitative Aptitude, which is tested extensively in government exams. Undoubtedly, having a strong background in this topic can give candidates an upper hand and help them to score well in competitive exams. A candidate needs to be aware of the ba
    13 min read

    Sequence & Series

    Sequences and Series
    A sequence is an ordered list of numbers following a specific rule. Each number in a sequence is called a "term." The order in which terms are arranged is crucial, as each term has a specific position, often denoted as an​, where n indicates the position in the sequence.For example:2, 5, 8, 11, 14,
    10 min read
    Sequences and Series Formulas
    Sequences and Series Formulas: In mathematics, sequence and series are the fundamental concepts of arithmetic. A sequence is also referred to as a progression, which is defined as a successive arrangement of numbers in an order according to some specific rules. A series is formed by adding the eleme
    10 min read
    Special Series in Maths - Sequences and Series | Class 11 Maths
    Special Series: A series can be defined as the sum of all the numbers of the given sequence. The sequences are finite as well as infinite. In the same way, the series can also be finite or infinite. For example, consider a sequence as 1, 3, 5, 7, … Then the series of these terms will be 1 + 3 + 5 +
    10 min read

    Simple Interest & Compound Interest

    Simple Interest - Solved Questions and Answers
    Question 1: What would be the annual interest accrued on a deposit of Rs. 10,000 in a bank that pays a 4 % per annum rate of simple interest?Solution : Here, P = 10000, R = 4, T = 1SI = P x R x T / 100SI = 10000 x 4 x 1 / 100SI = 400Thus, the annual interest would be Rs. 400Question 2: A sum of mone
    4 min read
    Compound Interest - Solved Questions and Answers
    Question 1: Find the compound interest on Rs. 10,000 at 10% per annum for a time period of three and a half years.Solution:Time period of 3 years and 6 months means for 3 years, the interest is compounded yearly and for the remaining 6 months, the interest is compounded half-yearly. This means that
    6 min read
    Simple Interest
    Simple Interest (SI) is a method of calculating the interest charged or earned on a principal amount over a fixed period. It is calculated based solely on the principal amount, which remains unchanged throughout the calculation.Simple Interest is widely used across industries such as banking, financ
    9 min read
    Monthly Compound Interest Formula
    Interest is the extra amount of fees paid to borrow money or any other assets. Interest is paid on a monthly, quarterly, or annual basis. The interest earned depends on the time for which money is invested, the amount of money invested, and the rate at which money is invested.Two common types of int
    5 min read
    Daily Compound Interest Formula with Examples
    Compound interest is interest earned on both the principal and interest over a specific period. The interest that accumulates on a principal over time is equally accounted for as the principal. Furthermore, the following period's interest calculation is based on the cumulative principal value. It is
    6 min read
    Surd and Indices in Mathematics
    Indices and surds are very important ideas in math, specifically within algebra. They are useful when it comes to reducing expressions and resolving equations with different roots or powers involved. To be able to deal with various mathematical problems that range from simple algebraic ones to compl
    6 min read

    Mensuration _ Cylinder, Cone, Sphere

    Mensuration Formulas
    Mensuration is the branch of geometry that deals with the measurement of area, length, or volume in 2D and 3D shapes. The 2D and 3D shapes are often called geometric shapes. In this article, we have curated all the mensuration formulas for various 2-D and 3-D shapes in detail.Mensuration FormulasTyp
    10 min read
    Mensuration 3D | Set-2
    Question 1: If the diagonal of cube is √18 cm, then its volume is Solution : Let the side of the cube is x cm. We know diagonal of cube = a√3 cm Put equal both a√3 = √18 Squaring both sides a2(3) = 18 a2 = 6 a = √6 Volume of the cube = a3 = (√6)3 = 6√6 cm3 Question 2: The areas of three consecutive
    7 min read
    Area of Polygons
    Area of the Polygon is the area enclosed by the boundary of the polygon. A polygon is a closed, two-dimensional shape with straight sides. Each side of a polygon is a line segment, and the points where the sides meet are called vertices.Area of PolygonsA polygon is a figure formed by joining 'n' str
    14 min read

    Time, Speed, & Distance

    Speed, Time and Distance – Solved Questions and Answers
    Question 1: A runner can complete a 750 m race in two and a half minutes. Will he be able to beat another runner who runs at 17.95 km/hr? Solution: We are given that the first runner can complete a 750 m race in 2 minutes and 30 seconds or 150 seconds. Speed of the first runner = 750 / 150 = 5 m / s
    7 min read
    Speed Time Distance Formula
    Speed, Distance, and Time are the three most important physical quantities which are of utmost importance in Kinematics. The three quantities Speed, Distance, and Time are related to each other through a unique relation called as Time Speed Distance Formula abbreviated as TSD Formula. The Speed Dist
    12 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences