\text{Let } P_1(1+\cos t,; \sin t)\text{ be a point moving on the circle with center } (1,0)\text{ and radius } 1,]Both points start at the intersection point of the two circlesand move counterclockwise along their respective circles.Assume that their speeds satisfyLet be the time when the distance between and is maximized.At this moment, the following expression:where and are relatively prime positive integers.Find the value of .oindent
[THOUGHT] Let me analyze this problem step by step.
- Point moves on a circle centered at with radius 1.
- Point moves on a circle centered at with radius 2.
- Both start at and move counterclockwise.
- The speed ratio is .
First, let me find the relationship between and .
For : At , we need , so and . This works.
The velocity of is , so .
For : At , we need so that .
The velocity of is , so .
Given the speed ratio , we have , so .
Since both move counterclockwise, , so (with ).
Now I need to find the distance between and and maximize it.
Distance squared:
Let me compute this and find when it's maximized. [/THOUGHT] [PYTHON] import numpy as np from sympy import *
t = symbols('t', real=True)
P1 coordinates
x1 = 1 + cos(t) y1 = sin(t)
P2 coordinates (theta = 2t)
x2 = 2cos(2t) y2 = 2sin(2t)
Distance squared
D_sq = (x2 - x1)**2 + (y2 - y1)**2 D_sq_expanded = expand(D_sq) print("D^2 =", D_sq_expanded)
Simplify using trig identities
D_sq_simplified = simplify(D_sq) print("D^2 simplified =", D_sq_simplified)
Take derivative and set to zero
dD_sq = diff(D_sq, t) dD_sq_simplified = simplify(dD_sq) print("d(D^2)/dt =", dD_sq_simplified)
Solve for critical points
critical_points = solve(dD_sq, t) print("Critical points:", critical_points) [/PYTHON]
[THOUGHT] From the derivative , the critical points in are:
- : gives
- : gives and
At : (minimum, both points at same location) At : At :
So maximum is at , which means (positive since counterclockwise in first half).
Now I need to compute: where .
With and :
The expression:
So , , and .
Therefore . [/THOUGHT]
\boxed{141}