conditional statements lesson 2-1. conditional statements have two parts: hypothesis ( denoted by p)...

32
Conditiona l Statements Lesson 2-1

Upload: stephen-owen

Post on 04-Jan-2016

213 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

Conditional Statements

Lesson 2-1

Page 2: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

Conditional Statements have two

parts:

•Hypothesis (denoted by p) and

•Conclusion (denoted by q)

Page 3: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

Hypothesis (p)

•Phrase following “if”

•the given information

Page 4: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

Conclusion (q)

•Phrase following “then”

•the result of the given information

Page 5: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

Conditional statements can be

put into an “if-then” form to clarify which part is the hypothesis and which is the

conclusion.

Page 6: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

Example:Vertical angles are congruent.

If two angles are vertical, then they are congruent.

can be written as...

Page 7: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

If two angles are vertical,

then they are congruent.

p implies q

Hypothesis (p):two angles are vertical

Conclusion (q):they are congruent

Page 8: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

Conditional Statements

can be true or false:•A conditional statement is false only when the hypothesis is true, but the conclusion is false.

•A counterexample is an example used to show that a statement is not always true and therefore false.

Page 9: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

Giving a Counterexample

Therefore () the statement is false.

Statement: If you live in Virginia, then you live in Richmond.

True or False? Give a counterexample:

Henry lives in Virginia, BUT he lives in Ashland.

Page 10: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

Symbolic Logic

Page 11: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

Symbols can be used to modify or connect

statements.

Page 12: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

is used to represent the word

• “therefore”

Page 13: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

Example

H : I watch football

H

Therefore, I watch football

Page 14: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

is used to represent

• implies • used in if … then

Page 15: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

Example

p: a number is prime

q: a number has exactly two divisors

pq: If a number is prime, then it has exactly two divisors.

Page 16: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

~ is used to represent the word

• “not” or

• “negate”

Page 17: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

Example

w: the angle is obtuse

~w: the angle is not obtuse

Be careful because ~w means that the angle could be acute, right, or straight

Page 18: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

Example

r: I am not happy

~r: I am happy

Notice: ~r took the “not” out… it would have been a double negative (not not)

Page 19: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

is used to represent the word

• “and”

Page 20: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

Example

a: a number is even

b: a number is divisible by 3

ab: A number is even and it is divisible by 3.

6,12,18,24,30,36,42...

Page 21: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

is used to represent the word

• “or”

Page 22: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

Example

a: a number is even

b: a number is divisible by 3

ab: A number is even or it is divisible by 3.

2,3,4,6,8,9,10,12,14,15,...

Page 23: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

iff is used to represent the phrase

• “if and only if”

Page 24: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

Example

h: I watch footballk: the Eagles are playing

h iff kI watch football if and only if the Eagles

are playing

Page 25: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

Different Forms of Conditional Statements

Page 26: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

A conditional statement can be written in three different ways.

These three new conditional statements can be true or false.

EXAMPLE: pq If two angles are vertical, then they are congruent.

Page 27: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

Converse: q pSWITCH (p and q but not if or then)

If two angles are congruent, then they are

vertical.

Page 28: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

Inverse: ~p~qNEGATION (keep same order)

If two angles are not vertical, then they are

not congruent.

Page 29: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

Contrapositive:~q~pSWITCH and NEGATE

If two angles are not congruent, then they are

not vertical.

Page 30: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

Contrapositives are logically equivalent to the original

conditional statement.

If pq is true, then qp is true.

If pq is false, then qp is false.

Page 31: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

Biconditional• If a conditional statement and its

converse are both true, then the two statements may be combined.

• using the phrase if and only if (iff)

Page 32: Conditional Statements Lesson 2-1. Conditional Statements have two parts: Hypothesis ( denoted by p) and Conclusion ( denoted by q)

Definitions are always biconditional

• Statement: If an angle is right then it has a measure of 90.

• Converse: If an angle measures 90, then it is a right angle.

• Biconditional: An angle is right iff it measures 90