Finding Tangent Lines to Two Circles

  • Thread starter Thread starter flyingmuskrat
  • Start date Start date
  • Tags Tags
    Circles Tangent
Click For Summary
SUMMARY

This discussion focuses on finding the equations of tangent lines between two circles, specifically internal common tangents. The key information required includes the coordinates of the circle centers and their respective radii. The approach involves geometric principles, particularly the application of Pythagoras' theorem to determine the lengths and angles associated with the tangent lines. The user emphasizes that derivatives are unnecessary for this geometric problem and seeks assistance in translating the tangent line equations to fit the original circles.

PREREQUISITES
  • Understanding of basic geometry, particularly triangles and circles
  • Familiarity with Pythagorean theorem applications
  • Knowledge of tangent lines and their properties
  • Basic programming skills for implementing geometric calculations
NEXT STEPS
  • Research the geometric properties of tangent lines to circles
  • Learn how to apply Pythagorean theorem in circle-related problems
  • Explore algorithms for calculating tangent lines programmatically
  • Investigate transformations in coordinate geometry for simplifying problems
USEFUL FOR

Mathematicians, computer programmers developing geometric algorithms, and anyone interested in computational geometry involving circles and tangents.

flyingmuskrat
Messages
4
Reaction score
0
How do you find the equation of the (sometimes 2 possible) tangent lines between two (or more) circles? like the 2 tangents that cross in the picture on this page: http://mathworld.wolfram.com/Circle-CircleTangents.html.

The application for this is for a program that would draw this tangent line and for some reason a couple approaches have failed using derivatives, trying to find the angle with the tangent, etc..

The known information is the coordinates of the centers of the circles and the radii of each circle.

I'm not sure what's wrong, but I'm looking for help walking through this kind of simple problem. thanks so much!
 
Mathematics news on Phys.org
It seems to me that all the information you need is right there in the page that you link...

Clearly, it is easiest if you do a transformation so that x1 and x2 fall on the horizontal (like they show in the middle picture), and even better if x1 is at the origin.

...assuming that:

you can calculate, for example, the tangent in the second picture.

They first determine the line that is parallel to the tangent but that passes through x2 and is tangent to a circle on x1 with a radius of r1-r2...do you get that?

you have the 2 centers
you have the distance between the two centers...this is the hypotenuse of the one triangle the you will need to solve.
you have the r1-r2 short side of the triangle
because you know that the short side (r1-r2) and the 'tangent' line are perpendicular at the tangent point, you can apply Pythagoras' theorem and calculate the length of the long side (the 'tangent' line that passes through x2) of this rectangle
once you have all the sides, you can now calculate the angle (slope) of the 'tangent' line
and since you know it passes through x2, you can come up with an equation for it
then, translate further so that it actually becomes tangent to the 2 circles

so, I am not you ever need derivatives, here...it's all geometry
 
All the stuff before with I'm fine on but I'm confused on "translating this line along the radius through a distance until it falls on the original two circles" as it says in the link or "translate further so that it actually becomes tangent to the 2 circles" as you described. I'm looking for the internal common tangents, not the external ones, so it's not parallel. It's not that I couldn't find this tangent line myself, but I'm trying to write a computer program that constructs this line using it's equation for a large quantity of data.
 
nevermind I think I'm fine. You just solve those equations.
 
Given a circle C, can you solve the proposition "L is a tangent line to C" for L?

If you can do that, and find a convenient way to express the solution space, and are given another circle C', you could then proceed to solve the proposition "L is also a tangent line to C'".



Or, you can do some geometry to get rid of the circles and turn it into a problem of line segments and angles...
 

Similar threads

  • · Replies 2 ·
Replies
2
Views
4K
Replies
5
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
Replies
5
Views
2K
  • · Replies 10 ·
Replies
10
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 23 ·
Replies
23
Views
4K
  • · Replies 2 ·
Replies
2
Views
1K