1.8 Truth Tables: Conditionals and Biconditionals (2024)

Learning Objectives

  • Basic Truth Tables for
    • Conditional
    • Biconditional
  • Working with the Conditional Statement
    • Converse
    • Inverse
    • Contrapositive

Conditional
This is sometimes called an implication. A conditional is a logical compound statement in which a statement p, called the antecedent, implies a statement q, called the consequent.
A conditional is written as p → q and is translated as “if p, then q”.

The English statement “If it is raining, then there are clouds is the sky” is a conditional statement. It makes sense because if the antecedent “it is raining” is true, then the consequent “there are clouds in the sky” must also be true.

Notice that the statement tells us nothing of what to expect if it is not raining; there might be
clouds in the sky, or there might not. If the antecedent is false, then the consequent becomes
irrelevant.

Example

Suppose you order a team jersey online on Tuesday and want to receive it by Friday so you can
wear it to Saturday’s game. The website says that if you pay for expedited shipping, you will
receive the jersey by Friday. In what situation is the website telling a lie?
There are four possible outcomes:
1) You pay for expedited shipping and receive the jersey by Friday
2) You pay for expedited shipping and don’t receive the jersey by Friday
3) You don’t pay for expedited shipping and receive the jersey by Friday
4) You don’t pay for expedited shipping and don’t receive the jersey by Friday

Only one of these outcomes proves that the website was lying: the second outcome in which you pay for expedited shipping but don’t receive the jersey by Friday. The first outcome is exactly what was promised, so there’s no problem with that. The third outcome is not a lie because the website never said what would happen if you didn’t pay for expedited shipping;
maybe the jersey would arrive by Friday whether you paid for expedited shipping or not. The fourth outcome is not a lie because, again, the website didn’t make any promises about when the jersey would arrive if you didn’t pay for expedited shipping.

It may seem strange that the third outcome in the previous example, in which the first part is false but the second part is true, is not a lie. Remember, though, that if the antecedent is false, we cannot make any judgment about the consequent. The website never said that paying for expedited shipping was the only way to receive the jersey by Friday.

Example

A friend tells you “If you upload that picture to Facebook, you’ll lose your job.” Under what conditions can you say that your friend was wrong?
There are four possible outcomes:
1) You upload the picture and lose your job
2) You upload the picture and don’t lose your job
3) You don’t upload the picture and lose your job
4) You don’t upload the picture and don’t lose your job
There is only one possible case in which you can say your friend was wrong: the second outcome in which you upload the picture but still keep your job. In the last two cases, your friend didn’t say anything about what would happen if you didn’t upload the picture, so you can’t say that their statement was wrong. Even if you didn’t upload the picture and lost your job anyway, your
friend never said that you were guaranteed to keep your job if you didn’t upload the picture; you might lose your job for missing a shift or punching your boss instead.

Aconditional statementtells us that if the antecedent is true, the consequent cannot be false. Thus, a conditional statement is only false when a true antecedent implies a false consequent.

1.8 Truth Tables: Conditionals and Biconditionals (1)

Examples

Another example is living in an apartment and paying rent.p → q where p is I live in an apartment and q is then I pay rent. What are the outcomes?

  1. I do live in an apartment and I pay rent, then the situation is true (no eviction!)
  2. I live in an apartment and I don’t pay rent, then the situation is false (eviction, broken promise)
  3. I don’t live in an apartment but I do pay rent, then the situation is true (though why would you do it?)
  4. I don’t live in an apartment and I don’t pay rent, then the situation is true (no promise broken)

With conditional situations, we also have the following:

Related Statements
The original conditional is “if p, then q” p → q
The converse is “if q, then p” q → p
The inverse is “if not p, then not q” ~p →~ q
The contrapositive is “if not q, then not p” ~q → ~p

Examples

Consider the conditional “If it is raining, then there are clouds in the sky.” It seems reasonable to assume that this is true.
The converse would be “If there are clouds in the sky, then it is raining.” This is not always true.
The inverse would be “If it is not raining, then there are not clouds in the sky.” Likewise, this is not always true.
The contrapositive would be “If there are not clouds in the sky, then it is not raining.” This
statement is true, and is equivalent to the original conditional.

Examples

Suppose this statement is true: “If I eat this giant cookie, then I will feel sick.” Which of the following statements must also be true?
a. If I feel sick, then I ate that giant cookie.
b. If I don’t eat this giant cookie, then I won’t feel sick.
c. If I don’t feel sick, then I didn’t eat that giant cookie.

a. This is the converse, which is not necessarily true. I could feel sick for some other reason, such as drinking sour milk.

b. This is the inverse, which is not necessarily true. Again, I could feel sick for some other reason; avoiding the cookie doesn’t guarantee that I won’t feel sick.

c. This is the contrapositive, which is true, but we have to think somewhat backwards to explain it. If I ate the cookie, I would feel sick, but since I don’t feel sick, I must not have eaten the cookie.
Notice again that the original statement and the contrapositive have the same truth value (both
are true), and the converse and the inverse have the same truth value (both are false).

Biconditional
A biconditional is a logical conditional statement in which the antecedent and consequent are interchangeable.
A biconditional is written as p ↔ q and is translated as “p if and only if q”.

Because a biconditional statement p ↔ q is equivalent to (p → q) ⋀ (q → p), we may think of it as a conditional statement combined with its converse: if p, then q and if q, then p. The double-headed arrow shows that the conditional statement goes from left to right and from right to left. A biconditional is considered true as long as the antecedent and the consequent have the same truth value; that is, they are either both true or both false.

Thebiconditionaltells us that, “Either both are the case, or neither is… ” Thus, a biconditional statement is true when both statements are true, or both are false.

1.8 Truth Tables: Conditionals and Biconditionals (2)

Examples

Suppose this statement is true: “The garbage truck comes down my street if and only if it is Thursday morning.” Which of the following statements could be true?
a. It is noon on Thursday and the garbage truck did not come down my street this morning.
b. It is Monday and the garbage truck is coming down my street.
c. It is Wednesday at 11:59PM and the garbage truck did not come down my street today.

a. This cannot be true. This is like the second row of the truth table; it is true that I just experienced Thursday morning, but it is false that the garbage truck came.
b. This cannot be true. This is like the third row of the truth table; it is false that it is Thursday, but it is true that the garbage truck came.
c. This could be true. This is like the fourth row of the truth table; it is false that it is Thursday, but it is also false that the garbage truck came, so everything worked out like it should.

Working with the Conditional Statement

Conditional statements play a very big role in logic and one of the ways we can learn more about them is to study the three related statements.

Example

Consider again the valid implication “If it is raining, then there are clouds in the sky.”

Write the related converse, inverse, and contrapositive statements.

Show Solution

Try It

ConditionalConverseInverseContrapositive
pq[latex]p\rightarrow{q}[/latex][latex]q{\rightarrow}p[/latex][latex]\sim{p}\rightarrow\sim{q}[/latex][latex]\sim{q}\rightarrow\sim{p}[/latex]
TTTTTT
TFFTTF
FTTFFT
FFTTTT

This is the end of the section. Close this tab and proceed to the corresponding assignment.

1.8 Truth Tables: Conditionals and Biconditionals (2024)

FAQs

What is conditional and biconditional in truth table? ›

The double-headed arrow shows that the conditional statement goes from left to right and from right to left. A biconditional is considered true as long as the antecedent and the consequent have the same truth value; that is, they are either both true or both false.

What is a sufficient condition in truth table? ›

Sufficient condition: p is a sufficient condition for q means "if p then q." Necessary condition: p is a necessary condition for q means "if not p then not q."

How many rows are there in the truth table for a conditional statement? ›

So, the columns of the truth table will include p p , q q , ~ p ~ p , ~ p ∨ q , ~ p ∨ q , and p → ( ~ p ∨ q ) . p → ( ~ p ∨ q ) . Because there are only two basic propositions, p p and q q , the table will have 2 ( 2 ) = 4 2 ( 2 ) = 4 rows of truth values to account for all the possible outcomes.

What is the truth value of a conditional? ›

A conditional is considered true when the antecedent and consequent are both true or if the antecedent is false. When the antecedent is false, the truth value of the consequent does not matter; the conditional will always be true.

What is an example of a biconditional statement? ›

So, the conditional statement "if a polygon has four equal length sides and four equal angles, then it is a square" has the converse "if a polygon is a square, then it has four equal length sides and four equal angles." This can be written as a biconditional statement: "A polygon has four equal length sides and four ...

What is the biconditional rule? ›

The biconditional statement “p if and only if q,” denoted p⇔q, is true when both p and q carry the same truth value, and is false otherwise. It is sometimes abbreviated as “p iff q.” Its truth table is depicted below.

How do you find the necessary and sufficient condition? ›

We say that the statement A is a necessary and sufficient condition for the statement B when B is true if and only if A is also true. That is, either A and B are both true, or they are both false.

Is if and only if biconditional? ›

In logic and related fields such as mathematics and philosophy, "if and only if" (often shortened as "iff") is paraphrased by the biconditional, a logical connective between statements.

How to find the truth value of a biconditional statement? ›

So the biconditional statement p ⟺ q breaks down to the conditional statement, p ⇒ q and its converse q ⇒ p . In other words, for p ⟺ q to be true, then p ⇒ q and q ⇒ p must both be true. If they are true, then the biconditional statement is true. If one or both are false, then the biconditional statement is false.

What is a conditional statement example? ›

What is a conditional statement? Simply put, a conditional statement is an if-then statement, e.g., '"If Jane does her homework, then Jane will get a good grade."' The conditional statement's definition emphasizes a relationship between two ideas, wherein one idea follows from the other.

How do you explain truth tables? ›

A truth table lists all possible combinations of truth values. In a two-valued logic system, a single statement p has two possible truth values: truth (T) and falsehood (F). Given two statements p and q, there are four possible truth value combinations, that is, TT, TF, FT, FF.

What is an example of truth conditional? ›

Truth-conditional theories of semantics attempt to define the meaning of a given proposition by explaining when the sentence is true. So, for example, because 'snow is white' is true if and only if snow is white, the meaning of 'snow is white' is snow is white.

What is an example of a true conditional statement? ›

Conditional Statement: “If today is Wednesday, then yesterday was Tuesday.” Hypothesis: “If today is Wednesday” so our conclusion must follow “Then yesterday was Tuesday.” So the converse is found by rearranging the hypothesis and conclusion, as Math Planet accurately states.

What is the truth table of a conditional sentence? ›

When each of P and Q is a proposition, the conditional with antecedent P and consequent Q is denoted by P  Q and is read “P implies Q” or “if P then Q.” By definition, the conditional statement P  Q is false when P is true and Q is false. Otherwise, P  Q is true. Note.

Is only if biconditional or conditional? ›

Diagram this as: pass ↔ study. 2:09 – The if and only if (↔) phrase serves a shorthand for referring to biconditionals which means that both directions of a conditional statement are true.

What is conditional and biconditional in philosophy? ›

So in a conditional statement, the antecedent is a sufficient condition for the consequent and the consequent is a necessary condition for the antecedent. In a biconditional statement such as P ↔ Q , we know that P is both a necessary and sufficient condition for Q, and likewise Q for P.

What is meant by conditional statement? ›

Conditional statements are those statements where a hypothesis is followed by a conclusion. It is also known as an " If-then" statement. If the hypothesis is true and the conclusion is false, then the conditional statement is false. Likewise, if the hypothesis is false the whole statement is false.

What is an example of a conditional proposition? ›

Conditional statements are written by connecting two propositions with the words if and then. For example, "if it is winter time, then you will likely hear Christmas carols." is a conditional statement.

Top Articles
One Facing Life Maybe Crossword
414-290-5379
Lifewitceee
Repentance (2 Corinthians 7:10) – West Palm Beach church of Christ
Nfr Daysheet
Prosper TX Visitors Guide - Dallas Fort Worth Guide
DENVER Überwachungskamera IOC-221, IP, WLAN, außen | 580950
Nm Remote Access
Mission Impossible 7 Showtimes Near Regal Bridgeport Village
Gfs Rivergate
Clarksburg Wv Craigslist Personals
Otterbrook Goldens
Best Nail Salon Rome Ga
What Happened To Anna Citron Lansky
Bend Pets Craigslist
Does Breckie Hill Have An Only Fans – Repeat Replay
R Cwbt
Keurig Refillable Pods Walmart
Unforeseen Drama: The Tower of Terror’s Mysterious Closure at Walt Disney World
Eine Band wie ein Baum
Schedule An Oil Change At Walmart
Invitation Homes plans to spend $1 billion buying houses in an already overheated market. Here's its presentation to investors setting out its playbook.
Melendez Imports Menu
Garnish For Shrimp Taco Nyt
Red Cedar Farms Goldendoodle
Thick Ebony Trans
Bellin Patient Portal
Cornedbeefapproved
Times Narcos Lied To You About What Really Happened - Grunge
Pokémon Unbound Starters
Motor Mounts
Fbsm Greenville Sc
Emerge Ortho Kronos
9781644854013
When His Eyes Opened Chapter 2048
Tiny Pains When Giving Blood Nyt Crossword
Encompass.myisolved
Express Employment Sign In
Nba Props Covers
FREE - Divitarot.com - Tarot Denis Lapierre - Free divinatory tarot - Your divinatory tarot - Your future according to the cards! - Official website of Denis Lapierre - LIVE TAROT - Online Free Tarot cards reading - TAROT - Your free online latin tarot re
Mathews Vertix Mod Chart
St Vrain Schoology
Perc H965I With Rear Load Bracket
Willkommen an der Uni Würzburg | WueStart
Benjamin Franklin - Printer, Junto, Experiments on Electricity
Bf273-11K-Cl
Identogo Manahawkin
Assignation en paiement ou injonction de payer ?
Causeway Gomovies
Service Changes and Self-Service Options
Leslie's Pool Supply Redding California
Latest Posts
Article information

Author: Virgilio Hermann JD

Last Updated:

Views: 5921

Rating: 4 / 5 (61 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Virgilio Hermann JD

Birthday: 1997-12-21

Address: 6946 Schoen Cove, Sipesshire, MO 55944

Phone: +3763365785260

Job: Accounting Engineer

Hobby: Web surfing, Rafting, Dowsing, Stand-up comedy, Ghost hunting, Swimming, Amateur radio

Introduction: My name is Virgilio Hermann JD, I am a fine, gifted, beautiful, encouraging, kind, talented, zealous person who loves writing and wants to share my knowledge and understanding with you.