とおく。
における接線は、
この点を通り、
を法線ベクトルに持つので、
とおく。
求める接線の接点を
は曲線
.
接線は、
を通り、
とおき、
.
接平面は、
| Mathematica にて |
F[x_,y_]:=x^2/3+y^2/2
g1 = ContourPlot[F[x, y] == 1, {x, -3, 3}, {y, -3, 3},
AspectRatio -> Auto, Axes -> True]
g2 = Plot[{Sqrt[5] - x, -Sqrt[5] - x}, {x, -3, 3},
AspectRatio -> Auto]
g=Show[g1,g2]
Export["toi12.eps",g]
g1 = ParametricPlot3D[{2Sin[u]Cos[v],Sqrt[3]Sin[u]Sin[v],Sqrt[2]Cos[u]},
{u,0,Pi},{v,0,2Pi}]
g2 = Plot3D[{3-x-y,-3-x-y},{x,-3,3},{y,-3,3}]
g=Show[g2,g1,BoxRatios->{3,3,10},AspectRatio->Auto]
|