MT #3 has two parts. Part 1 is a web-test (12 points) [The web test keeps track of this] Do the new Calculus 2 Diagnostic Tests `integration for test 2' http://newton.math.fsu.edu:8081/students/index.html Part 2 is a Maple Assignment (8 points) [This needs to be handed in.] (You can use maple or web-maple (with pdf mode)) MT #3 is due Thursday 13 Sep 2001 Papers which are not STAPLED will not be acepted ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ All plots need to have a title which includes your name, (eventually plots might have multiple functions and plots with mulitple functions need legends.) Be sure to answer the questions as Maple comments. One can add titles to plots like plot(sin(x),x=0..2*Pi,title="Catch the Wave"); Introduction to Syntax. Note often the expressions below are not given in a format exceptable to Maple. For example, Maple does not understand 3x as 3*x, one must enter 3*x. Maple uses Pi for pi and does not know about e (either use exp(x) for e^x, or define e:=exp(1) before using it). Do the following using maple 0. Enter your name as an assignment statement like MyName:="Jane Doe"; [1-3 are the web test] 4. Find the following numbers using Maple (hint evalf) and answer the question a. Find the sqrt of 5 to 30 digits. b. Which is bigger e to the pi power, or pi to the e power? 5. Plot x sin(1/x) from -1/10 to 1/10 so that it looks `nice'. The default graph doesn't look correct near the origin. Try increasing the number of points maple uses to plot the graph (numpoints= like plot(,,title="sample",numpoints=);). numpoints=100 still has a problem.