home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / sci / math / 11110 < prev    next >
Encoding:
Internet Message Format  |  1992-09-08  |  999 b 

  1. Xref: sparky sci.math:11110 comp.graphics:9513
  2. Path: sparky!uunet!stanford.edu!rutgers!igor.rutgers.edu!yoko.rutgers.edu!czako
  3. From: czako@yoko.rutgers.edu (Gabor M. Czako)
  4. Newsgroups: sci.math,comp.graphics
  5. Subject: Help: inscribed circle of three circles
  6. Message-ID: <Sep.8.09.46.26.1992.3259@yoko.rutgers.edu>
  7. Date: 8 Sep 92 13:46:27 GMT
  8. Followup-To: sci.math
  9. Organization: Rutgers Univ., New Brunswick, N.J.
  10. Lines: 16
  11.  
  12. In a computer program I am writing I need to find the inscribed
  13. circle(s) of three circles.  In detail, I have three circles with
  14. centers (x_1, y_1), (x_2, y_2), and (x_3, y_3) and radii r_1, r_2,
  15. r_3.  I need to find the inscribed circle(s) with center (x, y) and
  16. radius r which satisfies the following equations:
  17.  
  18.     (x - x_1)^2 + (y - y_1)^2 = (r + r_1)^2
  19.     (x - x_2)^2 + (y - y_2)^2 = (r + r_2)^2
  20.     (x - x_3)^2 + (y - y_3)^2 = (r + r_3)^2
  21.  
  22. I have not been able to analytically solve for the 0, 1, or 2
  23. solutions of x, y, and r.  
  24.  
  25. Any help would be greatly appreciated.
  26.  
  27. Gabe
  28.