Key Sequence Notation New Concepts Important Results / Claims overapproximate inclusion functions Questions Interesting Factoids reachability for non-linear systems Standard reachability analysis for Linear Dynamical System is not great, because polytopes don’t stay polytopes when we apply non-linear operations. The general vibe, then, is to take a non-linear thing and bound them using a polytope. interval arithmetic We can’t propagate polytopes though non linear systems; but we can propagate intervals. Suppose we have an interval:
Let’s define some operations interval counterpart of addition \begin{equation} [x] + [y] = \left{x+y \mid x \in [x], y \in [y]\right} \end{equation} We could actually compute the interval explicitly:
we can just add the intervals together interval counter part of binary operators \begin{equation} [x] \cdot [y] = \left{x \cdot y \mid x \in [x], y \in [y]\right} \end{equation} specifically… \begin{equation} [x] + [y] = [x_1 - y_2, x_2 - y_1] \end{equation}
notably! this last thing is not defined if any of the intervals contains 0. for monotone function f: