
- C Programming Tutorial
- C - Home
- C - Overview
- C - Environment Setup
- C - Program Structure
- C - Basic Syntax
- C - Data Types
- C - Variables
- C - Constants
- C - Storage Classes
- C - Operators
- C - Decision Making
- C - Loops
- C - Functions
- C - Scope Rules
- C - Arrays
- C - Pointers
- C - Strings
- C - Structures
- C - Unions
- C - Bit Fields
- C - Typedef
- C - Input & Output
- C - File I/O
- C - Preprocessors
- C - Header Files
- C - Type Casting
- C - Error Handling
- C - Recursion
- C - Variable Arguments
- C - Memory Management
- C - Command Line Arguments
- C Programming useful Resources
- C - Questions & Answers
- C - Quick Guide
- C - Useful Resources
- C - Discussion
Area of circle which is inscribed in an equilateral triangle?
The area of a circle inscribed inside an equilateral triangle is found using the mathematical formula πa2/12.
Lets see how this formula is derived,
Formula to find the radius of the inscribed circle = area of the triangle / semi-perimeter of triangle.
Area of triangle of side a = (√3)a2/4
Semi-perimeter of triangle of side a = 3a/2
According to formula,
Radius of circle = (√3)a22/4 / 3a/2 = a/2√3
Area of circle = πr2 = πa2/12
Example Code
#include <stdio.h> int main(void) { int a = 5; float pie = 3.14; float area = (float)((pie*a*a)/12); printf("the area of circle inscribed in the triangle of side %d is %f",a,area); return 0; }
Output
the area of circle inscribed in the triangle of side 5 is 6.541667
- Related Articles
- Area of circle which is inscribed in equilateral triangle in C Program?
- 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?
- An equilateral triangle of side $9\ cm$ is inscribed in a circle. Find the radius of the circle.
- Area of a triangle inscribed in a rectangle which is inscribed in an ellipse?
- Biggest Reuleaux Triangle inscribed within a Square inscribed in an equilateral triangle?
- Biggest Reuleaux Triangle inscribed within a Square inscribed in an equilateral triangle in C?
- A circle is inscribed in an equilateral triangle \( A B C \) is side \( 12 \mathrm{~cm} \), touching its sides. Find the radius of the inscribed circle and the area of the shaded part."\n
- Area of a triangle inscribed in a rectangle which is inscribed in an ellipse In C Program?
- Area of a circle inscribed in a rectangle which is inscribed in a semicircle?
- The area of a circle inscribed in an equilateral triangle is $154\ cm^2$. Find the perimeter of the triangle. [Use $\pi = \frac{22}{7}$ and $\sqrt3= 1.73$]
- Count of distinct rectangles inscribed in an equilateral triangle in C++
- Area of a circle inscribed in a rectangle which is inscribed in a semicircle in C?
- In Fig 4, a circle is inscribed in an equilateral triangle $\vartriangle ABC$ of side $12\ cm$. Find the radius of inscribed circle and the area of the shaded region. [$Use\ \pi =3.14\ and\ \sqrt{3} =1.73$]."\n
- Area of a square inscribed in a circle which is inscribed in a hexagon in C Program?

Advertisements