|
-
Apr 7th, 2006, 07:25 PM
#8
Thread Starter
New Member
Re: negation
 Originally Posted by bpd
Well, I won't do it for you, but I'll tell you how to do it.
To negate an expression, reverse the operators. So, for instance, convert all ANDs to ORs and all ORs to ANDs. Also, convert all = to <>, all <> to =, all > to <=, all < to >=, etc.
By way of example, if the expression were:
(a <> b) OR (b <= c)
The negation would be:
(a = b) AND (b > c)
Thanks so much that is very helpful.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|