Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. Reduce[a == 0 [Implies] a == 0]
  2. Reduce[a == 0 [Implies] 0 == a]
  3. Reduce[a == 0 [And] b == 0 [Implies] a == 0 [And] b == 0]
  4. Reduce[a == 0 [And] b == 0 [Implies] a == 0 [And] 0 == b]
  5. Reduce[a == 0 [And] b == 0 [Implies] 0 == a [And] 0 == b]
  6.  
  7. (b == 0 && a == 0) || a != 0 || b != 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement