Chapter 2: Logical Arguments and Line Relationships¶
2.1: Conjectures and Counterexamples¶
Vocabulary
Example of Conterexample
Since a conterexample was provided, the conclusion is false.
Example of Conjectures
Think about this pattern: 0, 5, 10, 15, 20
A conclusion or conjecture can be made that it incresses by 5.
2.2: Statements, Conditionals, and Biconditionals¶
Vocabulary
Logical Operators
Name |
Symbol |
---|---|
^ |
And |
v |
Or |
~ |
Not |
Truth Tables
a |
b |
a v b |
a ^ b |
~b |
---|---|---|---|---|
true |
false |
true |
false |
false |
2.3: conditional Statements¶
Vocabulary
Python Examples of Vocabulary
# fact
a = True
b = False
# conditional statement
if a:
b = False
# converse
if not b:
a = True
# inverse
if not a:
b = not False # aka True
# contrapositive
if b:
a = not True # aka False
All of these ifs produce the same result!!!
Identifying the Hypothesis and Conclusion
The hypothesis is the statement that follows the if while the conclusion follows the then.
For example:
if a:
b = True
In this example a
or a == True
is the hypothesis and b = True
is the conclusion.
2.4: Deductive Reasoning¶
Vocabulary
Examples
This is a valid conclusion made using the Law of Detachment.
Note
If the converse of the given hypothesis was given, then the conclusion would be invalid. This is because the fact code Bob rides to school
would address the conclusion instead of the hypothesis.
2.5: Postulate and Paragraph Proof¶
Vocabulary
Proofs
Though any two points, there is one line.
Though any three points, there is one plane.
A line contains at least two points
A plane contains as least three points
If two points of a line are in a plane, the line is on the line.
2.6: Algebraic Proof¶
Vocabulary
Example of Two-Column Proof
Given: \(frac{5(x - 2) + 7}{12} = 7\)
Prove: \(x = 17.4\)
To write this in two column format, you need to specify every step for finding x aa.
Statement |
Reason |
---|---|
\(\frac{5(x - 2) + 7}{12} = 7\) |
Given |
\(5(x - 2) + 7 = 84\) |
Multiplication Property of Equality |
\(5(x - 2) = 77\) |
Subtraction Property of Equality |
\(5x - 10 = 77\) |
Distributive Property |
\(5x = 87\) |
Addition Property of Equality |
\(x = 17.4\) |
Division Property of Equality |
2.7: Segment Relationships¶
Vocabulary
2.8: Slope and Equations of Lines¶
Vocabulary