intsolve - solve a linear integral equation
|
Calling Sequence
|
|
intsolve(Inteqn, funcn )
intsolve(Inteqn, funcn, method = ..., order = ... )
|
|
Parameters
|
|
Inteqn
|
-
|
linear integral equation in funcn
|
funcn
|
-
|
unknown function to be solved for
|
method = ...
|
-
|
optional, the right-hand side can be any of: Neumann, Laplace, differentialequation, eigenfunction
|
order = ...
|
-
|
optional, the right-hand side can be a positive integer, specifying the order of the series approximation to use with the Neumann method
|
|
|
|
|
Description
|
|
•
|
The intsolve command is able to find exact closed-form solutions to various types of integral equations as explained below. The solution is returned as an explicit equation with the unknown function in the left-hand side and the solution in the right-hand side. In some cases arbitrary constants are returned in the solution; they are represented as , as in the output of dsolve. When the solution contains integrals, they are represented with the inert Int.
|
•
|
By default, intsolve converts the linear integral equation into an equivalent ODE problem with initial values (ODE-IVP), then attempts solving this problem; if it fails, it uses an eigenfunction approach. The method Laplace is optional and tackles the problem using a Laplace transform. The Neumann method is also optional and computes a series approximation to the solution.
|
•
|
intsolve can recognize Fredholm and Volterra integral equations of the following kinds:
|
|
Fredholm equation of the first kind (F1):
|
|
Fredholm equation of the second kind (F2):
|
|
Fredholm equation of the third (homogeneous) kind (F3):
|
|
Volterra equation of the first kind (V1):
|
|
Volterra equation of the second kind (V2):
|
|
Volterra equation of the third (homogeneous) kind (V3):
|
•
|
The Laplace method is applicable to equations of V1, V2 and V3 type. One advantage to using this option is that the integral equation may contain the Dirac or Heaviside functions. This method is not suitable for finding a solution when the equation does not possess a convolution type kernel.
|
•
|
The Neumann method is applicable to equations of V2, F2, and some of V1 type. The default order of the Neumann series in the solution is Order - this value can be overridden by passing the optional argument order = n, where n is a positive integer.
|
•
|
infolevel[intsolve] := 1,2,3 or 5 gives descriptive information on the progress of the computation. 5 may result in excessive printing.
|
|
|
Examples
|
|
>
|
|
| (1) |
>
|
|
| (2) |
If we instead use the 'Neumann' method, an approximation to this result is returned.
>
|
|
| (3) |
>
|
|
| (4) |
Computing the solution and verifying the result
>
|
|
| (5) |
>
|
|
| (6) |
To verify this solution, transform it first into a procedure
>
|
|
| (7) |
>
|
|
| (8) |
>
|
|
| (9) |
For some type of problems the solution obtained using the Laplace method contains Dirac functions
>
|
|
| (10) |
>
|
|
| (11) |
Another type of integral equation automatically solved using the eigenfunction approach
>
|
|
| (12) |
>
|
|
| (13) |
An example where an arbitrary constant is introduced with the solution
>
|
|
| (14) |
>
|
|
| (15) |
|
|
References
|
|
|
Chambers, LL. G. Integral Equations: A Short Course. London: International Textbook Company Ltd., 1976.
|
|
Tricomi, F. G. Integral Equations. New York: Interscience, 1957.
|
|
|
Download Help Document
Was this information helpful?