How can I go about negating predicates? It's asking me to shift a negation in as far inside the predicate as possible.
$$\forall x ((x \ge 100) \lor (x < 100))$$
I am quite new to discrete mathematics so would greatly appreciate a walkthrough. Thanks!
hint
$$\forall \to \;\;\exists $$ $$\ge \to \;\;<$$ $$\lor \to \;\;\land $$
so the negation is
$$\exists x \;: x <100 \;\; \land \;\; x\ge 100$$
Your proposition is always true (tautology), thus its negation is always false (contradiction).