What curve is described by $s = langle 2t,9sin t,9cos trangle$?
$begingroup$
What type of curve is described by the following?
$$s = langle 2t,9sin(t),9cos(t)rangle$$
Attempt
The $j$ and $k$ components of the curve describe a circle of radius $3$ in the $j-k$ plane and the $i$ component is linear. How can the type of curve be determined from this?
calculus geometry
$endgroup$
add a comment |
$begingroup$
What type of curve is described by the following?
$$s = langle 2t,9sin(t),9cos(t)rangle$$
Attempt
The $j$ and $k$ components of the curve describe a circle of radius $3$ in the $j-k$ plane and the $i$ component is linear. How can the type of curve be determined from this?
calculus geometry
$endgroup$
1
$begingroup$
I think you'll find it's a helix lined up on the $x$ axis.
$endgroup$
– Adrian Keister
Jan 15 at 17:00
$begingroup$
Thanks! Do you know this from experience or is there a nice way to figure that out?
$endgroup$
– Sjoseph
Jan 15 at 17:01
2
$begingroup$
Both. The $y$ and $z$ components describe a circle, by themselves. The $x$ coordinate is just going to march out steadily. If you imagine that in your mind, it comes out to a helix.
$endgroup$
– Adrian Keister
Jan 15 at 17:02
2
$begingroup$
From experience it is quickly recognizable as a helix, but you can also figure it out by noting that the projection of the curve on the $yz$-plane is a circle of radius 9 centered at the origin and the $x$-component climbs out of the $yz$-plane at a constant rate.
$endgroup$
– THW
Jan 15 at 17:04
add a comment |
$begingroup$
What type of curve is described by the following?
$$s = langle 2t,9sin(t),9cos(t)rangle$$
Attempt
The $j$ and $k$ components of the curve describe a circle of radius $3$ in the $j-k$ plane and the $i$ component is linear. How can the type of curve be determined from this?
calculus geometry
$endgroup$
What type of curve is described by the following?
$$s = langle 2t,9sin(t),9cos(t)rangle$$
Attempt
The $j$ and $k$ components of the curve describe a circle of radius $3$ in the $j-k$ plane and the $i$ component is linear. How can the type of curve be determined from this?
calculus geometry
calculus geometry
edited Jan 15 at 17:47
Blue
49.8k870158
49.8k870158
asked Jan 15 at 16:57
SjosephSjoseph
196111
196111
1
$begingroup$
I think you'll find it's a helix lined up on the $x$ axis.
$endgroup$
– Adrian Keister
Jan 15 at 17:00
$begingroup$
Thanks! Do you know this from experience or is there a nice way to figure that out?
$endgroup$
– Sjoseph
Jan 15 at 17:01
2
$begingroup$
Both. The $y$ and $z$ components describe a circle, by themselves. The $x$ coordinate is just going to march out steadily. If you imagine that in your mind, it comes out to a helix.
$endgroup$
– Adrian Keister
Jan 15 at 17:02
2
$begingroup$
From experience it is quickly recognizable as a helix, but you can also figure it out by noting that the projection of the curve on the $yz$-plane is a circle of radius 9 centered at the origin and the $x$-component climbs out of the $yz$-plane at a constant rate.
$endgroup$
– THW
Jan 15 at 17:04
add a comment |
1
$begingroup$
I think you'll find it's a helix lined up on the $x$ axis.
$endgroup$
– Adrian Keister
Jan 15 at 17:00
$begingroup$
Thanks! Do you know this from experience or is there a nice way to figure that out?
$endgroup$
– Sjoseph
Jan 15 at 17:01
2
$begingroup$
Both. The $y$ and $z$ components describe a circle, by themselves. The $x$ coordinate is just going to march out steadily. If you imagine that in your mind, it comes out to a helix.
$endgroup$
– Adrian Keister
Jan 15 at 17:02
2
$begingroup$
From experience it is quickly recognizable as a helix, but you can also figure it out by noting that the projection of the curve on the $yz$-plane is a circle of radius 9 centered at the origin and the $x$-component climbs out of the $yz$-plane at a constant rate.
$endgroup$
– THW
Jan 15 at 17:04
1
1
$begingroup$
I think you'll find it's a helix lined up on the $x$ axis.
$endgroup$
– Adrian Keister
Jan 15 at 17:00
$begingroup$
I think you'll find it's a helix lined up on the $x$ axis.
$endgroup$
– Adrian Keister
Jan 15 at 17:00
$begingroup$
Thanks! Do you know this from experience or is there a nice way to figure that out?
$endgroup$
– Sjoseph
Jan 15 at 17:01
$begingroup$
Thanks! Do you know this from experience or is there a nice way to figure that out?
$endgroup$
– Sjoseph
Jan 15 at 17:01
2
2
$begingroup$
Both. The $y$ and $z$ components describe a circle, by themselves. The $x$ coordinate is just going to march out steadily. If you imagine that in your mind, it comes out to a helix.
$endgroup$
– Adrian Keister
Jan 15 at 17:02
$begingroup$
Both. The $y$ and $z$ components describe a circle, by themselves. The $x$ coordinate is just going to march out steadily. If you imagine that in your mind, it comes out to a helix.
$endgroup$
– Adrian Keister
Jan 15 at 17:02
2
2
$begingroup$
From experience it is quickly recognizable as a helix, but you can also figure it out by noting that the projection of the curve on the $yz$-plane is a circle of radius 9 centered at the origin and the $x$-component climbs out of the $yz$-plane at a constant rate.
$endgroup$
– THW
Jan 15 at 17:04
$begingroup$
From experience it is quickly recognizable as a helix, but you can also figure it out by noting that the projection of the curve on the $yz$-plane is a circle of radius 9 centered at the origin and the $x$-component climbs out of the $yz$-plane at a constant rate.
$endgroup$
– THW
Jan 15 at 17:04
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
This may be of help
Built using a simple python script
from mpl_toolkits.mplot3d import Axes3D
import numpy as np
import matplotlib.pyplot as plt
ax = fig.gca(projection = '3d')
t = np.linspace(0, 4 * np.pi, num = 200)
x = 2 * t
y = 9 * np.sin(t)
z = 9 * np.cos(t)
ax.plot(x, y, z)
plt.show()
$endgroup$
$begingroup$
Great - thanks for this!
$endgroup$
– Sjoseph
Jan 15 at 17:05
add a comment |
Your Answer
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%2f3074641%2fwhat-curve-is-described-by-s-langle-2t-9-sin-t-9-cos-t-rangle%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
$begingroup$
This may be of help
Built using a simple python script
from mpl_toolkits.mplot3d import Axes3D
import numpy as np
import matplotlib.pyplot as plt
ax = fig.gca(projection = '3d')
t = np.linspace(0, 4 * np.pi, num = 200)
x = 2 * t
y = 9 * np.sin(t)
z = 9 * np.cos(t)
ax.plot(x, y, z)
plt.show()
$endgroup$
$begingroup$
Great - thanks for this!
$endgroup$
– Sjoseph
Jan 15 at 17:05
add a comment |
$begingroup$
This may be of help
Built using a simple python script
from mpl_toolkits.mplot3d import Axes3D
import numpy as np
import matplotlib.pyplot as plt
ax = fig.gca(projection = '3d')
t = np.linspace(0, 4 * np.pi, num = 200)
x = 2 * t
y = 9 * np.sin(t)
z = 9 * np.cos(t)
ax.plot(x, y, z)
plt.show()
$endgroup$
$begingroup$
Great - thanks for this!
$endgroup$
– Sjoseph
Jan 15 at 17:05
add a comment |
$begingroup$
This may be of help
Built using a simple python script
from mpl_toolkits.mplot3d import Axes3D
import numpy as np
import matplotlib.pyplot as plt
ax = fig.gca(projection = '3d')
t = np.linspace(0, 4 * np.pi, num = 200)
x = 2 * t
y = 9 * np.sin(t)
z = 9 * np.cos(t)
ax.plot(x, y, z)
plt.show()
$endgroup$
This may be of help
Built using a simple python script
from mpl_toolkits.mplot3d import Axes3D
import numpy as np
import matplotlib.pyplot as plt
ax = fig.gca(projection = '3d')
t = np.linspace(0, 4 * np.pi, num = 200)
x = 2 * t
y = 9 * np.sin(t)
z = 9 * np.cos(t)
ax.plot(x, y, z)
plt.show()
answered Jan 15 at 17:04
caveraccaverac
14.8k31130
14.8k31130
$begingroup$
Great - thanks for this!
$endgroup$
– Sjoseph
Jan 15 at 17:05
add a comment |
$begingroup$
Great - thanks for this!
$endgroup$
– Sjoseph
Jan 15 at 17:05
$begingroup$
Great - thanks for this!
$endgroup$
– Sjoseph
Jan 15 at 17:05
$begingroup$
Great - thanks for this!
$endgroup$
– Sjoseph
Jan 15 at 17:05
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%2f3074641%2fwhat-curve-is-described-by-s-langle-2t-9-sin-t-9-cos-t-rangle%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
1
$begingroup$
I think you'll find it's a helix lined up on the $x$ axis.
$endgroup$
– Adrian Keister
Jan 15 at 17:00
$begingroup$
Thanks! Do you know this from experience or is there a nice way to figure that out?
$endgroup$
– Sjoseph
Jan 15 at 17:01
2
$begingroup$
Both. The $y$ and $z$ components describe a circle, by themselves. The $x$ coordinate is just going to march out steadily. If you imagine that in your mind, it comes out to a helix.
$endgroup$
– Adrian Keister
Jan 15 at 17:02
2
$begingroup$
From experience it is quickly recognizable as a helix, but you can also figure it out by noting that the projection of the curve on the $yz$-plane is a circle of radius 9 centered at the origin and the $x$-component climbs out of the $yz$-plane at a constant rate.
$endgroup$
– THW
Jan 15 at 17:04