ArticleslgStudy

mathematics

Quasilinearization

Quasilinearization is a mathematics topic covered in the lgStudy science library. This page brings together a partial reference excerpt, illustrations, worked examples, real-world applications and a short study plan, so you can understand Quasilinearization rather than just read about it. In short: 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…

Quasilinearization — main illustration
Quasilinearization — illustration

Key takeaways

  • Quasilinearization belongs to mathematics; place it in that map before memorising details.
  • Learn the definition first, then one example that makes the definition concrete.
  • Connect Quasilinearization to a quantity you can measure, compute or draw — that is where exam questions come from.
  • Reproduce the core statement of Quasilinearization from memory before moving on to harder problems.

Reference excerpt

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.

Abstract formulation Quasilinearization replaces a given nonlinear operator 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 N(y) = 0 together with certain boundary conditions B for which the equation has a solution 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 y0 that satisfies the boundary conditions and is "sufficiently close" to the reference solution y in a sense to be defined more precisely later. The first step is to take the Fréchet derivative of the nonlinear operator N at that initial approximation, in order to find the linear operator L(y0) which best approximates N(y)-N(y0) locally. The nonlinear equation may then be approximated as N(y) = N(yk) + L(yk)( y - yk) + O( y-yk )2, taking k=0. Setting this equation to zero and imposing zero boundary conditions and ignoring higher-order terms gives the linear equation L(yk)( y - yk ) = - N(yk). The solution of this linear equation (with zero boundary conditions) might be called yk+1. Computation of yk for 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 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.

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

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

where the boundary conditions are y ( − 1 ) = 1 {\displaystyle y(-1)=1} and y ( 1 ) = 1 {\displaystyle y(1)=1} . The exact solution of the differential equation can be expressed using the Weierstrass elliptic function ℘, like so: y ( x ) = 6 ℘ ( x − α | 0 , β ) {\displaystyle y(x)=6\wp (x-\alpha |0,\beta )} where the vertical bar notation means that the invariants are g 2 = 0 {\displaystyle g_{2}=0} and g 3 = β {\displaystyle g_{3}=\beta } . Finding the values of α {\displaystyle \alpha } and β {\displaystyle \beta } so that the boundary conditions are satisfied requires solving two simultaneous nonlinear equations for the two unknowns α {\displaystyle \alpha } and β {\displaystyle \beta } , namely 6 ℘ ( − 1 − α | 0 , β ) = 1 {\displaystyle 6\wp (-1-\alpha |0,\beta )=1} and 6 ℘ ( 1 − α | 0 , β ) = 1 {\displaystyle 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. Applying the technique of quasilinearization instead, one finds by taking the Fréchet derivative at an unknown approximation y k ( x ) {\displaystyle y_{k}(x)} that the linear operator is

… excerpt ends here. Continue reading the full article.

Illustrations

Quasilinearization: Two numerical solutions of the nonlinear example boundary value problem 
  
    
      
        
          y
          ″
        
        =
        
          y
          
            2
          
        
      
    
    {\displaystyle y''=y^{2}}
  
, 
  
    
      
        y
        (
        −
        1
        )
        =
        y
        (
        1
        )
        =
        1
      
    
    {\displaystyle y(-1)=y(1)=1}
  
. Solved by a spectral Chebyshev method and quasilinearization. The top curve 
  
    
      
        
          u
          
            1
          
        
      
    
    {\displaystyle u_{1}}
  
 used 21 interpolation nodes, and the bottom curve 
  
    
      
        
          u
          
            2
          
        
      
    
    {\displaystyle u_{2}}
  
 used 34. Both used 3 iterations.
Two numerical solutions of the nonlinear example boundary value problem y ″ = y 2 {\displaystyle y''=y^{2}} , y ( − 1 ) = y ( 1 ) = 1 {\displaystyle y(-1)=y(1)=1} . Solved by a spectral Chebyshev method and quasilinearization. The top curve u 1 {\displaystyle u_{1}} used 21 interpolation nodes, and the bottom curve u 2 {\displaystyle u_{2}} used 34. Both used 3 iterations.

Worked examples

Example 1 — a first encounter with Quasilinearization

Start with the simplest possible case. Write down what Quasilinearization claims or describes in one sentence, then invent the smallest concrete situation in which that sentence is true. In mathematics, the smallest case is usually a single object, a single equation or a single measurement. Check that every symbol or term in your sentence has a meaning in that case.

Example 2 — changing one variable

Take the situation from Example 1 and change exactly one quantity: double it, halve it, or set it to zero. Predict what should happen to Quasilinearization before you calculate. Comparing your prediction with the result is the fastest way to find out whether you understand the idea or only the words.

Example 3 — an exam-style question

Typical questions about Quasilinearization ask you to (a) state it precisely, (b) apply it to given data, and (c) explain a limitation. Practise writing all three answers in under five minutes; the third part is what separates a full-mark answer from an average one.

Applications of Quasilinearization

In research
Quasilinearization appears in mathematics research whenever the underlying quantities have to be modelled precisely. Papers usually cite it as a starting assumption and then explore where it breaks down.
In technology and industry
Engineering practice reuses Quasilinearization in design rules, simulations and safety margins. Knowing the idea lets you read a specification sheet and understand why the numbers look the way they do.
In the classroom
Quasilinearization is common in secondary-school and first-year university syllabi. It links to neighbouring topics Differential equations, so understanding it makes those chapters shorter.
In everyday life
Look for Quasilinearization outside the textbook — in sport, cooking, traffic, electronics or the sky above you. An example you found yourself is remembered far longer than one you were given.

Affiliate

Preply — study more efficiently by working with a personal tutor. 50% off.

How to study Quasilinearization in 20 minutes

  1. Read the reference excerpt below once, without taking notes.
  2. Close the page and write down what Quasilinearization means in your own words.
  3. Compare your version with the excerpt and mark what you missed.
  4. Work through the three examples above with pen and paper.
  5. Explain Quasilinearization out loud to somebody else — or to Teacher Smith in the lgStudy chat.

Frequently asked questions

What is Quasilinearization in simple terms?

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 w…

Why does Quasilinearization matter?

Because it connects several mathematics ideas at once: it gives you a definition you can apply, a quantity you can calculate, and a way to check whether a result is plausible.

How should I study Quasilinearization?

Read the excerpt, restate it from memory, then work through the examples and applications listed on this page. The five-step study plan above takes about twenty minutes.

What does this page cover?

It gives you a compact reference excerpt plus original lgStudy explanations, examples, applications and study material on Quasilinearization.

Tags

  • Differential equations

Keep exploring