ArticleslgStudy

computer science

Progressive-iterative approximation method

Progressive-iterative approximation method is a computer science 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 Progressive-iterative approximation method rather than just read about it. In short: In mathematics, the progressive-iterative approximation method is an iterative method of data fitting with geometric meanings. Given a set of data points to be fitted, the method obtains a series of fitting curves (or surfaces) by iteratively updating the control points, and the limit curve (surface) can interpolate or approximate the given data points.

Progressive-iterative approximation method — main illustration
Progressive-iterative approximation method — illustration

Key takeaways

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

Reference excerpt

In mathematics, the progressive-iterative approximation method is an iterative method of data fitting with geometric meanings. Given a set of data points to be fitted, the method obtains a series of fitting curves (or surfaces) by iteratively updating the control points, and the limit curve (surface) can interpolate or approximate the given data points. It avoids solving a linear system of equations directly and allows flexibility in adding constraints during the iterative process. Therefore, it has been widely used in geometric design and related fields. The study of the iterative method with geometric meaning can be traced back to the work of scholars such as Dongxu Qi and Carl de Boor in the 1970s. In 1975, Qi et al. developed and proved the "profit and loss" algorithm for uniform cubic B-spline curves, and in 1979, de Boor independently proposed this algorithm. In 2004, Hongwei Lin and coauthors proved that non-uniform cubic B-spline curves and surfaces have the "profit and loss" property. Later, in 2005, Lin et al. proved that the curves and surfaces with normalized and totally positive basis all have this property and named it progressive iterative approximation (PIA). In 2007, Maekawa et al. changed the algebraic distance in PIA to geometric distance and named it geometric interpolation (GI). In 2008, Cheng et al. extended it to subdivision surfaces and named the method progressive interpolation (PI). Since the iteration steps of the PIA, GI, and PI algorithms are similar and all have geometric meanings, they are collectively referred to as geometric iterative methods (GIM). PIA is now extended to several common curves and surfaces in the geometric design field, including NURBS curves and surfaces, T-spline surfaces, and implicit curves and surfaces.

Iteration methods Generally, progressive-iterative approximation (PIA) can be divided into interpolation and approximation schemes. In interpolation algorithms, the number of control points is equal to that of the data points; in approximation algorithms, the number of control points can be less than that of the data points. Specifically, there are some representative iteration methods—such as local-PIA, implicit-PIA, fairing-PIA, and isogeometric least-squares progressive-iterative approximation (IG-LSPIA)—that are specialized for solving the isogeometric analysis problem.

Interpolation scheme: PIA

In interpolation algorithms of PIA, every data point is used as a control point. To facilitate the description of the PIA iteration format for different forms of curves and surfaces, the following formula is uniformly used:

P ( t ) = ∑ i = 1 n P i B i ( t ) . {\displaystyle \mathbf {P} (\mathbf {t} )=\sum _{i=1}^{n}\mathbf {P} _{i}B_{i}(\mathbf {t} ).}

For example:

… excerpt ends here. Continue reading the full article.

Illustrations

Progressive-iterative approximation method: Approximation scheme: LSPIATop left: Data points 
  
    
      
        
          
            Q
          
          
            i
          
        
      
    
    {\displaystyle \mathbf {Q} _{i}}
  
 (blue circles), initial control polygon (green lines) constructed from a subset of 
  
    
      
        
          Q
        
      
    
    {\displaystyle \mathbf {Q} }
  
, and initial fitting curve 
  
    
      
        
          
            P
          
          
            (
            0
            )
          
        
        (
        t
        )
      
    
    {\displaystyle \mathbf {P} ^{(0)}(t)}
  
. Top right: Difference vectors 
  
    
      
        
          
            δ
          
          
            i
          
          
            (
            k
            )
          
        
      
    
    {\displaystyle {\boldsymbol {\delta }}_{i}^{(k)}}
  
 for data points and difference vectors 
  
    
      
        
          
            Δ
          
          
            j
          
          
            (
            k
            )
          
        
      
    
    {\displaystyle \mathbf {\Delta } _{j}^{(k)}}
  
 for control points. Bottom: A new control polygon (purple lines) is generated by adding 
  
    
      
        
          
            Δ
          
          
            j
          
          
            (
            k
            )
          
        
      
    
    {\displaystyle \mathbf {\Delta } _{j}^{(k)}}
  
 to the old control points; it then creates the next fitting curve 
  
    
      
        
          
            P
          
          
            (
            1
            )
          
        
        (
        t
        )
      
    
    {\displaystyle \mathbf {P} ^{(1)}(t)}
  
 (purple curve).
Approximation scheme: LSPIATop left: Data points Q i {\displaystyle \mathbf {Q} _{i}} (blue circles), initial control polygon (green lines) constructed from a subset of Q {\displaystyle \mathbf {Q} } , and initial fitting curve P ( 0 ) ( t ) {\displaystyle \mathbf {P} ^{(0)}(t)} . Top right: Difference vectors δ i ( k ) {\displaystyle {\boldsymbol {\delta }}_{i}^{(k)}} for data points and difference vectors Δ j ( k ) {\displaystyle \mathbf {\Delta } _{j}^{(k)}} for control points. Bottom: A new control polygon (purple lines) is generated by adding Δ j ( k ) {\displaystyle \mathbf {\Delta } _{j}^{(k)}} to the old control points; it then creates the next fitting curve P ( 1 ) ( t ) {\displaystyle \mathbf {P} ^{(1)}(t)} (purple curve).
Progressive-iterative approximation method: Local PIA: If only one control point is adjusted, the Bézier curve just interpolates the data point (in red) corresponding to the adjusted control point.
Local PIA: If only one control point is adjusted, the Bézier curve just interpolates the data point (in red) corresponding to the adjusted control point.

Worked examples

Example 1 — a first encounter with Progressive-iterative approximation method

Start with the simplest possible case. Write down what Progressive-iterative approximation method claims or describes in one sentence, then invent the smallest concrete situation in which that sentence is true. In computer science, 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 Progressive-iterative approximation method 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 Progressive-iterative approximation method 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 Progressive-iterative approximation method

In research
Progressive-iterative approximation method appears in computer science 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 Progressive-iterative approximation method 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
Progressive-iterative approximation method is common in secondary-school and first-year university syllabi. It links to neighbouring topics Computational geometry, Computer-aided design, Computer graphics, so understanding it makes those chapters shorter.
In everyday life
Look for Progressive-iterative approximation method 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 Progressive-iterative approximation method in 20 minutes

  1. Read the reference excerpt below once, without taking notes.
  2. Close the page and write down what Progressive-iterative approximation method 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 Progressive-iterative approximation method out loud to somebody else — or to Teacher Smith in the lgStudy chat.

Frequently asked questions

What is Progressive-iterative approximation method in simple terms?

In mathematics, the progressive-iterative approximation method is an iterative method of data fitting with geometric meanings. Given a set of data points to be fitted, the method obtains a series of fitting curves (or surfaces) by iteratively updating the control points, and the limit curve (surfac…

Why does Progressive-iterative approximation method matter?

Because it connects several computer science 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 Progressive-iterative approximation method?

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 Progressive-iterative approximation method.

Tags

  • Computational geometry
  • Computer-aided design
  • Computer graphics
  • Curve fitting
  • Geometric algorithms

Keep exploring