Prove that two circles can intersect at more than two points
Answers
Answered by
0
hey mate here is your answer
Check if two given circles touch or intersect each other
There are two circle A and B with their centers C1(x1, y1) and C2(x2, y2) and radius R1and R2. Task is to check both circles A and B touch each other or not.
Examples :
Input : C1 = (3, 4) C2 = (14, 18) R1 = 5, R2 = 8 Output : Circles do not touch each other. Input : C1 = (2, 3) C2 = (15, 28) R1 = 12, R2 = 10 Output : Circles intersect with each other. Input : C1 = (-10, 8) C2 = (14, -24) R1 = 30, R2 = 10 Input : -10 8 14 -24 30 10 Output : Circle touch each other
Please give me as brainlist
Check if two given circles touch or intersect each other
There are two circle A and B with their centers C1(x1, y1) and C2(x2, y2) and radius R1and R2. Task is to check both circles A and B touch each other or not.
Examples :
Input : C1 = (3, 4) C2 = (14, 18) R1 = 5, R2 = 8 Output : Circles do not touch each other. Input : C1 = (2, 3) C2 = (15, 28) R1 = 12, R2 = 10 Output : Circles intersect with each other. Input : C1 = (-10, 8) C2 = (14, -24) R1 = 30, R2 = 10 Input : -10 8 14 -24 30 10 Output : Circle touch each other
Please give me as brainlist
Similar questions