InterviewSolution
Saved Bookmarks
| 1. |
Write the negations of the x + 8 > 11 or y – 3 = 6 |
|
Answer» Let p : x + 8 > 11, q : y — 3 = 6. Then, The symbolic form of the given statement is p ∨ q. Since ~(p ∨ q) ≡ ~p ∧ ~q, The negation of given statement is : ‘x + 8 > 11 and y – 3 ≠ 6’ OR ‘x + 8 </ 11 and y – 3 ≠ 6’ |
|