

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- 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 Reuleaux Triangle?
Here we will see how to calculate the area of Reuleaux Triangle like below. The Reuleaux Triangle has one equilateral triangle inside it. Suppose its height is h, this shape is made by the intersection of three circles.
There are three circular sectors. The area of each sector is −
Since the area of the equilateral triangle is added three times, then we have to subtract them. So the final area is −
Example
#include <iostream> #include <cmath> using namespace std; float areaReuleaux(float h) { if (h < 0) //if h is negative it is invalid return -1; float area = ((3.1415 - sqrt(3)) * h * h)/2; return area; } int main() { float height = 6; cout << "Area of Reuleaux Triangle: " << areaReuleaux(height); }
Output
Area of Reuleaux Triangle: 25.3701
- Related Questions & Answers
- Biggest Reuleaux Triangle within A Square?
- Biggest Reuleaux Triangle within A Square in C?
- Biggest Reuleaux Triangle inscribed within a Square inscribed in an equilateral triangle?
- Area of Circumcircle of a Right Angled Triangle?
- Largest Triangle Area in Python
- Biggest Reuleaux Triangle within a Square which is inscribed within a Right angle Triangle?
- Biggest Reuleaux Triangle inscribed within a Square inscribed in an equilateral triangle in C?
- Biggest Reuleaux Triangle inscirbed within a square inscribed in a semicircle?
- Biggest Reuleaux Triangle within a Square which is inscribed within a Right angle Triangle in C?
- Java program to find the area of a triangle
- Program to calculate area and perimeter of equilateral triangle
- Area of a triangle inside a parallelogram in C++
- Program to calculate area of Circumcircle of an Equilateral Triangle
- Biggest Reuleaux Triangle within a Square which is inscribed within a Circle?
- Area of Incircle of a Right Angled Triangle in C Program?
Advertisements