quasilinearization

{{Short description|Technique in mathematics}}

{{more citations needed|date=July 2024}}

File:Quasilinearexample.png

In mathematics, quasilinearization is a technique which replaces a nonlinear differential equation or operator equation (or system of such equations) with a sequence of linear problems, which are presumed to be easier, and whose solutions approximate the solution of the original nonlinear problem with increasing accuracy. It is a generalization of Newton's method; the word "quasilinearization" is commonly used when the differential equation is a boundary value problem.{{cite book |last1=Ascher |first1=Uri M. |last2=Mattheij |first2=Robert M. |last3=Russell |first3=Robert D. |title=Numerical solution of boundary value problems for ordinary differential equations |date=1995 |publisher=SIAM}}{{cite journal |last1=Sylvester |first1=R.J. |last2=Meyer |first2=F. |title=Two point boundary problems by quasilinearization |journal=Journal of the Society for Industrial and Applied Mathematics |date=June 1965 |volume=13 |issue=2 |pages=586–602 |doi=10.1137/0113038 |jstor=2946451 |url=http://www.jstor.org/stable/2946451 |access-date=31 March 2022|url-access=subscription }}

Abstract formulation

Quasilinearization replaces a given nonlinear operator {{math| N}} with a certain linear operator which, being simpler, can be used in an iterative fashion to approximately solve equations containing the original nonlinear operator. This is typically performed when trying to solve an equation such as {{math|1= N(y) = 0}} together with certain boundary conditions {{math | B}} for which the equation has a solution {{math | y}}. This solution is sometimes called the "reference solution". For quasilinearization to work, the reference solution needs to exist uniquely (at least locally). The process starts with an initial approximation {{math| y0}} that satisfies the boundary conditions and is "sufficiently close" to the reference solution {{math | y}} in a sense to be defined more precisely later. The first step is to take the Fréchet derivative of the nonlinear operator {{math|N}} at that initial approximation, in order to find the linear operator {{math | L(y0)}} which best approximates {{math| N(y)-N(y0)}} locally. The nonlinear equation may then be approximated as {{math |1=N(y) = N(yk) + L(yk)( y - yk) + O( y-yk )2}}, taking {{math|1=k=0}}. Setting this equation to zero and imposing zero boundary conditions and ignoring higher-order terms gives the linear equation {{math|1= L(yk)( y - yk ) = - N(yk)}}. The solution of this linear equation (with zero boundary conditions) might be called {{math| yk+1}}. Computation of {{math|yk}} for {{math|1=k=1, 2, 3,}}... by solving these linear equations in sequence is analogous to Newton's iteration for a single equation, and requires recomputation of the Fréchet derivative at each {{math|yk}}. The process can converge quadratically to the reference solution, under the right conditions. Just as with Newton's method for nonlinear algebraic equations, however, difficulties may arise: for instance, the original nonlinear equation may have no solution, or more than one solution, or a multiple solution, in which cases the iteration may converge only very slowly, may not converge at all, or may converge instead to the wrong solution.

The practical test of the meaning of the phrase "sufficiently close" earlier is precisely that the iteration converges to the correct solution. Just as in the case of Newton iteration, there are theorems stating conditions under which one can know ahead of time when the initial approximation is "sufficiently close".

Contrast with discretizing first

One could instead discretize the original nonlinear operator and generate a (typically large) set of nonlinear algebraic equations for the unknowns, and then use Newton's method proper on this system of equations. Generally speaking, the convergence behavior is similar: a similarly good initial approximation will produce similarly good approximate discrete solutions. However, the quasilinearization approach (linearizing the operator equation instead of the discretized equations) seems to be simpler to think about, and has allowed such techniques as adaptive spatial meshes to be used as the iteration proceeds.{{cite book |last1=Bornemann |first1=Folkmar |title=An Adaptive Multilevel Approach to Parabolic Equations in Two Space Dimensions. |date=1991 |publisher=ZIB |url=https://opus4.kobv.de/opus4-zib/frontdoor/index/index/docId/482 |access-date=6 March 2022}}

Example

As an example to illustrate the process of quasilinearization, we can approximately solve the two-point boundary value problem for the nonlinear node

\frac{d^2}{dx^2} y(x) = y^2(x),

where the boundary conditions are y(-1) = 1 and y(1)=1. The exact solution of the differential equation can be expressed using the Weierstrass elliptic function ℘, like so: y(x) = 6\wp( x-\alpha | 0, \beta ) where the vertical bar notation means that the invariants are g_2 = 0 and g_3 = \beta . Finding the values of \alpha and \beta so that the boundary conditions are satisfied requires solving two simultaneous nonlinear equations for the two unknowns \alpha and \beta , namely 6\wp(-1-\alpha|0,\beta) = 1 and 6\wp(1-\alpha|0,\beta) = 1. This can be done, in an environment where ℘ and its derivatives are available, for instance by Newton's method.{{efn|1=For more information about elliptic functions, see {{harvtxt|Lawden|1989}}.{{cite book |last1=Lawden |first1=Derek F. |title=Elliptic Functions and Applications |date=1989 |publisher=Springer-Verlag |location=New York |isbn=0-387-96965-9}}}}

Applying the technique of quasilinearization instead, one finds by taking the Fréchet derivative at an unknown approximation y_k(x) that the linear operator is

L(\varepsilon) = \frac{d^2}{dx^2}\varepsilon(x) - 2 y_k(x) \varepsilon(x).

If the initial approximation is y_0(x) = 1 identically on the interval -1 \le x \le 1 , then the first iteration (at least) can be solved exactly, but is already somewhat complicated. A numerical solution instead, for instance by a Chebyshev spectral method using n=21 Chebyshev—Lobatto points x_k = \cos( \pi (n-1-k)/(n-1) ) for k = 0, 1, \cdots, n-1 gives a solution with residual less than 5 \cdot 10^{-9} after three iterations; that is, y_3(x) is the exact solution to \frac{d^2}{dx^2}y(x) - y^2(x) = 5 \cdot 10^{-9} v(x) , where the maximum value of |v(x)| is less than 1 on the interval -1 \le x \le 1 . This approximate solution (call it u_1) agrees with the exact solution 6\cdot\wp( x-\alpha | 0, \beta ) with

\{\alpha \approx 3.524459420, \beta \approx 0.006691372637\}.

Other values of \alpha and \beta give other continuous solutions to this nonlinear two-point boundary-value problem for ODE, such as

\{\alpha \approx 2.55347391110, \beta \approx - 1.24923895273\}.

The solution corresponding to these values plotted in the figure is called u_2. Yet other values of the parameters can give discontinuous solutions because ℘ has a double pole at zero and so y(x) has a double pole at x=\alpha. Finding other continuous solutions by quasilinearization requires different initial approximations to the ones used here. The initial approximation y_0 = 5x^2-4 approximates the exact solution u_2 and can be used to generate a sequence of approximations converging to u_2. Both approximations are plotted in the accompanying figure.

Notes

{{notelist|group=loweralpha}}

See also

References

{{reflist}}

Further reading

  • https://encyclopediaofmath.org/wiki/Quasi-linearization

Category:Differential equations

{{undercategorized|date=July 2024}}