2D Coordinate - Plot a line parallel to another line
I am given values of $x_1, y_1, x_2, y_2$, $theta_{1}$, $theta_{2}$, $h$, $m$ and $L$.
I want to find out the coordinate of the Unknown Point of Interest
, which is the end point of line2
which is parallel to line1
.
How can I do this?
geometry trigonometry coordinate-systems
add a comment |
I am given values of $x_1, y_1, x_2, y_2$, $theta_{1}$, $theta_{2}$, $h$, $m$ and $L$.
I want to find out the coordinate of the Unknown Point of Interest
, which is the end point of line2
which is parallel to line1
.
How can I do this?
geometry trigonometry coordinate-systems
add a comment |
I am given values of $x_1, y_1, x_2, y_2$, $theta_{1}$, $theta_{2}$, $h$, $m$ and $L$.
I want to find out the coordinate of the Unknown Point of Interest
, which is the end point of line2
which is parallel to line1
.
How can I do this?
geometry trigonometry coordinate-systems
I am given values of $x_1, y_1, x_2, y_2$, $theta_{1}$, $theta_{2}$, $h$, $m$ and $L$.
I want to find out the coordinate of the Unknown Point of Interest
, which is the end point of line2
which is parallel to line1
.
How can I do this?
geometry trigonometry coordinate-systems
geometry trigonometry coordinate-systems
asked Nov 26 at 8:44
Eric Kim
1073
1073
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Consider a unitary vector $hat{u}_1$ along the direction of line 1,
$$
hat{u}_1 = pmatrix{cos theta_2 \ sintheta_2}
$$
The location you are looking for is
$$
mbox{unkowon point of interest} = pmatrix{x_2 \ y_2} + L hat{u}_1 = pmatrix{x_2 + Lcostheta_2 \ y_2 + L sintheta_2}
$$
thanks for answering two of my questions in a row. your answers really helped me. I'm a python programmer who sucks at trigonometry... haha. I will accept your answers as soon as i can
– Eric Kim
Nov 26 at 8:55
1
@EricKim Happy to help
– caverac
Nov 26 at 8:56
add a comment |
First you know x2 and y2 (the coordinates of the beginnning of line 2)
Because line 1 and line 2 are parallel, all you need to do is slide the point $(begin{matrix}x2\y2end{matrix})$ along line 2.
If you consider line 2 as a vector: $vec{v} = (begin{matrix} L*cos(theta_2) \ L*sin(theta_2) end{matrix})$
All you need to do is move point using the vector (adding them together):
$$Point = (begin{matrix} x2+L*cos(theta_2)\ y2+L*sin(theta_2)end{matrix})$$
Note: i think $theta_1$ and $theta_2$ are mixed up on the picture, here i used the picture as my reference. Feel free to swap $theta_1$ and $theta_2$ if needed
Note2: in theory the slope $m=frac{sin(theta_2)}{cos(theta_2)} = tan(theta_2)$
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%2f3014054%2f2d-coordinate-plot-a-line-parallel-to-another-line%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
Consider a unitary vector $hat{u}_1$ along the direction of line 1,
$$
hat{u}_1 = pmatrix{cos theta_2 \ sintheta_2}
$$
The location you are looking for is
$$
mbox{unkowon point of interest} = pmatrix{x_2 \ y_2} + L hat{u}_1 = pmatrix{x_2 + Lcostheta_2 \ y_2 + L sintheta_2}
$$
thanks for answering two of my questions in a row. your answers really helped me. I'm a python programmer who sucks at trigonometry... haha. I will accept your answers as soon as i can
– Eric Kim
Nov 26 at 8:55
1
@EricKim Happy to help
– caverac
Nov 26 at 8:56
add a comment |
Consider a unitary vector $hat{u}_1$ along the direction of line 1,
$$
hat{u}_1 = pmatrix{cos theta_2 \ sintheta_2}
$$
The location you are looking for is
$$
mbox{unkowon point of interest} = pmatrix{x_2 \ y_2} + L hat{u}_1 = pmatrix{x_2 + Lcostheta_2 \ y_2 + L sintheta_2}
$$
thanks for answering two of my questions in a row. your answers really helped me. I'm a python programmer who sucks at trigonometry... haha. I will accept your answers as soon as i can
– Eric Kim
Nov 26 at 8:55
1
@EricKim Happy to help
– caverac
Nov 26 at 8:56
add a comment |
Consider a unitary vector $hat{u}_1$ along the direction of line 1,
$$
hat{u}_1 = pmatrix{cos theta_2 \ sintheta_2}
$$
The location you are looking for is
$$
mbox{unkowon point of interest} = pmatrix{x_2 \ y_2} + L hat{u}_1 = pmatrix{x_2 + Lcostheta_2 \ y_2 + L sintheta_2}
$$
Consider a unitary vector $hat{u}_1$ along the direction of line 1,
$$
hat{u}_1 = pmatrix{cos theta_2 \ sintheta_2}
$$
The location you are looking for is
$$
mbox{unkowon point of interest} = pmatrix{x_2 \ y_2} + L hat{u}_1 = pmatrix{x_2 + Lcostheta_2 \ y_2 + L sintheta_2}
$$
answered Nov 26 at 8:50
caverac
13.1k21029
13.1k21029
thanks for answering two of my questions in a row. your answers really helped me. I'm a python programmer who sucks at trigonometry... haha. I will accept your answers as soon as i can
– Eric Kim
Nov 26 at 8:55
1
@EricKim Happy to help
– caverac
Nov 26 at 8:56
add a comment |
thanks for answering two of my questions in a row. your answers really helped me. I'm a python programmer who sucks at trigonometry... haha. I will accept your answers as soon as i can
– Eric Kim
Nov 26 at 8:55
1
@EricKim Happy to help
– caverac
Nov 26 at 8:56
thanks for answering two of my questions in a row. your answers really helped me. I'm a python programmer who sucks at trigonometry... haha. I will accept your answers as soon as i can
– Eric Kim
Nov 26 at 8:55
thanks for answering two of my questions in a row. your answers really helped me. I'm a python programmer who sucks at trigonometry... haha. I will accept your answers as soon as i can
– Eric Kim
Nov 26 at 8:55
1
1
@EricKim Happy to help
– caverac
Nov 26 at 8:56
@EricKim Happy to help
– caverac
Nov 26 at 8:56
add a comment |
First you know x2 and y2 (the coordinates of the beginnning of line 2)
Because line 1 and line 2 are parallel, all you need to do is slide the point $(begin{matrix}x2\y2end{matrix})$ along line 2.
If you consider line 2 as a vector: $vec{v} = (begin{matrix} L*cos(theta_2) \ L*sin(theta_2) end{matrix})$
All you need to do is move point using the vector (adding them together):
$$Point = (begin{matrix} x2+L*cos(theta_2)\ y2+L*sin(theta_2)end{matrix})$$
Note: i think $theta_1$ and $theta_2$ are mixed up on the picture, here i used the picture as my reference. Feel free to swap $theta_1$ and $theta_2$ if needed
Note2: in theory the slope $m=frac{sin(theta_2)}{cos(theta_2)} = tan(theta_2)$
add a comment |
First you know x2 and y2 (the coordinates of the beginnning of line 2)
Because line 1 and line 2 are parallel, all you need to do is slide the point $(begin{matrix}x2\y2end{matrix})$ along line 2.
If you consider line 2 as a vector: $vec{v} = (begin{matrix} L*cos(theta_2) \ L*sin(theta_2) end{matrix})$
All you need to do is move point using the vector (adding them together):
$$Point = (begin{matrix} x2+L*cos(theta_2)\ y2+L*sin(theta_2)end{matrix})$$
Note: i think $theta_1$ and $theta_2$ are mixed up on the picture, here i used the picture as my reference. Feel free to swap $theta_1$ and $theta_2$ if needed
Note2: in theory the slope $m=frac{sin(theta_2)}{cos(theta_2)} = tan(theta_2)$
add a comment |
First you know x2 and y2 (the coordinates of the beginnning of line 2)
Because line 1 and line 2 are parallel, all you need to do is slide the point $(begin{matrix}x2\y2end{matrix})$ along line 2.
If you consider line 2 as a vector: $vec{v} = (begin{matrix} L*cos(theta_2) \ L*sin(theta_2) end{matrix})$
All you need to do is move point using the vector (adding them together):
$$Point = (begin{matrix} x2+L*cos(theta_2)\ y2+L*sin(theta_2)end{matrix})$$
Note: i think $theta_1$ and $theta_2$ are mixed up on the picture, here i used the picture as my reference. Feel free to swap $theta_1$ and $theta_2$ if needed
Note2: in theory the slope $m=frac{sin(theta_2)}{cos(theta_2)} = tan(theta_2)$
First you know x2 and y2 (the coordinates of the beginnning of line 2)
Because line 1 and line 2 are parallel, all you need to do is slide the point $(begin{matrix}x2\y2end{matrix})$ along line 2.
If you consider line 2 as a vector: $vec{v} = (begin{matrix} L*cos(theta_2) \ L*sin(theta_2) end{matrix})$
All you need to do is move point using the vector (adding them together):
$$Point = (begin{matrix} x2+L*cos(theta_2)\ y2+L*sin(theta_2)end{matrix})$$
Note: i think $theta_1$ and $theta_2$ are mixed up on the picture, here i used the picture as my reference. Feel free to swap $theta_1$ and $theta_2$ if needed
Note2: in theory the slope $m=frac{sin(theta_2)}{cos(theta_2)} = tan(theta_2)$
answered Nov 26 at 9:06
TheD0ubleT
39218
39218
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.
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%2f3014054%2f2d-coordinate-plot-a-line-parallel-to-another-line%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