For our first meeting, we considered two problems about parameterized curves.
In the diagram below, use \(t\) as a parameter and find a parametric description of the unit circle less the point \( (-1,0)\).
A ribbon of length 10 inches is wrapped around a cylinder of diameter 1 inch. We slowly unwrap the ribbon while keeping it taut.
For next time please do the following:
I used Sage. This time with the Sage Single Cell Server, which is good for quick work. My code for this plot is:
c = circle((0,0),1)
l1 = line([(1,-1),(1,1)])
l2 = line([(-1,0),(1,2/3)], linestyle="--")
t = text("(1,t)",(1.15,2/3), fontsize=10, color='black')
(c+l1+l2+t).show(figsize=[3,3])