dy/dx vinden is nog geen probleem, namelijk:Using the implicit formula, find dy/dx where\(z=x^2+2xy+4y^2=4\)(the curve is an ellips). Find where the maximum and minimum values occur on the ellips.
\(\frac{dy}{dx} = - \frac{\partial z}{\partial x} / \frac{\partial z}{\partial y}\)
Waarbij dy/dx dus wordt:\(-\frac{2x+2y}{2x+8y}\)
Alleen komt nu mijn vraag: hoe bepaal ik de lijn met minima en maxima?
Voor iemand die de beschikking heeft over mathematica, dit is wat ik geprobeerd heb om het te visualiseren, echter kom ik er niet uit.
Code: Selecteer alles
FunctionPlot = x^2 + 2 x*y + 4 y^2 - 4;
PlotrangeX = 1;
PlotrangeY = 1;
PlotrangeZ = 3;
Plotcontours = 10;
Plot3D[FunctionPlot, {x, -PlotrangeX , PlotrangeX }, {y, -PlotrangeY,
PlotrangeY}, AxesLabel -> Automatic ]
ContourPlot[FunctionPlot, {x, -PlotrangeX ,
PlotrangeX }, {y, -PlotrangeY, PlotrangeY}, AxesLabel -> Automatic,
Contours -> Plotcontours]
Der = -(D[FunctionPlot, {x, 1}]/D[FunctionPlot, {y, 1}]);
Show[Plot3D[
Der, {x, -PlotrangeX , PlotrangeX }, {y, -PlotrangeY, PlotrangeY},
AxesLabel -> Automatic , PlotStyle -> Green],
Plot3D[0, {x, -PlotrangeX , PlotrangeX }, {y, -PlotrangeY,
PlotrangeY}, PlotStyle -> {Red, Opacity[0.5]}]]
Puzzels