Guest User

circles problem work

a guest
Oct 10th, 2019
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. Problem statement
  2. =================
  3.  
  4. Imagine a red circle.
  5.  
  6. Around the red circle, imagine a set of identical yellow circles; each
  7. yellow circle is tangent to the red circle and to each of its
  8. neighbors, like balls in a ring bearing.
  9.  
  10. Around the yellow circles, imagine a surrounding circle tangent to
  11. each of the yellow circles (so this circle and the red circle are
  12. concentric). Any area inside the outer circle that's not already red
  13. or yellow, color it blue.
  14.  
  15. Let the radius of each yellow circle be r, and the radius of the red
  16. circle be R.
  17.  
  18. What ratio of r to R maximizes the blue area? The number of yellow
  19. circles can vary as needed, as long as the other qualities are met (no
  20. gaps between yellow circles, no partial circles).
  21.  
  22. ==============================
  23.  
  24. c
  25. *
  26. /|\
  27. /x|x\
  28. / R \
  29. / | \
  30. / | \
  31. *-----*-----*
  32. r r
  33.  
  34. let R = 1
  35. let r > 0 in Reals
  36. let x > 0, x < 2*pi in Reals
  37. let y > 1, in Integers
  38. let red_area, yellow_area, and blue_area > 0 in Reals
  39.  
  40. tan(x) = r
  41. x = arctan(r) = (2*pi*2) / y
  42. > x is some whole fraction of 2*pi (radians).
  43. > y is a natrual number, counting the number of yellow circles.
  44. > There are twice y number of x angles within the circle.
  45.  
  46. arctan(r) = (4*pi) / y
  47. r = tan((4*pi) / y)
  48. y = (4*pi) / arctan(r)
  49.  
  50. red_area = pi
  51. yellow_count =
  52. yellow_area = y * pi * r^2
  53. blue_area_whole = pi * (1 + r)^2
  54. blue_area = blue_area_whole - red_area - yellow_area
  55. = (pi * (1 + r)^2) - pi - (y * pi * r^2)
  56. = pi * (1 + r + r^2) - pi - (y * pi * r^2)
  57. = pi + (pi * r) + (pi * r^2) - pi - (y * pi * r^2)
  58. = pi + (pi * r) + (pi * r^2) - pi - (((4*pi) / arctan(r)) * pi * r^2)
  59.  
  60. > The maximum occurs at a value for r where the derivative of
  61. > blue_area with respect to r is zero.
  62.  
  63. blue_area'r (according to WolframAlpha):
  64. / 4 * pi * r^2 8 * pi * r \
  65. = pi |--------------------- + 2*r - ---------- + 1|
  66. \(r^2 + 1)*arctan(r)^2 arctan(r) /
  67.  
  68. > WolframAlpha says there are no real solutions where the derivative
  69. > is zero, which suggests there is no value of r that maximizes the
  70. > blue area.
Add Comment
Please, Sign In to add comment