Find the unit normal to an ellipse given by an equation
$begingroup$
The equation of the ellipse is given as being: $$x^2 -xy + y^2 = 7$$We're instructed to find a unit normal to the curve at a general point $P(x,y)$, and also at point $(-1,2)$ in particular.
My intuition is that I need to parameterize this equation, but I have no idea how to go about doing that. I thought that once I had the parametric equations, I could take the derivative of that set of equations with respect to $t$, and get a general equation for the slope at any point. With that I could probably use the dot product to find the perpendicular normal.
That's my reasoning, but of course, I'm really unsure if any of that is correct.
vectors conic-sections parametrization
$endgroup$
add a comment |
$begingroup$
The equation of the ellipse is given as being: $$x^2 -xy + y^2 = 7$$We're instructed to find a unit normal to the curve at a general point $P(x,y)$, and also at point $(-1,2)$ in particular.
My intuition is that I need to parameterize this equation, but I have no idea how to go about doing that. I thought that once I had the parametric equations, I could take the derivative of that set of equations with respect to $t$, and get a general equation for the slope at any point. With that I could probably use the dot product to find the perpendicular normal.
That's my reasoning, but of course, I'm really unsure if any of that is correct.
vectors conic-sections parametrization
$endgroup$
$begingroup$
You could get $dy/dx$ using implicit differentiation, then take negative reciprocal for slope of normal.
$endgroup$
– coffeemath
Jan 30 at 23:41
add a comment |
$begingroup$
The equation of the ellipse is given as being: $$x^2 -xy + y^2 = 7$$We're instructed to find a unit normal to the curve at a general point $P(x,y)$, and also at point $(-1,2)$ in particular.
My intuition is that I need to parameterize this equation, but I have no idea how to go about doing that. I thought that once I had the parametric equations, I could take the derivative of that set of equations with respect to $t$, and get a general equation for the slope at any point. With that I could probably use the dot product to find the perpendicular normal.
That's my reasoning, but of course, I'm really unsure if any of that is correct.
vectors conic-sections parametrization
$endgroup$
The equation of the ellipse is given as being: $$x^2 -xy + y^2 = 7$$We're instructed to find a unit normal to the curve at a general point $P(x,y)$, and also at point $(-1,2)$ in particular.
My intuition is that I need to parameterize this equation, but I have no idea how to go about doing that. I thought that once I had the parametric equations, I could take the derivative of that set of equations with respect to $t$, and get a general equation for the slope at any point. With that I could probably use the dot product to find the perpendicular normal.
That's my reasoning, but of course, I'm really unsure if any of that is correct.
vectors conic-sections parametrization
vectors conic-sections parametrization
asked Jan 30 at 23:37
WalkerGainWalkerGain
112
112
$begingroup$
You could get $dy/dx$ using implicit differentiation, then take negative reciprocal for slope of normal.
$endgroup$
– coffeemath
Jan 30 at 23:41
add a comment |
$begingroup$
You could get $dy/dx$ using implicit differentiation, then take negative reciprocal for slope of normal.
$endgroup$
– coffeemath
Jan 30 at 23:41
$begingroup$
You could get $dy/dx$ using implicit differentiation, then take negative reciprocal for slope of normal.
$endgroup$
– coffeemath
Jan 30 at 23:41
$begingroup$
You could get $dy/dx$ using implicit differentiation, then take negative reciprocal for slope of normal.
$endgroup$
– coffeemath
Jan 30 at 23:41
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
We have $2x-y-xy'+2yy'=0$ so $y' =frac {y-2x} {2y-x}$. At any point $(x,y)$ on the ellipse the slope of the normal line is $frac {2y-x} {2x-y}$. At $(-1,2)$ it is $-5/4$. (A unit vector along the normal is $(frac 1 {sqrt {1+m^{2}}},frac m {sqrt {1+m^{2}}})$ where $m$ is the slope).
$endgroup$
add a comment |
$begingroup$
The general parametrization of an axis aligned ellipse is $$pmatrix{x = a cos(t) \ y = b sin(t) }$$
But this is oblique ellipse, which can be made parametric, just as above, but with a rotation.
$$pmatrix{x = a cos(t) cos(theta) - b sin(t) sin(theta) \ y = a cos(t) sin(theta) + b sin(t) cos(theta) }$$
Plug into the ellipse equation, and force all coefficients of $sin(t)$ or $cos(t)$ to be zero. With some effort, you will get to
$$ pmatrix{ x = sqrt{7} cos(t) - frac{sqrt{7}}{sqrt{3}} sin(t) \
y = sqrt{7} cos(t) + frac{sqrt{7}}{sqrt{3}} sin(t) }$$
which is a result of $theta = frac{pi}{4}$, $a=sqrt{2}sqrt{7}$ and $b=sqrt{2}sqrt{7}/sqrt{3}$.
Now apply the tricks of differential geometry to find the tangent, normal, curvature etc.
Another approach is to construct the implicit derivative of $f(x,y) = x^2 - x y + y^2 -7$
$$ {rm d}f = frac{partial f}{partial x} {rm d}x + frac{partial f}{partial y}{rm d}y $$
$$ {rm d}f = (2x-y) {rm d}x + (2y-x){rm d}y = 0$$
Note that the tangent and the normal are
$$begin{aligned} vec{e} & = frac{1}{sqrt{{rm d}x^2 + {rm d}y^2}} pmatrix{{rm d}x \ {rm d}y} & vec{n} & = frac{1}{sqrt{{rm d}x^2 + {rm d}y^2}} pmatrix{-{rm d}y \ {rm d}x} end{aligned}$$
and from the implicit derivate, we can arbitrarily make ${rm d}x = frac{x-2 y}{2x -y} {rm d}y$ which is used above to evaluate
$$begin{aligned} vec{e} & = pmatrix{frac{x-2y}{sqrt{5x^2-8xy+5y^2}} \ frac{2x-y}{sqrt{5x^2-8xy+5y^2}}} & vec{n} & = pmatrix{ frac{y-2x}{sqrt{5x^2-8xy+5y^2}} \ frac{x-2y}{sqrt{5x^2-8xy+5y^2}} } end{aligned}$$
Now use different values of $(x,y)$ find a solution.
$endgroup$
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3094283%2ffind-the-unit-normal-to-an-ellipse-given-by-an-equation%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
We have $2x-y-xy'+2yy'=0$ so $y' =frac {y-2x} {2y-x}$. At any point $(x,y)$ on the ellipse the slope of the normal line is $frac {2y-x} {2x-y}$. At $(-1,2)$ it is $-5/4$. (A unit vector along the normal is $(frac 1 {sqrt {1+m^{2}}},frac m {sqrt {1+m^{2}}})$ where $m$ is the slope).
$endgroup$
add a comment |
$begingroup$
We have $2x-y-xy'+2yy'=0$ so $y' =frac {y-2x} {2y-x}$. At any point $(x,y)$ on the ellipse the slope of the normal line is $frac {2y-x} {2x-y}$. At $(-1,2)$ it is $-5/4$. (A unit vector along the normal is $(frac 1 {sqrt {1+m^{2}}},frac m {sqrt {1+m^{2}}})$ where $m$ is the slope).
$endgroup$
add a comment |
$begingroup$
We have $2x-y-xy'+2yy'=0$ so $y' =frac {y-2x} {2y-x}$. At any point $(x,y)$ on the ellipse the slope of the normal line is $frac {2y-x} {2x-y}$. At $(-1,2)$ it is $-5/4$. (A unit vector along the normal is $(frac 1 {sqrt {1+m^{2}}},frac m {sqrt {1+m^{2}}})$ where $m$ is the slope).
$endgroup$
We have $2x-y-xy'+2yy'=0$ so $y' =frac {y-2x} {2y-x}$. At any point $(x,y)$ on the ellipse the slope of the normal line is $frac {2y-x} {2x-y}$. At $(-1,2)$ it is $-5/4$. (A unit vector along the normal is $(frac 1 {sqrt {1+m^{2}}},frac m {sqrt {1+m^{2}}})$ where $m$ is the slope).
answered Jan 30 at 23:52


Kavi Rama MurthyKavi Rama Murthy
72.6k53170
72.6k53170
add a comment |
add a comment |
$begingroup$
The general parametrization of an axis aligned ellipse is $$pmatrix{x = a cos(t) \ y = b sin(t) }$$
But this is oblique ellipse, which can be made parametric, just as above, but with a rotation.
$$pmatrix{x = a cos(t) cos(theta) - b sin(t) sin(theta) \ y = a cos(t) sin(theta) + b sin(t) cos(theta) }$$
Plug into the ellipse equation, and force all coefficients of $sin(t)$ or $cos(t)$ to be zero. With some effort, you will get to
$$ pmatrix{ x = sqrt{7} cos(t) - frac{sqrt{7}}{sqrt{3}} sin(t) \
y = sqrt{7} cos(t) + frac{sqrt{7}}{sqrt{3}} sin(t) }$$
which is a result of $theta = frac{pi}{4}$, $a=sqrt{2}sqrt{7}$ and $b=sqrt{2}sqrt{7}/sqrt{3}$.
Now apply the tricks of differential geometry to find the tangent, normal, curvature etc.
Another approach is to construct the implicit derivative of $f(x,y) = x^2 - x y + y^2 -7$
$$ {rm d}f = frac{partial f}{partial x} {rm d}x + frac{partial f}{partial y}{rm d}y $$
$$ {rm d}f = (2x-y) {rm d}x + (2y-x){rm d}y = 0$$
Note that the tangent and the normal are
$$begin{aligned} vec{e} & = frac{1}{sqrt{{rm d}x^2 + {rm d}y^2}} pmatrix{{rm d}x \ {rm d}y} & vec{n} & = frac{1}{sqrt{{rm d}x^2 + {rm d}y^2}} pmatrix{-{rm d}y \ {rm d}x} end{aligned}$$
and from the implicit derivate, we can arbitrarily make ${rm d}x = frac{x-2 y}{2x -y} {rm d}y$ which is used above to evaluate
$$begin{aligned} vec{e} & = pmatrix{frac{x-2y}{sqrt{5x^2-8xy+5y^2}} \ frac{2x-y}{sqrt{5x^2-8xy+5y^2}}} & vec{n} & = pmatrix{ frac{y-2x}{sqrt{5x^2-8xy+5y^2}} \ frac{x-2y}{sqrt{5x^2-8xy+5y^2}} } end{aligned}$$
Now use different values of $(x,y)$ find a solution.
$endgroup$
add a comment |
$begingroup$
The general parametrization of an axis aligned ellipse is $$pmatrix{x = a cos(t) \ y = b sin(t) }$$
But this is oblique ellipse, which can be made parametric, just as above, but with a rotation.
$$pmatrix{x = a cos(t) cos(theta) - b sin(t) sin(theta) \ y = a cos(t) sin(theta) + b sin(t) cos(theta) }$$
Plug into the ellipse equation, and force all coefficients of $sin(t)$ or $cos(t)$ to be zero. With some effort, you will get to
$$ pmatrix{ x = sqrt{7} cos(t) - frac{sqrt{7}}{sqrt{3}} sin(t) \
y = sqrt{7} cos(t) + frac{sqrt{7}}{sqrt{3}} sin(t) }$$
which is a result of $theta = frac{pi}{4}$, $a=sqrt{2}sqrt{7}$ and $b=sqrt{2}sqrt{7}/sqrt{3}$.
Now apply the tricks of differential geometry to find the tangent, normal, curvature etc.
Another approach is to construct the implicit derivative of $f(x,y) = x^2 - x y + y^2 -7$
$$ {rm d}f = frac{partial f}{partial x} {rm d}x + frac{partial f}{partial y}{rm d}y $$
$$ {rm d}f = (2x-y) {rm d}x + (2y-x){rm d}y = 0$$
Note that the tangent and the normal are
$$begin{aligned} vec{e} & = frac{1}{sqrt{{rm d}x^2 + {rm d}y^2}} pmatrix{{rm d}x \ {rm d}y} & vec{n} & = frac{1}{sqrt{{rm d}x^2 + {rm d}y^2}} pmatrix{-{rm d}y \ {rm d}x} end{aligned}$$
and from the implicit derivate, we can arbitrarily make ${rm d}x = frac{x-2 y}{2x -y} {rm d}y$ which is used above to evaluate
$$begin{aligned} vec{e} & = pmatrix{frac{x-2y}{sqrt{5x^2-8xy+5y^2}} \ frac{2x-y}{sqrt{5x^2-8xy+5y^2}}} & vec{n} & = pmatrix{ frac{y-2x}{sqrt{5x^2-8xy+5y^2}} \ frac{x-2y}{sqrt{5x^2-8xy+5y^2}} } end{aligned}$$
Now use different values of $(x,y)$ find a solution.
$endgroup$
add a comment |
$begingroup$
The general parametrization of an axis aligned ellipse is $$pmatrix{x = a cos(t) \ y = b sin(t) }$$
But this is oblique ellipse, which can be made parametric, just as above, but with a rotation.
$$pmatrix{x = a cos(t) cos(theta) - b sin(t) sin(theta) \ y = a cos(t) sin(theta) + b sin(t) cos(theta) }$$
Plug into the ellipse equation, and force all coefficients of $sin(t)$ or $cos(t)$ to be zero. With some effort, you will get to
$$ pmatrix{ x = sqrt{7} cos(t) - frac{sqrt{7}}{sqrt{3}} sin(t) \
y = sqrt{7} cos(t) + frac{sqrt{7}}{sqrt{3}} sin(t) }$$
which is a result of $theta = frac{pi}{4}$, $a=sqrt{2}sqrt{7}$ and $b=sqrt{2}sqrt{7}/sqrt{3}$.
Now apply the tricks of differential geometry to find the tangent, normal, curvature etc.
Another approach is to construct the implicit derivative of $f(x,y) = x^2 - x y + y^2 -7$
$$ {rm d}f = frac{partial f}{partial x} {rm d}x + frac{partial f}{partial y}{rm d}y $$
$$ {rm d}f = (2x-y) {rm d}x + (2y-x){rm d}y = 0$$
Note that the tangent and the normal are
$$begin{aligned} vec{e} & = frac{1}{sqrt{{rm d}x^2 + {rm d}y^2}} pmatrix{{rm d}x \ {rm d}y} & vec{n} & = frac{1}{sqrt{{rm d}x^2 + {rm d}y^2}} pmatrix{-{rm d}y \ {rm d}x} end{aligned}$$
and from the implicit derivate, we can arbitrarily make ${rm d}x = frac{x-2 y}{2x -y} {rm d}y$ which is used above to evaluate
$$begin{aligned} vec{e} & = pmatrix{frac{x-2y}{sqrt{5x^2-8xy+5y^2}} \ frac{2x-y}{sqrt{5x^2-8xy+5y^2}}} & vec{n} & = pmatrix{ frac{y-2x}{sqrt{5x^2-8xy+5y^2}} \ frac{x-2y}{sqrt{5x^2-8xy+5y^2}} } end{aligned}$$
Now use different values of $(x,y)$ find a solution.
$endgroup$
The general parametrization of an axis aligned ellipse is $$pmatrix{x = a cos(t) \ y = b sin(t) }$$
But this is oblique ellipse, which can be made parametric, just as above, but with a rotation.
$$pmatrix{x = a cos(t) cos(theta) - b sin(t) sin(theta) \ y = a cos(t) sin(theta) + b sin(t) cos(theta) }$$
Plug into the ellipse equation, and force all coefficients of $sin(t)$ or $cos(t)$ to be zero. With some effort, you will get to
$$ pmatrix{ x = sqrt{7} cos(t) - frac{sqrt{7}}{sqrt{3}} sin(t) \
y = sqrt{7} cos(t) + frac{sqrt{7}}{sqrt{3}} sin(t) }$$
which is a result of $theta = frac{pi}{4}$, $a=sqrt{2}sqrt{7}$ and $b=sqrt{2}sqrt{7}/sqrt{3}$.
Now apply the tricks of differential geometry to find the tangent, normal, curvature etc.
Another approach is to construct the implicit derivative of $f(x,y) = x^2 - x y + y^2 -7$
$$ {rm d}f = frac{partial f}{partial x} {rm d}x + frac{partial f}{partial y}{rm d}y $$
$$ {rm d}f = (2x-y) {rm d}x + (2y-x){rm d}y = 0$$
Note that the tangent and the normal are
$$begin{aligned} vec{e} & = frac{1}{sqrt{{rm d}x^2 + {rm d}y^2}} pmatrix{{rm d}x \ {rm d}y} & vec{n} & = frac{1}{sqrt{{rm d}x^2 + {rm d}y^2}} pmatrix{-{rm d}y \ {rm d}x} end{aligned}$$
and from the implicit derivate, we can arbitrarily make ${rm d}x = frac{x-2 y}{2x -y} {rm d}y$ which is used above to evaluate
$$begin{aligned} vec{e} & = pmatrix{frac{x-2y}{sqrt{5x^2-8xy+5y^2}} \ frac{2x-y}{sqrt{5x^2-8xy+5y^2}}} & vec{n} & = pmatrix{ frac{y-2x}{sqrt{5x^2-8xy+5y^2}} \ frac{x-2y}{sqrt{5x^2-8xy+5y^2}} } end{aligned}$$
Now use different values of $(x,y)$ find a solution.
edited Jan 31 at 6:31
answered Jan 31 at 6:14


ja72ja72
7,54212044
7,54212044
add a comment |
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3094283%2ffind-the-unit-normal-to-an-ellipse-given-by-an-equation%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
$begingroup$
You could get $dy/dx$ using implicit differentiation, then take negative reciprocal for slope of normal.
$endgroup$
– coffeemath
Jan 30 at 23:41