Project 1
Use scientific notebook to find the smallest positive zero, a, of the function h(x) = x - cos(x/nn), where nn is the last two digits of your social security number. If your last two digits are 00, then use 99. Accuracy required: |h(a)| < 10-8.
Plot h(x). Use a plot interval which has the smallest positive zero of h in the center of the plot.
After you perform the iteration, define A = iteration vector. Then let scientific notebook numerically evaluate h(A).
Turn in a hard copy of your project. Projects will be graded on neatness, completeness, accuracy, readability, and mathematical correctness.
Project 2
Calculate the Lower and Upper sums (s16 and S16) for f(x) = x7 over the interval [10, 20]. Use 16 partitions of equal size. Draw the picture for partitions and rectangles for the upper and lower sums.
Remember, for to calculate lower sums, for each interval [xj, xj+1] choose cj so that f(cj) is less than or equal f(x) for each x in [xj, xj+1]. Let D x = xj+1 - xj .
Then sn = D x {(f(c0) + f(c1) + ...+ f(cn-1)}
For increasing functions, cj is just the left endpoint. For a picture just use {maple -> calculus -> Plot Approx. Integral} and in the Plot Components Dialog box set the range to 10-20, the number of boxes to 16 and select Right Boxes.
Sn is calculated similarly. Just choose Cj in the interval [xj, xj+1] so that f(Cj) is equal to or greater than f(x) for each x in the interval [xj, xj+1].
Find formulas for sn and Sn. Simplify sn and Sn so that each is a sum of powers of (1/n). Then take the limit as n goes to infinity.
Finally, use scientific notebook to calculate the integral of f(x) = x7 on the interval from 10 to 20 and see if this answer agrees with both of the limits obtained above.