21

I am trying to understand what “$p$ implies $q$” means. I read that $p$ is a sufficient condition for $q$, and $q$ is a necessary condition for $p$. Further from Wikipedia,

A necessary condition of a statement must be satisfied for the statement to be true. Formally, a statement $P$ is a necessary condition of a statement $Q$ if $Q$ implies $P,\quad (Q \Rightarrow P)$.

A sufficient condition is one that, if satisfied, assures the statement's truth. Formally, a statement $P$ is a sufficient condition of a statement $Q$ if $P$ implies $Q,\quad (P \Rightarrow Q)$.

Now what I am stuck with is that if $P$ is not satisfied will the condition still always be true?

t.b.
  • 78,116

4 Answers4

28

This is a simple matter answered by the truth table of $\Rightarrow$:

$$\begin{array}{ c | c || c | } P & Q & P\Rightarrow Q \\ \hline \text T & \text T & \text T \\ \text T & \text F & \text F \\ \text F & \text T & \text T \\ \text F & \text F & \text T \end{array}$$

This shows that when $P$ is false, the implication is true. Note that this is the definition of the table, there is no need to prove it. This is how $\Rightarrow$ is defined to work.

As an example, here is one:

$$\textbf{If it is raining then there are clouds in the sky}$$

In this case $P=$It is raining, and $Q=$There are clouds in the sky. Note that $P$ is sufficient to conclude $Q$, and $Q$ is necessary for $P$. There is no rain without clouds, and if there are no clouds then there cannot be any rain.

However, note that $P$ is not necessary for $Q$. There could be light clouds without any rain, and there could be clouds of snow and blizzard (which is technically not rain).

Asaf Karagila
  • 393,674
  • Thanks for your answer. In your answer the statement P is false, but as I read that p is not neccessary but sufficient for q then shouldn't it be true as q is true? –  Sep 04 '11 at 09:41
  • @fahad: In my answer, $Q$ is necessary for $P$, and $P$ is sufficient for $Q$. – Asaf Karagila Sep 04 '11 at 09:46
  • @fahad: No; that $p$ is not necessary for $q$ means that $p$ need not be true for $q$ to be true. It is a sufficient but not necessary condition for you to get rich that you win the lottery. It may well be true that you get rich ($q$) even though you don't win the lottery ($\neg p$). – joriki Sep 04 '11 at 09:54
  • Note that there exist 15 other possibilities for the last column where each entry belongs to {T, F}. None of the other ones fit with the meaning of implication as well as this one. – Doug Spoonwood Sep 04 '11 at 15:13
  • @LePressentiment: This is commonly known as a typo. – Asaf Karagila Aug 28 '13 at 08:35
  • @AsafKaragila: I just wanted to check. Thanks. –  Aug 28 '13 at 13:03
  • @Asaf Karagila, if P is sufficient to conclude Q, then how will you conclude Q if P is false, because Q can be true or false for the entire statement to be true. So you can't conclude the truth value of Q in that case. – Zephyr Sep 24 '17 at 11:30
  • @Zephyr: Huh??? (Don't explain the math, I know the math, explain the context.) – Asaf Karagila Sep 24 '17 at 11:33
  • @Zephyr: By other methods. If I tell you "If you're a lizard, then you are using Math.SE". Hopefully, you're not a lizard (but if you are, kudos for your grasp on technology). How can you say if you are using Math.SE just by knowing you're not a lizard? You can't. – Asaf Karagila Sep 24 '17 at 11:39
  • 2
    @Zephyr: No. Sufficient means that it is enough to know that P is true in order to know that Q is true. And that's that. Nothing more, and nothing less. We say that P is necessary if the falsehood of P implies the falsehood of Q. – Asaf Karagila Sep 24 '17 at 12:10
  • Thanks @Asaf Karagila. Yeah, I got the meaning itself wrong before. – Zephyr Sep 24 '17 at 12:14
6

Once I read a classic example which I would like to share with you. A politician said......... p(If I Will win) q(I will cut down taxes by half) People will feel cheated only in the case when the politician actually won but taxes remained the same. In this case, q is FALSE but p is true so p->q become false. We are okay with the rest of cases/situation, so rest of combination of p and q this statement is TRUE.

Lets examine "p is not necessary but sufficient for q"................

There can be a case when this politician lose but taxes get reduced so for the reduction of taxes p is not necessary but sufficient...........

regarding "q is a necessary condition for p" we can say reduction in taxes is necessary after the victory of the politician else the entire statement of the politician will be false or we can say p->q will be false.

0

$p\ \text{implies}\ q$ means that there is no case where both $p$ is true and $q$ is false. So when and only when $p$ is true and $q$ is false, the statement is false and in other cases, the statement is true.

$$\begin{array}{c|c|c} p & q & p\ \text{implies}\ q \\ \hline \text{T} & \text{T} & \text{T} \\ \hline \text{T} & \text{F} & \text{F} \\ \hline \text{F} & \text{T} & \text{T} \\ \hline \text{F} & \text{F} & \text{T} \end{array}$$

0

One way implications like this don't put any restrictions on what the antecedent can be (P), only what the consequent (Q) can be. P can always be whatever, but Q NEEDS to be true IF P is true (Otherwise the statement "If P is true, then Q is true will be false). However, if P is false, the Q can be whatever.

amWhy
  • 209,954