Point of intersection of pair of straight lines.
Let non homogenous curve equation be $ax^2 + 2hxy + by^2 + 2gx + 2fy + c=0 $ then first time partial differentiating with respect to x gives $ ax + hy + g =0$ and second time partial differentiating with respect to y gives $by + hx + f =0$ solving both equations give point of intersection of pair of lines. $$left(dfrac{hf-bg}{ab - h^2}right ) , left ( dfrac {gh-af}{ab - h^2}right)$$
My question is - why partial differentiating makes work easy and what those two equations represent?
partial-derivative curves
bumped to the homepage by Community♦ 7 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
Let non homogenous curve equation be $ax^2 + 2hxy + by^2 + 2gx + 2fy + c=0 $ then first time partial differentiating with respect to x gives $ ax + hy + g =0$ and second time partial differentiating with respect to y gives $by + hx + f =0$ solving both equations give point of intersection of pair of lines. $$left(dfrac{hf-bg}{ab - h^2}right ) , left ( dfrac {gh-af}{ab - h^2}right)$$
My question is - why partial differentiating makes work easy and what those two equations represent?
partial-derivative curves
bumped to the homepage by Community♦ 7 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
See math.stackexchange.com/q/1941210/265466 for several explanations.
– amd
Feb 9 '17 at 18:58
add a comment |
Let non homogenous curve equation be $ax^2 + 2hxy + by^2 + 2gx + 2fy + c=0 $ then first time partial differentiating with respect to x gives $ ax + hy + g =0$ and second time partial differentiating with respect to y gives $by + hx + f =0$ solving both equations give point of intersection of pair of lines. $$left(dfrac{hf-bg}{ab - h^2}right ) , left ( dfrac {gh-af}{ab - h^2}right)$$
My question is - why partial differentiating makes work easy and what those two equations represent?
partial-derivative curves
Let non homogenous curve equation be $ax^2 + 2hxy + by^2 + 2gx + 2fy + c=0 $ then first time partial differentiating with respect to x gives $ ax + hy + g =0$ and second time partial differentiating with respect to y gives $by + hx + f =0$ solving both equations give point of intersection of pair of lines. $$left(dfrac{hf-bg}{ab - h^2}right ) , left ( dfrac {gh-af}{ab - h^2}right)$$
My question is - why partial differentiating makes work easy and what those two equations represent?
partial-derivative curves
partial-derivative curves
edited Feb 9 '17 at 16:16
amWhy
191k28224439
191k28224439
asked Feb 9 '17 at 15:10
user402003
bumped to the homepage by Community♦ 7 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 7 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
See math.stackexchange.com/q/1941210/265466 for several explanations.
– amd
Feb 9 '17 at 18:58
add a comment |
See math.stackexchange.com/q/1941210/265466 for several explanations.
– amd
Feb 9 '17 at 18:58
See math.stackexchange.com/q/1941210/265466 for several explanations.
– amd
Feb 9 '17 at 18:58
See math.stackexchange.com/q/1941210/265466 for several explanations.
– amd
Feb 9 '17 at 18:58
add a comment |
1 Answer
1
active
oldest
votes
You have some errors in your partial derivatives:
We start with your original equation: $$ax^2 + 2hxy + by^2 + 2gx + 2fy + c=0 $$
$(1)$ Finding the partial derivative with respect to $x$ gives: $$ax +hy +g=0$$
$(2)$ Finding the partial derivative with respect to $y$ gives $$2hx+2by+2f = by +hx+ f = 0$$ So in the first case, w.r.t. x, your $b$ in $by$ needs to be an $h$. In the second partial, w.r.t. y, your $us$ should be $hx.$
That gives us the equations of two lines:
$$begin{align} ax + hy+g &= 0 \ \
hx+by +f &= 0end{align}$$
Now we have a system of two equations and two variables, with $a, b, c, f, g, h$ all real numbers, from which we seek the solution $(x, y)$ at which the two given lines intersect.
Indeed, sollving the system gives us the intersection of the partial derivatives at $$left(dfrac{hf-bg}{ab - h^2}right ) , left ( dfrac {gh-af}{ab - h^2}right)$$ provided $ab-h^2 leq 0$ and $bneq 0$.
The question still remains unanswered : My question is - why partial differentiating makes work easy and what those two equations represent?
– Yash Kumar Verma
Sep 19 at 20:11
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%2f2136763%2fpoint-of-intersection-of-pair-of-straight-lines%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You have some errors in your partial derivatives:
We start with your original equation: $$ax^2 + 2hxy + by^2 + 2gx + 2fy + c=0 $$
$(1)$ Finding the partial derivative with respect to $x$ gives: $$ax +hy +g=0$$
$(2)$ Finding the partial derivative with respect to $y$ gives $$2hx+2by+2f = by +hx+ f = 0$$ So in the first case, w.r.t. x, your $b$ in $by$ needs to be an $h$. In the second partial, w.r.t. y, your $us$ should be $hx.$
That gives us the equations of two lines:
$$begin{align} ax + hy+g &= 0 \ \
hx+by +f &= 0end{align}$$
Now we have a system of two equations and two variables, with $a, b, c, f, g, h$ all real numbers, from which we seek the solution $(x, y)$ at which the two given lines intersect.
Indeed, sollving the system gives us the intersection of the partial derivatives at $$left(dfrac{hf-bg}{ab - h^2}right ) , left ( dfrac {gh-af}{ab - h^2}right)$$ provided $ab-h^2 leq 0$ and $bneq 0$.
The question still remains unanswered : My question is - why partial differentiating makes work easy and what those two equations represent?
– Yash Kumar Verma
Sep 19 at 20:11
add a comment |
You have some errors in your partial derivatives:
We start with your original equation: $$ax^2 + 2hxy + by^2 + 2gx + 2fy + c=0 $$
$(1)$ Finding the partial derivative with respect to $x$ gives: $$ax +hy +g=0$$
$(2)$ Finding the partial derivative with respect to $y$ gives $$2hx+2by+2f = by +hx+ f = 0$$ So in the first case, w.r.t. x, your $b$ in $by$ needs to be an $h$. In the second partial, w.r.t. y, your $us$ should be $hx.$
That gives us the equations of two lines:
$$begin{align} ax + hy+g &= 0 \ \
hx+by +f &= 0end{align}$$
Now we have a system of two equations and two variables, with $a, b, c, f, g, h$ all real numbers, from which we seek the solution $(x, y)$ at which the two given lines intersect.
Indeed, sollving the system gives us the intersection of the partial derivatives at $$left(dfrac{hf-bg}{ab - h^2}right ) , left ( dfrac {gh-af}{ab - h^2}right)$$ provided $ab-h^2 leq 0$ and $bneq 0$.
The question still remains unanswered : My question is - why partial differentiating makes work easy and what those two equations represent?
– Yash Kumar Verma
Sep 19 at 20:11
add a comment |
You have some errors in your partial derivatives:
We start with your original equation: $$ax^2 + 2hxy + by^2 + 2gx + 2fy + c=0 $$
$(1)$ Finding the partial derivative with respect to $x$ gives: $$ax +hy +g=0$$
$(2)$ Finding the partial derivative with respect to $y$ gives $$2hx+2by+2f = by +hx+ f = 0$$ So in the first case, w.r.t. x, your $b$ in $by$ needs to be an $h$. In the second partial, w.r.t. y, your $us$ should be $hx.$
That gives us the equations of two lines:
$$begin{align} ax + hy+g &= 0 \ \
hx+by +f &= 0end{align}$$
Now we have a system of two equations and two variables, with $a, b, c, f, g, h$ all real numbers, from which we seek the solution $(x, y)$ at which the two given lines intersect.
Indeed, sollving the system gives us the intersection of the partial derivatives at $$left(dfrac{hf-bg}{ab - h^2}right ) , left ( dfrac {gh-af}{ab - h^2}right)$$ provided $ab-h^2 leq 0$ and $bneq 0$.
You have some errors in your partial derivatives:
We start with your original equation: $$ax^2 + 2hxy + by^2 + 2gx + 2fy + c=0 $$
$(1)$ Finding the partial derivative with respect to $x$ gives: $$ax +hy +g=0$$
$(2)$ Finding the partial derivative with respect to $y$ gives $$2hx+2by+2f = by +hx+ f = 0$$ So in the first case, w.r.t. x, your $b$ in $by$ needs to be an $h$. In the second partial, w.r.t. y, your $us$ should be $hx.$
That gives us the equations of two lines:
$$begin{align} ax + hy+g &= 0 \ \
hx+by +f &= 0end{align}$$
Now we have a system of two equations and two variables, with $a, b, c, f, g, h$ all real numbers, from which we seek the solution $(x, y)$ at which the two given lines intersect.
Indeed, sollving the system gives us the intersection of the partial derivatives at $$left(dfrac{hf-bg}{ab - h^2}right ) , left ( dfrac {gh-af}{ab - h^2}right)$$ provided $ab-h^2 leq 0$ and $bneq 0$.
edited Feb 9 '17 at 16:43
answered Feb 9 '17 at 15:49
amWhy
191k28224439
191k28224439
The question still remains unanswered : My question is - why partial differentiating makes work easy and what those two equations represent?
– Yash Kumar Verma
Sep 19 at 20:11
add a comment |
The question still remains unanswered : My question is - why partial differentiating makes work easy and what those two equations represent?
– Yash Kumar Verma
Sep 19 at 20:11
The question still remains unanswered : My question is - why partial differentiating makes work easy and what those two equations represent?
– Yash Kumar Verma
Sep 19 at 20:11
The question still remains unanswered : My question is - why partial differentiating makes work easy and what those two equations represent?
– Yash Kumar Verma
Sep 19 at 20:11
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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.
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%2f2136763%2fpoint-of-intersection-of-pair-of-straight-lines%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
See math.stackexchange.com/q/1941210/265466 for several explanations.
– amd
Feb 9 '17 at 18:58