Thanks for doing some tests! That’s pretty weird that you are getting more out of OR than what you are putting in. Did you use dummy cables to zero out channel 2?
Also, thinking a bit more on this, an analog XOR can be implemented by doing
Max(A, B) - Min(A, B)
AKA
(A OR B) - (A AND B)
Or as is actually being done in this patch:
-[ Min(CH1, CH3) - Max(CH1, CH3) ]
which is equivalent to
-Min(CH1, CH3) + Max(CH1, CH3)
and
Max(CH1, CH3) - MIN(CH1, CH3)
and
(CH1 OR CH3) - (CH1 AND CH3)
Summing CH1 and CH3 can act as an AND gate if the low voltage is negative.
A + B
-------
+V +V +V
+V 0V -V
-V 0V +V
-V -V -V
So the Maths patch does make sense but only if you have bipolar gates. Looking at the manual for pressure points it seems that it is 0V to +8V so I’m still confused though 