- 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 Circumcircle of a Right Angled Triangle?
The area of circumcircle of a right-angle triangle when the hypotenuse(H) of the triangle is given is found using the formula πH2/4.
This formula is derived using the fact that the circumcircle touches all the corners of the triangle, in this case the maximum length between two points in the hypotheses which passes through the center of the circle. This makes the hypotenuse the diameter of the circle.
This is why the area of circle which is πd2/4. (d = 2r) replaces the d by H.
Example
Hypotenuse = 8
Area of circle = 50.26
Example Code
#include <stdio.h> int main(void) { int H = 14; float pie = 3.14; float area = (float)((pie*H*H)/4); printf("the area of circumcircle of a right angled triangle of Hypotenuse %d is %f",H,area); return 0; }
Output
the area of circumcircle of a right angled triangle of Hypotenuse 14 is 153.860016
- Related Articles
- Area of Circumcircle of a Right Angled Triangle in C Program?
- Area of Incircle of a Right Angled Triangle in C Program?
- Program to calculate area of Circumcircle of an Equilateral Triangle
- What is an scalene , equilateral , right angled triangle , obtuse angled triangle and a reflex angled triangle
- The length of the hypotenuse of an isosceles right-angled triangle is 24. Find the area of the triangle.
- Program to calculate area of Circumcircle of an Equilateral Triangle in C++
- The length of the hypotenuse of an isosceles right-angled triangle is ( 20 . ) Find the perimeter and area of the triangle.
- Find the Number of Possible Pairs of Hypotenuse and Area to Form Right Angled Triangle using C++
- Find the dimensions of Right angled triangle in C++
- The difference between the sides at right angles in a right-angled triangle is ( 14 mathrm{~cm} ). The area of the triangle is ( 120 mathrm{~cm}^{2} ). Calculate the perimeter of the triangle.
- Draw an obtuse-angled triangle and a right-angled triangle. Find the points of the concurrence of the angle bisector of each triangle. Where does the concurrence lie?
- Draw an obtuse-angled triangle and a right-angled triangle. Find the points of the concurrence of the angle bisectors of each triangle. Where do the points of concurrence lie?
- Find x in the given Right angled triangle"
- Find the hypotenuse of a right angled triangle with given two sides in C++
- Prove that $(2, -2), (-2, 1)$ and $(5, 2)$ are the vertices of a right angled triangle. Find the area of the triangle and the length of the hypotenuse.

Advertisements