home *** CD-ROM | disk | FTP | other *** search
- "File: INTEGRAL.MTH (c) 09/04/89 Soft Warehouse, Inc."
-
- "The arc length of u(x) from x=a to x=b:"
-
- ARC_LENGTH(u,x,a,b):=INT(SQRT(1+DIF(u,x)^2),x,a,b)
-
- "The vector arc length of v(t) from t=a to t=b:"
-
- VECTOR_ARC_LENGTH(v,t,a,b):=INT(SQRT(SUM(DIF(ELEMENT(v,k_),t)^2,k_,1,DIMENSION~
- (v))),t,a,b)
-
- "The volume of revolution of u(x) from x=a to x=b:"
-
- VOLUME_OF_REVOLUTION(u,x,a,b):=PI*INT(u^2,x,a,b)
-
- "The surface area of revolution of nonnegative u(x) from x=a to x=b:"
-
- SURFACE_OF_REVOLUTION(u,x,a,b):=2*PI*INT(u*SQRT(1+DIF(u,x)^2),x,a,b)
-
- "The Fourier series approximation of u(x) from x=a to x=b for n terms:"
-
- FOURIER(u,x,a,b,n):=1/(b-a)*INT(u,x,a,b)+2/(b-a)*SUM(COS(2*PI*k_*x/(b-a))*INT(~
- u*COS(2*PI*k_*x/(b-a)),x,a,b)+SIN(2*PI*k_*x/(b-a))*INT(u*SIN(2*PI*k_*x/(b-a)),~
- x,a,b),k_,1,n)
-
- "The Laplace transform of u(t) in terms of the variable s (note that s"
-
- "must be declared large enough so that the integral will converge):"
-
- LAPLACE(u,t,s):=INT(#e^(-s*t)*u,t,0,INF)
-