Piecewise linear approximation: Difference between revisions

From Cornell University Computational Optimization Open Textbook - Optimization Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 53: Line 53:


===Function Value Evaluation===
===Function Value Evaluation===
To compute <math>sin(0.5)</math> with the above setting, the first thing to do is to determine the two non-zeros <math>\alpha</math>'s. In this case, they are <math>\alpha_{5}</math> and <math>\alpha_{6}</math> because <math>x'=0.5</math> is between <math>x_{5}=0</math> and <math>x_{6}=0.25\pi</math>. Then <math>\alpha_{5}=0.3634</math> and <math>\alpha_{6}=0.6366</math> can be obtained by solving (10) and (11). Finally, <math>f_{a}(0.5)</math> is calculated by (12): <math>f_{a}=\sum_{i=1}^{9}\alpha _{i}sin(x_{i})=0.3634\times0+0.6366\times\frac{\sqrt{2}}{2}=0.4501</math>. And it is very close to the exact value: <math>f(0.5)=sin(0.5)=0.4794</math>.  
To compute <math>sin(0.5)</math> with the above setting, the first thing to do is to determine the two non-zeros <math>\alpha</math>'s. In this case, they are <math>\alpha_{5}</math> and <math>\alpha_{6}</math> because <math>x'=0.5</math> is between <math>x_{5}=0</math> and <math>x_{6}=0.25\pi</math>. Then <math>\alpha_{5}=0.3634</math> and <math>\alpha_{6}=0.6366</math> can be obtained by solving (10) and (11). Finally, <math>f_{a}(0.5)</math> is calculated by (12): <math>f_{a}=\sum_{i=1}^{9}\alpha _{i}sin(x_{i})=0.3634\times0+0.6366\times\frac{\sqrt{2}}{2}=0.4501</math>, which is basically just a simple interpolation bewteen <math>x_{5}</math> and <math>x_{6}</math>. And it is very close to the exact value: <math>f(0.5)=sin(0.5)=0.4794</math>.  


It is worth noticing that more sampling points can be added to increase the accuracy of the approximation. And these discretization points do not necessarily to be evenly distributed as what is shown in this example.
It is worth noticing that more sampling points can be added to increase the accuracy of the approximation. And these discretization points do not necessarily to be evenly distributed as what is shown in this example.

Revision as of 12:41, 25 November 2021

Authors: Tianhong Tan, Shoudong Zhu (CHEME 6800, 2021 Fall)

Introduction

Currently, approximating a complex non-linear function or smooth curve is very common in industry area. Like the very popular one, piecewise linear approximation, which is applied in a variety of real-world areas, such as signal processing and image processing in electronics information industry, pattern recognition in AI area[1]. The problem of piecewise linear approximation can be classified by which type of norms applied in approximating process, whether the length of segments is fixed or not and whether the approximation is continuity or discontinuity[2]. We can use piecewise linear approximation to represent any non-linear or linear function by any accuracy order by any accuracy by adding more nodes or segments until the accuracy is met[3]. The meaning of piecewise linear approximation's existence is it allow us to transform non-linear problem to be solved by linear formation, which is easier to be executed by machine and the amount of calculation is acceptable[4].

Theory, Methodology & Algorithms

Basics

For a function in a finite range , one can find sampling points to evaluate the function values. Then the can be approximated by a series of linear segments , where . Any given value between and can be written as the following form:

(1)

is a unique number between and .

The approximation of is calculated by a convex combination of and :

(2)

Algorithm Implementation

Though the piecewise linear approximation is quite straightforward from intuition, it is still necessary to translate the ideas discussed in the above section into some expressions that is easy for the applications in a MILP solver to deal with more complex problems. Therefore, the formulation is further developed to include both binary and continuous variables with several constraints to force the values become associated with the neighboring pair of consecutive break points. The constraints are listed below:

(3)

(4)

(5)

(6)

(7)

's are binary variables while 's are continuous variables from to . (3) indicates that only one takes the value of and all the other 's are . Therefore, (4) imposes that the only two 's which are not are and , which are corresponding to the two neighbors of : and . (5) and (6) ensure that and , which is consistent with the expression of the approximation in (2). Finally, (7) Computes , which is the linear approximation of [5].

The above formulation utilizes the idea of Special Ordered Sets (SOSs), which are powerful tools to model piecewise linear approximation problems [6]. They are defined as ordered sets of variables. In type 1 SOS (S1), only one variable can be non-zero, and 's in (3) form an S1. In type 2 SOS (S2), only two neighboring variables can be non-zero, and 's in (4) form an S2.

A more Advanced Development

Numerical Example

Sampling Points Setting

In this section we consider the trigonometric function , which is widely used in engineering and many other fields, as an example. 9 evenly distributed sampling points is added for the convenience of illustration. And from the following figure, we can see that the approximation straight lines are already close enough to the original sine function just with a small number of sampling points.

Fig.1 Piecewise linear approximation of f(x) = sin(x)

In this example, the piecewise linear approximation of for points , which correspond to , could be computed with the following constraints:

(8)

(9)

(10)

(11)

(12)

Function Value Evaluation

To compute with the above setting, the first thing to do is to determine the two non-zeros 's. In this case, they are and because is between and . Then and can be obtained by solving (10) and (11). Finally, is calculated by (12): , which is basically just a simple interpolation bewteen and . And it is very close to the exact value: .

It is worth noticing that more sampling points can be added to increase the accuracy of the approximation. And these discretization points do not necessarily to be evenly distributed as what is shown in this example.

Applications

Conclusion

References

  1. G. Manis, G. Papakonstantinou and P. Tsanakas, "Optimal piecewise linear approximation of digitized curves," Proceedings of 13th International Conference on Digital Signal Processing, 1997, pp. 1079-1081 vol.2, doi: 10.1109/ICDSP.1997.628552.
  2. J. G. Dunham, "Optimum Uniform Piecewise Linear Approximation of Planar Curves," in IEEE Transactions on Pattern Analysis and Machine Intelligence, vol. PAMI-8, no. 1, pp. 67-75, Jan. 1986, doi: 10.1109/TPAMI.1986.4767753.
  3. Optimal Piecewise Linear Approximation of Convex Functions A. Imamoto, B. Tang, Member, IAENG, Proceedings of the World Congress on Engineering and Computer Science 2008 WCECS 2008, October 22 - 24, 2008, San Francisco, USA.
  4. Applied Mathematical Programming by Bradley, Hax, and Magnanti (Addison Wesley,1977) http://web.mit.edu/15.053/www/AppliedMathematicalProgramming.pdf
  5. D'Ambrosio, C., Lodi, A., Martello, S. (2010). Piecewise Linear Approximation of Functions of Two Varibles in MILP Models, Operations Research Letters, 38, 39-46.
  6. Tomlin, J. A., “Special Ordered Sets and an Application to Gas Supply Operations Planning”, Ketron Management Science, Inc., Mountain View, CA 94040-1266, USA.