Mathematica Commands for 2x and 3x to Accompany Lab I.3 ( calc1-lab3.html )

This time there are 3 commands for you to copy and paste. You may copy all 3 at once, but when you paste them, paste them as ``plain text'', otherwise the blank lines will disappear and that will cause MANY MANY problems for you.

(* (Read the paragraph above before pasting!!) *)

list2 = Table[{x, ???},{x, -3, 5, 0.5}];

<< Graphics`MultipleListPlot`

MultipleListPlot[
 { {-3,?},{-2,?},{-1,?},{0,?},{1,?},{2,?},
 {2.5,?},{3,?},{3.5,?},{4,?},{4.5,?} }, 
 list2,
 SymbolStyle->{Hue[0.7], Hue[0.9]},  AxesLabel->{x, y},
 Background->GrayLevel[0.9], PlotLegend -> {"Derivative", "Guess"},
 PlotJoined -> {False, True},
 SymbolShape -> {PlotSymbol[Box,3.5], PlotSymbol[Triangle, 5]}
 ];



Return to coordinate grid page: http://www.uta.edu/math/Calculus/secant.html

or to Lab I.3: http://www.uta.edu/math/Calculus/calc1-lab3.html.