Which Free Program Can Plot Vector Functions Like r(t) = (2cos(t), 2sin(t))?

  • Context: MHB 
  • Thread starter Thread starter Chipset3600
  • Start date Start date
  • Tags Tags
    Function Plotting
Click For Summary

Discussion Overview

The discussion revolves around finding free programs to plot vector functions, specifically the example r(t) = (2cos(t), 2sin(t)). Participants explore various software options and commands for plotting both 2D and 3D vector functions, with a focus on usability for calculus studies.

Discussion Character

  • Exploratory, Technical explanation, Homework-related

Main Points Raised

  • One participant inquires about free programs for plotting vector functions, specifically mentioning r(t) = (2cos(t), 2sin(t)).
  • Another participant suggests using Wolfram Alpha to plot the given vector function, noting it provides both component plots and a parametric plot.
  • A participant expresses a desire for software that can plot 3D vector functions and mentions using Mathematica 9 but struggling with plotting.
  • A later reply provides a Mathematica command for plotting the function and recommends using Manipulate for interactive plotting.
  • Another participant mentions Python as a potential option for plotting vector functions.

Areas of Agreement / Disagreement

Participants share various software options and commands, but there is no consensus on a single best solution, as different needs and preferences are expressed.

Contextual Notes

Some participants seek interactive capabilities for 3D plotting, while others focus on simpler 2D representations. The discussion includes specific commands for Mathematica but does not resolve the challenges faced by users.

Who May Find This Useful

Individuals looking for free software to plot vector functions, especially students studying calculus or related fields.

Chipset3600
Messages
79
Reaction score
0
Hello guys, did you know any free program to plot vector functions? like this one: r(t) = (2cos(t), 2sin(t))
 
Physics news on Phys.org
Re: Ploting a vectorial function

Try entering:

r(t)=<2cos(t),2sin(t)>

at wolfram alpha:

Wolfram|Alpha: Computational Knowledge Engine

It will give you plots of the components, and a parametric plot, as well as the vector length.
 
Re: Ploting a vectorial function

MarkFL said:
Try entering:

r(t)=<2cos(t),2sin(t)>

at wolfram alpha:

Wolfram|Alpha: Computational Knowledge Engine

It will give you plots of the components, and a parametric plot, as well as the vector length.

I want some that i can plot 3D vector functions and interact with the function mode to further facilitate my study in Calculos II. I have here the Mathematica 9, I am trying but i still not able to plot
 
Re: Ploting a vectorial function

Chipset3600 said:
I want some that i can plot 3D vector functions and interact with the function mode to further facilitate my study in Calculos II. I have here the Mathematica 9, I am trying but i still not able to plot

The mathematica command for what you'd like to plot would be

Code:
ParametricPlot[{2 Cos[t], 2 Sin[t]}, {t, 0, 2 Pi}]

In fact, I recommend taking a look at the following, for you to play around with:

Code:
Manipulate[ParametricPlot[{a Cos[2 Pi b t], a Sin[2 Pi b t]}, {t, 0, 1}, 
  PlotRange -> 10], {{a, 1}, 0.1, 10}, {{b, 0.5}, -1, 1}]

EDIT:
slight improvement:
Code:
Manipulate[
 ParametricPlot[{a Cos[2 Pi b t], a Sin[2 Pi b t]}, {t, 0, 1}, 
  PlotRange -> 10, 
  PlotLabel -> 
   Style[ToExpression[
     StringJoin["\[LeftAngleBracket]", ToString[a], "Sin[2\[Pi]*", 
      ToString[b], "t],Cos[2\[Pi]*", ToString[b], 
      "t]\[RightAngleBracket]"]]]]
 , {{a, 5}, 0.1, 10}, {{b, 0.5}, -1, 1}]
 
Last edited:
Chipset3600 said:
Hello guys, did you know any free program to plot vector functions? like this one: r(t) = (2cos(t), 2sin(t))

Python
 

Similar threads

  • · Replies 1 ·
Replies
1
Views
3K
Replies
5
Views
4K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 2 ·
Replies
2
Views
5K
  • · Replies 1 ·
Replies
1
Views
2K
Replies
3
Views
1K