The function $4-x^{2}-2y^{2}$
Set $y = 1$
Then <1,1,1>
And its derivative at $y = 1$ is
$$f'(x,1) = -2x$$
The following plot the curve at $y = 1$ intersecting the surface, and the derivative at that point.
My question is, how do I work out the formula to plot a Manipulate plot that allows me to move the tangent (derivative) along the curve in real time? I just can't seem to work out the solution.
Manipulate[
ParametricPlot3D[{{t, 1, 2 - t^2}, {1 + t, 1, 1 - 2 t}, {t, -3, 3},
AxesLabel -> {"x", "y", "z"}],
{k, -4, 5}]
