04 geom cond

30
CONDITIONAL STATEMENTS

Upload: andieayuro

Post on 13-Dec-2014

130 views

Category:

Technology


4 download

DESCRIPTION

 

TRANSCRIPT

Page 1: 04 geom cond

CONDITIONALSTATEMENTS

Page 2: 04 geom cond
Page 3: 04 geom cond

CONDITIONAL STATEMENT

A conditional statement is a statement in IF and THEN form. The IF part is called the hypothesis and the THEN part is called the conclusion.

Page 4: 04 geom cond

CONDITIONAL STATEMENT

IF A, then B.A B

Page 5: 04 geom cond

If you buy a lipstick in the right place, then it’s OK to buy the wrong lipstick.

Page 6: 04 geom cond

Hypothesis: You buy a lipstick in the right place.

Conclusion: It is OK to buy the wrong lipstick.

Page 7: 04 geom cond

NEGATION

The negation of A is “not A”.~A means “not A”.

S: It is raining today.~S: It is not raining today.

Page 8: 04 geom cond

TRUTH VALUE

Truth value of a statement is either TRUE or FALSE. (Valid vs. Invalid)

Page 9: 04 geom cond

TRUTH VALUE

A: 2011 is the year of the rabbit. Truth value: TRUE

B: Water is solid.Truth value: False

Page 10: 04 geom cond

TRUTH VALUE

A statement and its negation have different truth value.

B: A frog is a bird. (FALSE)~B: A frog is not a bird. (TRUE)

Page 11: 04 geom cond
Page 12: 04 geom cond

DERIVED STATEMENTS

CONDITIONAL INVERSE A B ~A ~B

CONVERSE CONTRAPOSITIVEB A ~B ~A

Page 13: 04 geom cond
Page 14: 04 geom cond
Page 15: 04 geom cond

THEOREM

A conditional and its corresponding contrapositive are logically equivalent. (Same truth value). The converse and inverse of a conditional are logically equivalent. (Same truth value)

Page 16: 04 geom cond
Page 17: 04 geom cond

BICONDITIONAL

CONDITIONALA B (TRUE)CONVERSEB A (TRUE)

BICONDITIONALA <--> B

Page 18: 04 geom cond

BICONDITIONAL

BICONDITIONALA <--> B

A if and only if B.

Page 19: 04 geom cond

DEDUCTIVE REASONING

Page 20: 04 geom cond

If p q is true and p is true, then q is also true.

[(pq) ^ p] q

Page 21: 04 geom cond

If p q and q r are true, then p r is also true.

[(pq) ^ (qr)] (pr)

Page 22: 04 geom cond

All AA students are female. “If a student is an AA student, then the student is a female.” (TRUE)

FACT/Given: Sam is an AA student. (TRUE)

Conclusion: Sam is female. (TRUE) by Law of Detachment

Page 23: 04 geom cond

All AA students are female. “If a student is an AA student, then the student is a female.” (TRUE)All females have XY chromosomes. “If you are female, then you have XY chromosomes.”

Conclusion: If a student is an AA student, then the student has XY chromosomes.. (TRUE) by Law of Syllogism

AA F and F XY therefore AA XY

Page 24: 04 geom cond

PROVING

Page 25: 04 geom cond

To prove a conjecture, we apply deductive reasoning.To prove something we need to supply a proof.Truth is based on solid evidences (proofs).

A proof is a logical argument in which each statement you make is supported by a statement that is accepted as true

Forms of Proof in GeometryINFORMAL – essay form of a proof; spontaneous and descriptive/narrativeFORMAL – organized and well-structured

Page 26: 04 geom cond

A group of algebraic steps used to solve problems form a deductive argument.

Page 27: 04 geom cond

A two-column proof, or formal proof, contains statements and reasons organized in two columns.

Page 28: 04 geom cond
Page 29: 04 geom cond
Page 30: 04 geom cond