Open In App

Area of Circumcircle and Incircle of a Right Kite

Given two positive integers A and B representing the sides of the right kite, the task is to find the area of the circumcircle and incircle of a right kite.

A right kite is a kite that can be inscribed in a circle with two opposite angles are at right angles. The line of symmetry of the kite is also the diameter of the circumcircle of the kite. It divides the kite into two congruent right-angled triangles having sides as A and B of a right kite.



Examples:



Input: A = 3, B = 4
Output: Area of circumcircle of Right Kite is 19.625, Area of incircle of Right Kite is 3.14

Input: A = 10, B = 5
Output: Area of circumcircle of Right Kite is 98.125, Area of incircle of Right Kite is 28.26

Approach: There are some observations to solve this problem. Follow the steps below to solve this problem:

Below is the implementation of the above approach:




// C++ program for the above approach
 
#include <bits/stdc++.h>
using namespace std;
#define pi 3.14
 
// Function to calculate the area of
// circumcircle of right kite
double AreaOfCircumcircle(int a, int b)
{
    // Find the radius
    double radius = sqrt(a * a + b * b)
                    / 2;
    return pi * radius * radius;
}
 
// Function to calculate the area of
// incircle of right kite
double AreaOfIncircle(int a, int b)
{
    // Find the radius
    double radius = (a * b) / (a + b);
 
    return pi * radius * radius;
}
 
// Driver Code
int main()
{
    // Given Input
    int a, b;
    a = 10;
    b = 5;
 
    // Function Call
    double circumarea = AreaOfCircumcircle(
        a, b);
    cout << "Area of circumcircle of Right Kite is"
         << " " << circumarea << endl;
 
    // Function Call
    double inarea = AreaOfIncircle(
        a, b);
    cout << "Area of incircle of Right Kite is"
         << " " << inarea << endl;
 
    return 0;
}




// Java program for the above approach
public class GFG {
    static double pi = 3.14;
 
    // Function to calculate the area of
    // circumcircle of right kite
    static double AreaOfCircumcircle(int a, int b)
    {
        // Find the radius
        double radius = Math.sqrt(a * a + b * b) / 2;
        return pi * radius * radius;
    }
 
    // Function to calculate the area of
    // incircle of right kite
    static double AreaOfIncircle(int a, int b)
    {
        // Find the radius
        double radius = (a * b) / (a + b);
 
        return pi * radius * radius;
    }
   
    // Driver code
    public static void main(String[] args)
    {
       
        // Given Input
        int a, b;
        a = 10;
        b = 5;
 
        // Function Call
        double circumarea = AreaOfCircumcircle(a, b);
        System.out.printf(
            "Area of circumcircle of Right Kite is %.3f\n",
            circumarea);
 
        // Function Call
        double inarea = AreaOfIncircle(a, b);
        System.out.printf(
            "Area of incircle of Right Kite is %.2f\n",
            inarea);
    }
}
 
// This code is contributed by abhinavjain194




# Python program for the above approach
# Function to calculate the area of
# circumcircle of right kite
import math
pi = 3.14
 
def AreaOfCircumcircle(a, b):
 
    # Find the radius
    radius = math.sqrt(a * a + b * b)/ 2
    return pi * radius * radius
 
 
# Function to calculate the area of
# incircle of right kite
def AreaOfIncircle( a,  b):
 
    # Find the radius
    radius = (a * b) // (a + b)
    return pi * (radius**2)
 
 
# Driver Code
# Given Input
a = 10
b = 5
 
# Function Call
circumarea = AreaOfCircumcircle(a, b)
print("Area of circumcircle of Right Kite is" ," " , format(circumarea,".3f"))
 
# Function Call
inarea = AreaOfIncircle(a, b)
print("Area of incircle of Right Kite is" ," " , format(inarea,".2f"))
 
# this code is contributed by shivanisinghss2110




// C# program for the above approach
using System;
 
class GFG{
     
static double pi = 3.14;
 
// Function to calculate the area of
// circumcircle of right kite
static double AreaOfCircumcircle(int a, int b)
{
     
    // Find the radius
    double radius = Math.Sqrt(a * a + b * b) / 2;
    return pi * radius * radius;
}
 
// Function to calculate the area of
// incircle of right kite
static double AreaOfIncircle(int a, int b)
{
     
    // Find the radius
    double radius = (a * b) / (a + b);
 
    return pi * radius * radius;
}
 
// Driver code
public static void Main()
{
     
    // Given Input
    int a, b;
    a = 10;
    b = 5;
 
    // Function Call
    double circumarea = AreaOfCircumcircle(a, b);
    Console.WriteLine(
        "Area of circumcircle of Right Kite is " +
        circumarea);
 
    // Function Call
    double inarea = AreaOfIncircle(a, b);
    Console.WriteLine(
        "Area of incircle of Right Kite is " + inarea);
}
}
 
// This code is contributed by subhammahato348




<script>
  
        // JavaScript Program for the above approach
 
        var pi = 3.14
 
        // Function to calculate the area of
        // circumcircle of right kite
        function AreaOfCircumcircle(a, b) {
            // Find the radius
            let radius = Math.sqrt(a * a + b * b)
                / 2;
            return pi * radius * radius;
        }
 
        // Function to calculate the area of
        // incircle of right kite
        function AreaOfIncircle(a, b) {
            // Find the radius
            let radius = (a * b) / (a + b);
 
            return pi * radius * radius;
        }
 
        // Driver Code
 
        // Given Input
        let a, b;
        a = 10;
        b = 5;
 
        // Function Call
        let circumarea = AreaOfCircumcircle(a, b);
        document.write("Area of circumcircle of Right Kite is " +
         (circumarea.toFixed(3)) + "<br>");
 
        // Function Call
        let inarea = AreaOfIncircle(
            a, b);
        document.write("Area of incircle of Right Kite is " +
         (inarea.toFixed(3)) + "<br>");
 
 
    // This code is contributed by Potta Lokesh
 
</script>

Output
Area of circumcircle of Right Kite is 98.125
Area of incircle of Right Kite is 28.26

Time Complexity: O(logn) since using inbuilt sqrt function
Auxiliary Space: O(1)


Article Tags :