A circle of radius 2 rolls along a flat surface at a constant rate, as shown below. A point which has a distance of 3 from the center of the circle is fixed with respect to the circle.
Let $A$ be the midpoint of the arc, and let $B$ be a point where the path of the point intersects the surface. Let $v_A$ and $v_B$ be the speeds of the point at $A$ and $B,$ respectively. Compute $\frac{v_A}{v_B}.$
How do I set up a parameterization and then find the speeds?


The center of the circle follows this path.
$x = 2\theta, y = 2$
If the radius was something other than 2, you would plug that value.
A point moving in a circular path of radius 3.
$x = 3\cos \theta, y = 3\sin \theta$
But this is a counter-clockwise rotation, and first set of equations reflect a clockwise rotation. And lets change these such that the minimum y values is associated with $t = 0$
$x = -3\sin \theta, y = -3\cos \theta$
And we can just add these two components of motion together.
$x = 2\theta - 3\sin \theta, y = 2 - 3\cos\theta$
To find velocity.
$v_x = \frac {dx}{d\theta} = 2 - 3\cos\theta\\ v_y = \frac {dy}{d\theta} = 3\sin\theta$
When $\theta = 0, (v_x,v_y) = (-1,0)$
speed $\|v\| = 1$
To find $A$ we will need to find a second value of $\theta$ where
$x = 2\theta_2 - 3\sin \theta_2 = 0$
You will need numerical methods.
Once you have $\theta_2$
finding $v(\theta_2)$ is fairly simple.