In Maple you can plot several questions using the display()function
Is it possible to do so in MAXIMA?
for example, draw these two parametric functions in the same gaphic:
wxplot2d([parametric,theta1(t,2,3),theta2(t,4,3),[t,-pi/2.1,pi/2.1]],
[box,false],[same_xy,true],[color,black],
[axes,solid],[style, [lines,2]],
[title, "Hipérbola"],[nticks,1000]);
wxplot2d([parametric,-theta1(t,2,3),theta2(t,4,3),[t,-pi/2.1,pi/2.1]],
[box,false],[same_xy,true],[color,black],
[axes,solid],[style, [lines,2]],
[title, "Hipérbola"],[nticks,1000]);
You can supply multiple functions to the
plot2dcommandFor more complicated plots, load the
drawpackage and use thedraw2dcommand.Finally, press the
F1key and read the manual.