I have the following equations of motion of a point:
x:3*sin(4*t);
y:2*cos(4*t);
I already created a vector:
r:[x,y];
and did some operations but I don't know how to plot the path (the result should be an ellipse).
I tried various commands and only this gave me something similar to what I want to achieve:
load(draw);
draw2d(parametric(x,y,t,0,10));
But the result is strange:
Is there a way to get a proper plot in form of an ellipse in wxMaxima in this case?