Section 1.1 Statements
- statement
a sentence that is either true or false
Example 1.1.1. Logical statements.
All prime numbers are odd.
Some trees have leaves and some trees have needles.
If you pay attention in class and work through all the homework problems, then you will do well in this course.
- substatement
part of a logical statement that could be considered a statement on its own
Example 1.1.2. Substatements.
- simple statement
does not contain any proper substatements
- compound statement
contains two or more substatements
- connective
a connecting word between substatements in a compound statement
Example 1.1.3. Simple and compound statements.
statement 2 is a compound statement made up of two (simple) substatements linked by the connective “and”; and
statement 3 is a compound statement made up of two substatements linked by the connective “if … then …”, where the substatement that constitutes the “if” part is itself a compound statement.
The substatements in a compound statement can be related to each other by connectives in various ways.
Definition 1.1.4. Five basic connectives.
- negation
“not”
- conjuction
“and”
- disjunction
“or”
- conditional
“if … then …”
- biconditional
“if and only if”
Given statements \(A\) and \(B\text{,}\) we use these connectives to construct new statements:
- negation of \(A\)
not \(A\)
- conjuction of \(A\) and \(B\)
\(A\) and \(B\)
- disjunction of \(A\) and \(B\)
\(A\) or \(B\)
- conditional where \(A\) implies \(B\)
if \(A\) then \(B\)
- biconditional involving \(A\) and \(B\)
\(A\) if and only if \(B\)
Example 1.1.6. Translating everyday English into logical statements.
A conversation.
- Alice
It is raining.
- Bob
No, it isn’t.
- Alice
Either it’s raining or it isn’t.
- Bob
How can we decide?
- Alice
If we go outside and we get wet, then it’s raining.
- Bob
We’d get wet outside if the sprinklers are on, too.
- Alice
Don’t be silly!
- Alice (continuing…)
We’ll get wet if it’s raining, and this is the only way we’ll get wet.
Let us rewrite the above conversation to clearly identify the substatements and connectives.
- Alice
it is raining
- Bob
not (it is raining)
- Alice
(it is raining) or (not (it is raining))
- Bob
[not a statement!]
- Alice
if ((we are outside) and (we get wet)) then (it is raining)
- Bob
if ((we are outside) and (the sprinklers are on)) then (we get wet)
- Alice
[not a statement!]
- Alice
if (we are outside) then ((we get wet) if and only if (it is raining))
Test 1.1.7. Checking whether a sentence is a logical statement.
If \(S\) is an English language sentence and the phrase “It is true that \(S\)” makes sense as an English language sentence, then \(S\) is a logical statement.
Strictly speaking, many mathematical statements are not logical statements, for a different reason then the one used in the test above.
Example 1.1.8. An ambiguous mathematical statement.
The phrase “
\(f\) is a differentiable function” is not a logical statement, since whether it is true or false depends on the
free variable \(f\text{.}\) For example, if we substitute the function
\(f(x) = x\) into this statement, the statement becomes true. However, if we substitute the function
\(f(x) = \abs{x}\text{,}\) the statement becomes false. We will deal with this issue in
Chapter 4.