Here we will see the area of the largest Reuleaux triangle inscribed in a square. The side of the square is "a". The height of the Reuleaux triangle is h.
The height of the Reuleaux triangle is the same as a. So a=h. So the area of Reuleaux triangle is -
#include <iostream> #include <cmath> using namespace std; float areaReuleaux(float a) { //side of square is a if (a < 0) //if a is negative it is invalid return -1; float area = ((3.1415 - sqrt(3)) * (a) * (a))/2; return area; } int main() { float side = 8; cout << "Area of Reuleaux Triangle: " << areaReuleaux(side); }
Area of Reuleaux Triangle: 45.1024
The above is the detailed content of What is the largest Rayleigh triangle inside a square?. For more information, please follow other related articles on the PHP Chinese website!