Derivative
Math -> 8
nderiv(function, whatever it is with respect to - usually x, value)
ex. value at x=2 for the derivative of x^2
nderiv(x^2,x,2) = 4
Integral
Math -> 9
fnInt(function, with respect to, lower limit, upper limit)
ex. integral from e to e^2 of 1/x
fnint(1/x, x, e, e^2) = 1
2007-03-28 18:13:44
·
answer #1
·
answered by Jeffrey W 3
·
0⤊
0⤋
It's the MATH function. You'll see nDer and fnInt both are in the form (function, variable, lower bound, upper bound)
For example, the intergral of x^2+x+1 on the interval [2,3] would look like
fnInt(x^2 + x + 1, x, 2, 3)
(Sorry, I don't have a calculator with me to reference and give you ebtter instructions.)
2007-03-29 01:10:24
·
answer #2
·
answered by Big D's Tuna 2
·
0⤊
0⤋
and to think all this time i've been doing it in my head...
2007-03-29 02:01:54
·
answer #3
·
answered by Anonymous
·
0⤊
0⤋