- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Area of a circle inscribed in a regular hexagon?
The circle inscribed in a regular hexagon has 6 points touching the six sides of the regular hexagon.
To find the area of inscribed circle we need to find the radius first. For the regular hexagon the radius is found using the formula, a(√3)/2.
Now area of the circle inscribed is 3πa*a/4
Sample
Side of hexagon − 4
Area = 37.68
Example Code
#include <stdio.h> int main(void) { int a = 14; float pie = 3.14; float area = (float)(3*a*a*pie/4); printf("The area of circle inscribed in the hexagon of side %d is %f", a, area); return 0; }
Output
The area of circle inscribed in the hexagon of side 14 is 461.580017
- Related Articles
- A regular hexagon is inscribed in a circle. If the area of hexagon is ( 24 sqrt{3} mathrm{~cm}^{2} ), find the area of the circle. (Use ( pi=3.14 ) )
- Area of a square inscribed in a circle which is inscribed in a hexagon in C Program?
- C Program for Area of a square inscribed in a circle which is inscribed in a hexagon?
- Area of the Largest Triangle inscribed in a Hexagon in C++
- ( A B C D E F ) is a regular hexagon with centre ( O ). If the area of triangle ( O A B ) is 9 ( mathrm{cm}^{2} ), find the area of the circle in which the hexagon is inscribed."
- Area of a circle inscribed in a rectangle which is inscribed in a semicircle?
- Area of largest Circle inscribed in N-sided Regular polygon in C Program?
- Area of a circle inscribed in a rectangle which is inscribed in a semicircle in C?
- C++ program to find the Area of the Largest Triangle inscribed in a Hexagon?
- Area of circle inscribed within rhombus?
- Area of a square inscribed in a circle which is inscribed in an equilateral triangle in C Program?
- Area of a square inscribed in a circle which is inscribed in an equilateral triangle in C Program?
- Program to calculate the area of an Circle inscribed in a Square
- Diagonal of a Regular Hexagon in C++?
- Area of circle inscribed within rhombus in C Program?

Advertisements