I'm trying to write a function in Python that takes it argument as a Python list and returns a boolean value based on the truth vale of the proposition $E(x) \to \exists y \text{ s.t. } x=2y$, where here the proposition $E(x)$ means 'x is even'.
print(check_prop([-2,-1,0,1,2,3])) gives an output true
print(check_prop([-2,-1,0,1,3,4])) gives an output false
I don't quite understand how the truth value is true in the first case and false in the second.