INTAPPX.85p TI85 program to display Riemann sums. Function, bounds, number of variables, type of sum can all be customized. This program is designed to demonstrate the various ways of doing a Riemann summ. It is useful in teaching the concept of the definite integral. The program asks the user to supply a function which is then stored in Y10. The user is also asked for upper and lower bounds, number of subintervals, and the method of sum desired. The program computes a convenient window for graphing, then draws the function along with the approximating rectangles and computes the sum. It should be noted that the program uses the min and max functions to set the upper and lower bounds for the y range. Since these functions use a seed to find a local min and max, functions with a local min or max in the designated x range may continue off the screen. The function is stored in Y10 after being input through EQ. The program uses the variables: U, L, and N are the upper and lower limits of X, and the number of subintervals respectively. H and S are the width of a subinterval and the Riemann sum. M , LC, T, T1, T2, theta, I, and Z are dummy variables used at various points of the program. The program puts the calculator in function mode and turns off the graphing of variables other than Y10. This program is joint work of Paul Patterson and Mike May from the Department of Mathematics and Computer Science at Saint Louis University. Send comments to: patterso@sluvca.slu.edu maymk@sluaxa.slu.edu