I am currently stuck on this question and it's implementation on Mathematica.
You are the chief engineer at the Badger Steel Plate Company in Madison, Wisconsin. In comes an order for 750 square steel plates, each measuring 12 inches wide and 12 inches long.
Go to the drawing board
plate = Graphics[{Blue, Thickness[0.01], Line[{{-6, -6}, {-6, 6}, {6, 6}, {6, -6}, {-6, -6}}]}];
plateplot = Show[plate, Axes -> True, AxesOrigin -> {0, 0}, AspectRatio -> Automatic, AxesLabel -> {"x", "y"}]
But here's the kicker:
The plates are to have everything inside the ellipse $(x/4)^2+(y/2)^2=1$ cut out.
Take a look:
Clear[x, y, t];
x[t_] = 4 Cos[t];
y[t_] = 2 Sin[t];
hole = ParametricPlot[{x[t], y[t]}, {t, 0, 2 Pi}, PlotStyle -> {{Blue,
Thickness[0.01]}}];
Show[plateplot, hole]
You have a new robotic router that takes instructions from Mathematica and whose cutting center can be programmed to follow any curve you tell it to follow. If you are going to use a bit 1 inch in diameter, then what curve should you program in as the path of the center of the router to cut out the ellipse?
After you have found the correct curve, add its plot to the plot above.
Big Tip:
If your curve is an ellipse, then you screwed up.
The normal vector D[unittan[t], t] could be very useful.
I was able to obtain the plot using normal vector D[unittan[t], t] for the plot which produced the Following plot
Now I have the following question.
Actually, the bit size of 1 inch in diameter used above was arbitrarily chosen by reaching into the
drawer and pulling out a bit. You could always get by with a smaller bit. Why?
But you cannot use bits that are too large. Why?
Try to estimate the diameter of the largest bit that you could use to do the job.
Any help on demystifying this question will be greatly appreciated




The largest bit you can use has the size of the osculating circle at the pointier vertices of the ellipse. Any larger bit will not be able to cut the region around those vertices; smaller bits always work because the parallel curves that those bits travel on to cut out the ellipses are smooth.
The exact osculating radius at the points $(\pm4,0)$ is, according to a formula conveniently placed on Wikipedia, $\frac{2^2}4=1$. Thus the largest bit that can drill the given ellipse is $2$ inches wide.