Multiplication


Multiplying Intervals is a lot more complicated then adding and subtracting Intervals. To multiply Intervals follow the steps below:

low X=a
high X=b
low Y=c
high Y=d
low result=e
high result=f


X Values: [a,b]
Y Values: [c,d]


When calculating Intervals the X values are placed "on top of" the Y values. Also the lowest value of either the X of the Y is placed first in the set.

X Values: [a,b]
Y Values: * [c,d]
Result: [e,f]


[1,3]
* [2,4]
[2,12]