Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. Graphics[{{Yellow, #}, {Green, Circle /@ #[[1]]}}] &@
  2. SSSTriangle[1, 1, 1]
  3.  
  4. pts = CirclePoints[3]
  5. Graphics[{
  6. Thick, Green, Circle[#, Sqrt[3]] & /@ pts,
  7. Yellow, EdgeForm[Black],
  8. FilledCurve@Line@pts
  9. }]
  10.  
  11. circles = {Circle[{-1/2, 0}, 1], Circle[{1/2, 0}, 1]};
  12. AppendTo[circles,
  13. Circle[RegionIntersection[circles] // First // Last, 1]];
  14. triangle = (RegionIntersection[#1, #2, Disk @@ #3] &) @@@
  15. (RotateRight[circles, #] & /@ Range[3]) // Part[#, All, 1] & // Polygon;
  16. Graphics[{Green, circles, Yellow, EdgeForm[Black], triangle}]
  17.  
  18. Graphics[{Green, {Circle[{-(1/2), 0}, 1], Circle[{1/2, 0}, 1],
  19. Circle[{0, Sqrt[3]/2}, 1]}, Yellow, EdgeForm[Black],
  20. Polygon[{{1/2, 0}, {-(1/2), 0}, {0, Sqrt[3]/2}}]}]
  21.  
  22. scene = GeometricScene[
  23. {a, b, c}, (* points *)
  24. {
  25. Triangle[{a, b, c}],
  26. CircleThrough[{a, b}, c],
  27. CircleThrough[{b, c}, a],
  28. CircleThrough[{c, a}, b]
  29. }
  30. ];
  31. scene //RandomInstance
  32.  
  33. FindGeometricConjectures[scene]["Conclusions"]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement