home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 24 / CD_ASCQ_24_0995.iso / vrac / sm331a.zip / INTE.SM < prev    next >
Text File  |  1994-07-19  |  649b  |  24 lines

  1. #    this is demo of inte(y,x), inetgral. If inte() cannot do some 
  2. #    integrals you should add the inetgral into library inte.(x)
  3.  
  4. inte(sin(a*x+b), x)        # forms involving sin(x)
  5. inte(sin(x)/x^2, x)
  6. inte(x*sin(x), x)
  7.  
  8. inte(e^(x^6), x)        # forms involving e^x
  9. #inte(x^2*e^x, x)
  10. inte(x*e^-x, x)
  11. inte(e^x/sqrt(x), x)
  12.  
  13. inte(x*ln(x), x)        # forms involving ln(x)
  14. #inte(ln(x)^6,x)
  15. #inte(ln(x)/sqrt(x),x)
  16. #inte(ln(x)/sqrt(1+x),x)
  17.  
  18. inte(1/(a*x+b), x)        # forms involving polynomials
  19. #inte(x/(x^2+5*x+6), x)
  20. #inte((x^3+x)/(x^4+2*x^2+1), x)
  21.  
  22. #inte(f(x_), x_) := -cos(x)    # define integral of f(x)
  23. #inte(f(a*x+b), x)        # find integral of f(a*x+b)
  24.