| ||||||||||||||||||||||||||||||||||||||||||||||||||
|
Integral Equations Inhomogeneous Fredholm integral equations of the second kind,
involve solving for As a specific example, consider Love's equation
which arises in electrostatics [3, 4]. An excellent approximation to the solution
The coefficients Here is a direct implementation for
Instead of computing the points using Table, we have used the Listable attribute of Cos. We introduce the undetermined coefficients
We evaluate the left-hand side of equation (2) at the Chebyshev points.
Note that we have replaced the sum in the Chebyshev-series (3) by a dot product and have used the Listable attribute of ChebyshevT to compute the value at all the Chebyshev points at once.
To compute the right-hand side of equation (2) we could use a Chebyshev quadrature formula [5, 6]. Instead we use NIntegrate for simplicity, again using arbitrary-precision arithmetic.
Solving the resulting simultaneous linear algebraic equations we obtain the coefficients
The solution
To see how well the Chebyshev-series solution satisfies Love's equation (2), we substitute it back into the equation and plot the difference of the left- and right-hand sides. The Chebyshev points are also displayed and it is apparent that the minimum error in the Chebyshev-series solution occurs at these points.
As an aside, we can get a bound for the maximum error directly from the PlotRange of this plot. We could use this error-bound in a recursive procedure so as to find a solution for a given maximum error.
Copyright © 2002 Wolfram Media, Inc. All rights reserved. |