Previous Up Next

13.3.2  Primitives and definite integrals

The Risch algorithm is a powerful algorithm for finding an elementary primitive of an elementary function or concluding that one does not exist. The risch command finds primitives and can use them to evaluate definite integrals.

Examples

risch(x^2)
     
x3
3
          
risch(t^2,t)
     
t3
3
          
risch(exp(-x^2))
     
ex2 dx
          

meaning that ex2 has no primitive expressed with the elementary functions.

risch(x^2,x,0,1)
     
1
3
          

Previous Up Next