Chapter 2 Section 3 Conditional Statements Conditional Statements

  • Slides: 23
Download presentation
Chapter 2 Section 3 Conditional Statements

Chapter 2 Section 3 Conditional Statements

Conditional Statements A conditional statement is a statement that can be written in if-then

Conditional Statements A conditional statement is a statement that can be written in if-then form. An if-then statement is written in the form if p, then q. The phrase immediately following the word if is called the hypothesis. The phrase immediately following the word then is called the conclusion. p q, if p then q, or p implies q

Hypothesis Conclusion If it is Friday, there is a football game. It is Friday

Hypothesis Conclusion If it is Friday, there is a football game. It is Friday There is a football game. We will have ice cream if you are good. You are good We will have ice cream. Punk rock makes me sick. It is punk rock It makes me sick.

Conditional Statements in Disguise Mrs. Limburg is tall. If she is Mrs. Limburg, then

Conditional Statements in Disguise Mrs. Limburg is tall. If she is Mrs. Limburg, then she is tall. Perpendicular lines intersect. If two lines intersect, they are perpendicular.

Logic p: The person is a senior. q: The person is mature. If the

Logic p: The person is a senior. q: The person is mature. If the person is a senior then the person is mature. If p, then q p q

Logic Let Let p: I get a job. q: I will earn money. r:

Logic Let Let p: I get a job. q: I will earn money. r: I will go to the movies. s: I will spend my money. Translate to English 1. If p then q. 2. If q then r. 3. If p then r. 4. If r then s.

2. Logic Let Let p: Today is Wednesday. q: Tomorrow is Thursday. r: Friday

2. Logic Let Let p: Today is Wednesday. q: Tomorrow is Thursday. r: Friday is coming. s: Yesterday was Tuesday. Translate to logic statements. 5. If today is Wednesday, then tomorrow is Thursday. 6. If tomorrow is Thursday, then Friday is coming. 7. If yesterday was Tuesday, then tomorrow is Thursday. 8. If yesterday was Tuesday, then Friday is coming.

 Let’s look at some more examples…

Let’s look at some more examples…

Truth Table for Conditionals The only time you can say a conditional is false

Truth Table for Conditionals The only time you can say a conditional is false is when the hypothesis is true and conclusion is false. P q p T T F F F T T F F T q

Related Conditionals Converse: exchanging the hypothesis and conclusion of the conditional. Inverse: negating both

Related Conditionals Converse: exchanging the hypothesis and conclusion of the conditional. Inverse: negating both the hypothesis and conclusion of the conditional. Contrapositive: negating both the hypothesis and conclusion of the converse statement. Look at the conditional: If it is nice outside, we will have softball practice.

Interesting Notes If a conditional is true, its contrapositive is always true. If a

Interesting Notes If a conditional is true, its contrapositive is always true. If a conditional is false, its contrapositive is always false. The converse and inverse are either both true or both false. Logically equivalent statements are statements with the same truth values. Conditional and Contrapositive Inverse and Converse

Alice in Wonderland

Alice in Wonderland

Chapter 2 Section 4 Deductive Reasoning

Chapter 2 Section 4 Deductive Reasoning

What is deductive reasoning? Deductive reasoning uses facts, rules, definitions, or properties to reach

What is deductive reasoning? Deductive reasoning uses facts, rules, definitions, or properties to reach logical conclusions.

Law of Detachment If p q is true and p is true, then q

Law of Detachment If p q is true and p is true, then q is also true. Basically, you can determine that if the conditional is true and p is true, q is true.

If you are a freshman, you are young. Mark is a freshman. Mark is

If you are a freshman, you are young. Mark is a freshman. Mark is young.

If you are a freshman, then you are young. Mark is not a freshman.

If you are a freshman, then you are young. Mark is not a freshman. Mark is not young.

 If you are a freshman, then you are young. Jim is young. According

If you are a freshman, then you are young. Jim is young. According to the Law of Detachment, can you say that Jim is a freshman?

All boys like cars. Mark is a boy. Mark likes cars.

All boys like cars. Mark is a boy. Mark likes cars.

Law of Syllogism The law of syllogism is similar to the Transitive Property of

Law of Syllogism The law of syllogism is similar to the Transitive Property of Equality. If p q and q r are true, then p r is also true.

 If it rains, we will stay inside. If we stay inside, we will

If it rains, we will stay inside. If we stay inside, we will play checkers. If it rains, we will play checkers.

 If WV wins, we will have a party. If WV wins, I will

If WV wins, we will have a party. If WV wins, I will cry with joy. FALSE If we have a party, I will cry with joy.

 If my dog dies, I am sad. If I am sad, my mom

If my dog dies, I am sad. If I am sad, my mom will buy me a puppy. If my mom buys me a puppy, I will be happy. If my dog dies, I will be happy.