Is there a program for TI-84 that can solve integrals without showing steps?

  • Context: Calculators 
  • Thread starter Thread starter think4432
  • Start date Start date
  • Tags Tags
    Integral Program Ti-84
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
4 replies · 22K views
think4432
Messages
62
Reaction score
0
I don't know if this is the right place to post a question like this...but help?

Does anyone know of a good program that can be downloaded to a ti84 that can solve integrals? It doesn't have to show the steps...just an answer [that you could check while doing homework...if you don't have access to internet to get on WolframAlpha and check the problem?]

Please help :]
 
Physics news on Phys.org
Any downloads would work too?
 
Symbolic? The TI-84 has en extremely limited processor and very little memory, I doubt that exists.

It has a built in numerical function called fnInt which you could use to compare answers with.
 
*-<|:-D=<-< said:
Symbolic? The TI-84 has en extremely limited processor and very little memory, I doubt that exists.

It has a built in numerical function called fnInt which you could use to compare answers with.

Thank you for the reply!


What does the fnInt function do? And where can I find it?
 
It's at MATH, 9.

The syntax is
Code:
fnInt(f(vars), var, lower, upper)
with an additional optional argument of accuracy (
Code:
fnInt(f(vars), var, lower, upper, accuracy)
).

So two uses would be
Code:
fnInt(sin(x), x, 0, 1)
and
Code:
fnInt(x^12/(e^x+1), x, 0, 230, 1E-16)
.

However for checking integrals you can plot the function you suspect is the correct answer together with the integrand look for obvious errors and check some key points with differentiation (2nd CALC, 6). Obviously this method has several faults so be extremely cautious of what points you choose and which x range you plot. This method will only accurately tell you if have the wrong integral (within the calculators numerical bounds), but if you are cautious enough can also give you an idea if you have the right answer or not.