By using DE Morgan's law simplify the logical expression not ((style>=8) and (bribe>5)) to the one that contains no parentheses .
时间: 2024-06-01 17:11:43 浏览: 109
simplify
not ((style>=8) and (bribe>5))
Using De Morgan's law, we can rewrite the above expression as:
not (style>=8) or not (bribe>5)
Simplifying further, we can remove the parentheses and write:
not style<8 or not bribe>5
阅读全文