Relaxed intersection

From HandWiki

The relaxed intersection of m sets corresponds to the classical intersection between sets except that it is allowed to relax few sets in order to avoid an empty intersection. This notion can be used to solve constraints satisfaction problems that are inconsistent by relaxing a small number of constraints. When a bounded-error approach is considered for parameter estimation, the relaxed intersection makes it possible to be robust with respect to some outliers.

Definition

The q-relaxed intersection of the m subsets [math]\displaystyle{ X_{1},\dots ,X_{m} }[/math] of [math]\displaystyle{ R^{n} }[/math], denoted by [math]\displaystyle{ X^{\{q\}}=\bigcap^{\{q\}}X_{i} }[/math] is the set of all [math]\displaystyle{ x \in R^{n} }[/math] which belong to all [math]\displaystyle{ X_{i} }[/math] 's, except [math]\displaystyle{ q }[/math] at most. This definition is illustrated by Figure 1.

Figure 1. q-intersection of 6 sets for q=2 (red), q=3 (green), q= 4 (blue), q= 5 (yellow).

Define [math]\displaystyle{ \lambda (x) =\text{card} \left\{ i\ |\ x\in X_{i}\right\}. }[/math]

We have [math]\displaystyle{ X^{\{q\}}=\lambda ^{-1}([m-q,m]) . }[/math]

Characterizing the q-relaxed intersection is a thus a set inversion problem. [1]

Example

Consider 8 intervals: [math]\displaystyle{ X_{1}=[1,4], }[/math] [math]\displaystyle{ X_{2}=\ [2,4], }[/math] [math]\displaystyle{ X_{3}=[2,7], }[/math] [math]\displaystyle{ X_{4}=[6,9], }[/math] [math]\displaystyle{ X_{5}=[3,4], }[/math] [math]\displaystyle{ X_{6}=[3,7]. }[/math]

We have

[math]\displaystyle{ X^{\{0\}} = \emptyset, }[/math] [math]\displaystyle{ X^{\{1\}}=[3,4], }[/math] [math]\displaystyle{ X^{\{2\}}=[3,4], }[/math] [math]\displaystyle{ X^{\{3\}}=[2,4] \cup [6,7], }[/math] [math]\displaystyle{ X^{\{4\}}=[2,7], }[/math] [math]\displaystyle{ X^{\{5\}}=[1,9], }[/math] [math]\displaystyle{ X^{\{6\}}=]-\infty ,\infty [. }[/math]

Relaxed intersection of intervals

The relaxed intersection of intervals is not necessary an interval. We thus take the interval hull of the result. If [math]\displaystyle{ X_i }[/math]'s are intervals, the relaxed intersection can be computed with a complexity of m.log(m) by using the Marzullo's algorithm. It suffices to sort all lower and upper bounds of the m intervals to represent the function [math]\displaystyle{ \lambda }[/math]. Then, we easily get the set

[math]\displaystyle{ X^{\{q\}}=\lambda^{-1}([m-q,m]) }[/math]

which corresponds to a union of intervals. We then return the smallest interval which contains this union.

Figure 2 shows the function [math]\displaystyle{ \lambda(x) }[/math] associated to the previous example.

Figure 2. Set-membership function associated to the 6 intervals.

Relaxed intersection of boxes

To compute the q-relaxed intersection of m boxes of [math]\displaystyle{ R^{n} }[/math], we project all m boxes with respect to the n axes. For each of the n groups of m intervals, we compute the q-relaxed intersection. We return Cartesian product of the n resulting intervals. [2] Figure 3 provides an illustration of the 4-relaxed intersection of 6 boxes. Each point of the red box belongs to 4 of the 6 boxes.

Figure 3. The red box corresponds to the 4-relaxed intersection of the 6 boxes

Relaxed union

The q-relaxed union of [math]\displaystyle{ X_1,\dots ,X_m }[/math] is defined by

[math]\displaystyle{ \overset{\{q\}}{\bigcup}X_{i}=\bigcap^{\{m-1-q\}}X_i }[/math]

Note that when q=0, the relaxed union/intersection corresponds to the classical union/intersection. More precisely, we have

[math]\displaystyle{ \bigcap^{\{0\}}X_{i} =\bigcap X_i }[/math]

and

[math]\displaystyle{ \overset{\{0\} }{\bigcup}X_{i} =\bigcup X_i }[/math]

De Morgan's law

If [math]\displaystyle{ \overline{X} }[/math] denotes the complementary set of [math]\displaystyle{ X_i }[/math], we have

[math]\displaystyle{ \overline{\bigcap^{\{q\}}X_i} = \overset{\{q\}}{\bigcup}\overline{X_i} }[/math]

[math]\displaystyle{ \overline{\overset{\{q\} }{\bigcup }X_i}=\bigcap^{\{q\}}\overline{X_i}. }[/math]

As a consequence

[math]\displaystyle{ \overline{\bigcap\limits^{\{q\}}X_i}=\overline{\overset{\{m-q-1\} }{\bigcup }X_i}=\bigcap^{\{m-q-1\}}\overline{X_i} }[/math]

Relaxation of contractors

Let [math]\displaystyle{ C_1,\dots ,C_m }[/math] be m contractors for the sets [math]\displaystyle{ X_1,\dots ,X_m }[/math], then

[math]\displaystyle{ C([x]) =\bigcap^{\{q\}}C_i([x]). }[/math]

is a contractor for [math]\displaystyle{ X^{\{q\}} }[/math] and

[math]\displaystyle{ \overline{C}([x]) =\bigcap^{\{m-q-1\}}\overline{C}_i([x]) }[/math]

is a contractor for [math]\displaystyle{ \overline{X}^{\{q\}} }[/math], where

[math]\displaystyle{ \overline{C}_1,\dots,\overline{C}_{m} }[/math]

are contractors for

[math]\displaystyle{ \overline{X}_1,\dots ,\overline{X}_m. }[/math]

Combined with a branch-and-bound algorithm such as SIVIA (Set Inversion Via Interval Analysis), the q-relaxed intersection of m subsets of [math]\displaystyle{ R^{n} }[/math] can be computed.

Application to bounded-error estimation

The q-relaxed intersection can be used for robust localization [3] [4] or for tracking. [5]

Robust observers can also be implemented using the relaxed intersections to be robust with respect to outliers. [6]

We propose here a simple example [7] to illustrate the method. Consider a model the ith model output of which is given by

[math]\displaystyle{ f_i(p)=\frac{1}{\sqrt{2\pi p_2}}\exp (-\frac{(t_i-p_1)^{2}}{2p_2}) }[/math]

where [math]\displaystyle{ p\in R^{2} }[/math]. Assume that we have

[math]\displaystyle{ f_i(p) \in [y_i] }[/math]

where [math]\displaystyle{ t_i }[/math] and [math]\displaystyle{ [y_i] }[/math] are given by the following list

[math]\displaystyle{ \{ (1,[0;0.2]),(2,[0.3;2]),(3,[0.3;2]),(4,[0.1;0.2]),(5,[0.4;2]),(6,[-1;0.1]) \} }[/math]

The sets [math]\displaystyle{ \lambda^{-1}(q) }[/math] for different [math]\displaystyle{ q }[/math] are depicted on Figure 4.

Figure 4. Set of all parameter vectors consistent with exactly 6-q data bars (painted red), for q=1,2,3,4,5.

References

  1. Jaulin, L.; Walter, E.; Didrit, O. (1996). Guaranteed robust nonlinear parameter bounding. In Proceedings of CESA'96 IMACS Multiconference (Symposium on Modelling, Analysis and Simulation). http://www.ensta-bretagne.fr/jaulin/paper_CESA96.pdf. 
  2. Jaulin, L.; Walter, E. (2002). "Guaranteed robust nonlinear minimax estimation". IEEE Transactions on Automatic Control 47 (11): 1857–1864. doi:10.1109/TAC.2002.804479. http://www.ensta-bretagne.fr/jaulin/paper_qminimax.pdf. 
  3. Kieffer, M.; Walter, E. (2013). Guaranteed characterization of exact non-asymptotic confidence regions in nonlinear parameter estimation. In Proceedings of IFAC Symposium on Nonlinear Control Systems, Toulouse : France (2013). http://hal-supelec.archives-ouvertes.fr/docs/00/81/94/88/PDF/Nolcos2013_KW.pdf. 
  4. Drevelle, V.; Bonnifait, Ph. (2011). "A set-membership approach for high integrity height-aided satellite positioning". GPS Solutions 15 (4): 357–368. doi:10.1007/s10291-010-0195-3. http://hal.archives-ouvertes.fr/hal-00608133/en/. 
  5. Langerwisch, M.; Wagner, B. (2012). "Guaranteed Mobile Robot Tracking Using Robust Interval Constraint Propagation". Intelligent Robotics and Applications. .
  6. Jaulin, L. (2009). "Robust set membership state estimation; Application to Underwater Robotics". Automatica 45: 202–206. doi:10.1016/j.automatica.2008.06.013. http://www.ensta-bretagne.fr/jaulin/paper_sauce_automatica.pdf. 
  7. Jaulin, L.; Kieffer, M.; Walter, E.; Meizel, D. (2002). "Guaranteed robust nonlinear estimation with application to robot localization". IEEE Transactions on Systems, Man and Cybernetics, Part C (Applications and Reviews) 32 (4): 374–381. doi:10.1109/TSMCC.2002.806747. Archived from the original on 2011-04-28. https://web.archive.org/web/20110428224956/http://www.ensta-bretagne.fr/jaulin/robab.pdf.