^^^^^^^ that is from copying and pasting from the maple.
otherwise it'd look more like this
So... when i pressed enter it did nto do anything but retype the equation.
I need it to graph, I know this input is right because I looked at the teacher's example and it made a graph, but when I copy and pasted the teacher's example there were no graph. I believe this maybe mean that I need to do some setting changes maple, but where?
with(plots)
Before you can use spacecurve, you need to load the plots package:
with(plots);
with( plots ):
When Maple simply spits back a plotting command like this, it suggests to me that Maple does not know the command you are using. In this case, spacecurve is a command in the plots package. If you execute with( plots ): before your command, you will see the picture. (You can also replace spacecurve with plots:-spacecurve.) Implement either of these changes and the plot appears.
Doug