When submitting a report of your Maple work you may wish to
include comments and graphs between the commands.
Below we give an example of preparation of a report on finding
all solutions of the equation
in the interval
.
bullist
Restart Maple by choosing New from the File menu.
From the Edit menu choose Insert Text and the cursor
moves a little lower. Now we may type our comments. Type (without hitting
Return at any stage)
We find all solutions of x sin x = 5 in the interval [0,10]. We start by finding the approximate location of the solutionsNotice that all this is typed in black and the lines wrap around automatically. Now choose Insert Prompt from the Edit menu. You are ready to type the Maple commands
plot( x*sin(x)-5, x=0..10 );Notice the above is typed in red - the color for Maple commands. Hit Return. You now have a graph we will paste in the Maple window.
We observe the solutions are between 6 and 8, and 8 and 10. So solutions may be obtained viaNow choose Insert Prompt from the Edit menu. Then type the Maple commands to find the solutions.
fsolve( x*sin(x)=5, x, x=6..8 ); fsolve( x*sin(x)=5, x, x=8..10 );and our report is complete.