What is the negation of $p\to \sim q$?

2.1k Views Asked by At

I know that the negation of $p\to q$ is ~p V q but I can’t seem to figure out the effect $\sim q$ will have on the negation. Also is their a way to check if something is the negation of a statement?

1

There are 1 best solutions below

0
On

The definition of implication in propositional logic can be expressed with

\begin{equation}\tag{1} p\rightarrow q~:=~(\sim p)\lor q \end{equation}

By this definition, the negation of $p\rightarrow q$ is $p\land(\sim q)$. This means that the statement $p$ implies $q$, is false only when the antecedent or premise of the statement is true, and its consequent false.

Using the same definition, negation of the statement $p\rightarrow (\sim q)$ is

\begin{align} \sim(p\rightarrow (\sim q))~~~&Start\\ \sim((\sim p)\lor (\sim q))~~~&Substitute~(1)\\ p\land q~~~&De~Morgan's~law \end{align}

To check if any two statements in propositional logic are the negation of one another, it is sufficient to substitute all instances of implication with the first definition, then negate one, and apply De Morgan's law successively to it until one reduces to the other. If this is the case, then they are negations of one-another.