What are tags?http://calc3.askbot.com/questions/Open source question and answer forum written in Python and DjangoenCopyright Askbot, 2010-2011.Mon, 30 Jun 2014 13:31:28 -0500How do I visualize space curves?http://calc3.askbot.com/question/17/how-do-i-visualize-space-curves/I'm having a bit of trouble visualizing some of the space curves on the homework (section 13.1, #1-4). I can draw sketches of what they look like in the x-y and the x-z planes, but when it comes to "combining" the two, I'm struggling. Do any of you have any suggestions? Or is this not even necessary for the homework as it just says to "investigate?" Sun, 29 Jun 2014 19:02:51 -0500http://calc3.askbot.com/question/17/how-do-i-visualize-space-curves/Answer by Christina for How do I visualize space curves? http://calc3.askbot.com/question/17/how-do-i-visualize-space-curves/?answer=18#post-id-18I am finding that visualizing those curves is not easy for me either. For some of them it helped me to first visualize what was going on in the x-y plane and then consider how the z affected that. But since the problems said to "investigate", I decided that using wolfram alpha was a good idea. If you parametric plot them it gives an ok visual. At some point I want to learn how to use Mathematica for problems like these.Sun, 29 Jun 2014 19:43:21 -0500http://calc3.askbot.com/question/17/how-do-i-visualize-space-curves/?answer=18#post-id-18Answer by Justin for How do I visualize space curves? http://calc3.askbot.com/question/17/how-do-i-visualize-space-curves/?answer=25#post-id-25The way I see it, you have a few options. The first (and probably easiest, yet most inflexible) is to use [WolframAlpha](http://www.wolframalpha.com/). You can type something like: > parametric plot (sin t, cos t, cos(8t)) And it will graph it for you. Unfortunately, there is no interactivity, and that's not cool at all—let alone groovy! Your second option is to use Mathematica. If you download it from the class site link, you can input your UNCA email address and get it for free. [This](http://reference.wolfram.com/mathematica/ref/ParametricPlot3D.html) is a reference guide on how to use the `ParametricPlot3D` function. All you have to do is type something like this: `ParametricPlot3D[{Sin[u], Cos[u], u}, {u, 0, 10}]` More generally, the function works like this: `ParametricPlot3D[{fx, fy, fz}, {u, umin, umax}]` Where `fx` is the $x$ component of your curve, `fy` is the $y$ component of your curve, and `fz` is the $z$ component of your curve. The second parameter, `{u, umin, umax}`, is also made up of three parts. The first part, `u` tells Mathematica what variable you want it to use for the calculations (like $t$ or $x$ or $u$). The second and third parameters let Mathematica determine the lower and upper values for your function, and restricts the domain. Your third option is Mac-only. If you go into Utilities in your Application folder, you will find an app called "Grapher". It's a very nice piece of software! When you open it, select "3D Graph" then "Default". Next, in the bottom left corner of the window that appears, click the "+" then "New Equation From Template...". Choose "Cartesian Surface" and you should be good to go! Mon, 30 Jun 2014 13:31:28 -0500http://calc3.askbot.com/question/17/how-do-i-visualize-space-curves/?answer=25#post-id-25