I would like to ask Mathematica "does statement A imply statement B?" and get a yes or no (true or false) answer whenever one exists.
I have entered the input Reduce[ Implies[x>0 && y>0 , xy > 0] ]. The output I was expecting was true. The output I actually get is x <= 0 || y <= 0 || (y < 0 && x < 0) || (y > 0 && x > 0).
Could someone explain how I can get Mathematica to produce the desired result from the first paragraph?
Realsas domain seems to do the trick for dome reason – Lukas Lang Jul 05 '18 at 10:43