Horje
Check if a given circle lies completely inside the ring formed by two concentric circles

Given two circles of radius r and R, both have their centre at the origin. Now, given another circle of radius r1 and centre at (x1, y1). Check, if the third circle(circle of radius r1) lies completely inside the ring formed by two circles of radius r and R.
Examples : 

Input : r = 8 R = 4
        r1 = 2 x1 = 6 y1 = 0
Output : yes

Input : r = 8 R = 4 
        r1 = 2 x1 = 5 y1 = 0
Output : no

Important : Concentric circles are those circles which have same centre. The region lying between two concentric circles is called annulus or the circular ring. 
 

circle (1)

Example : 
There are two concentric circles with their centre at origin(0, 0) and radius as r = 8 and R = 4. 
1.) Circle 1 and 2 lies inside the ring. 
2.) Circle 3 and 4 are outside the ring.
The complete figure can be visualised as given below : 
 

circle

Approach : 
This problem can be solved using Pythagoras Theorem . Compute the distance between the centre of the circle and origin using Pythagoras theorem, suppose it is denoted by ‘dis’. 
After computing the distance just check that the value of (dis – r1)> = r and (dis + r1)< = R. If both these conditions hold then the circle lies completely inside the ring.

C++

<?php
// PHP code to check if a circle
// lies in the ring
 
// Function to check if circle
// lies in the ring
function checkcircle($r, $R, $r1,
                         $x1, $y1)
{
     
    // distance between center of circle
    // center of concentric circles(origin)
    // using Pythagoras theorem
    $dis = sqrt($x1 * $x1 + $y1 * $y1);
     
    // Condition to check if circle is
    // strictly inside the ring
    return ($dis-$r1 >= $R && $dis + $r1 <= $r);
}
 
    // Driver Code
    // Both circle with radius 'r'
    // and 'R' have center (0,0)
    $r = 8; $R = 4;
    $r1 = 2; $x1 = 6;
    $y1 = 0;
    if (checkcircle($r, $R, $r1, $x1, $y1))
     
    echo "yes" ,"\n";
    else
    echo "no" ,"\n";
     
// This code is contributed by ajit.
?>

Javascript

<script>
// JavaScript program code to check if a
// circle lies in the ring
 
// Function to check if circle
    // lies in the ring
    function checkcircle(r, R, r1, x1, y1)
    {
        // distance between center of circle
        // center of concentric circles(origin)
        // using Pythagoras theorem
        let dis = Math.sqrt(x1 * x1 +
                                 y1 * y1);
          
         // Condition to check if circle
         // is strictly inside the ring
        return (dis - r1 >= R && dis + r1 <= r);
    }
   
// Driver Code
 
        // Both circle with radius 'r'
        // and 'R' have center (0,0)
        let r = 8, R = 4, r1 = 2, x1 = 6, y1 = 0;
         
        if (checkcircle(r, R, r1, x1, y1))
            document.write("yes");
        else
            document.write("no");
 
// This code is contributed by splevel62.
</script>

Output: 

yes

 

Time Complexity: O(log(n)) since using inbuilt sqrt function

Auxiliary Space: O(1)




Reffered: https://www.geeksforgeeks.org


Mathematical

Related
Find value of y mod (2 raised to power x) Find value of y mod (2 raised to power x)
Solve the Linear Equation of Single Variable Solve the Linear Equation of Single Variable
Print Bracket Number Print Bracket Number
Find value of (1^n + 2^n + 3^n + 4^n ) mod 5 Find value of (1^n + 2^n + 3^n + 4^n ) mod 5
Numbers having difference with digit sum more than s Numbers having difference with digit sum more than s

Type:
Geek
Category:
Coding
Sub Category:
Tutorial
Uploaded by:
Admin
Views:
7