Logical consequence
Argument
An argument is a sequence of [[Proposition|propositions]].
You can read ”, therefore ”.
Link to original
Logical consequence
In a valid argument, we can informally say that conclusion “follows” from a set of premises .
Formally, we say that formula is a logical consequence of the set of formulae , if the following implication holds for every interpretation : $$ \text{If } v(A_i) = 1, \text{ for all } 1 \le i \le n, \text{ then } v(B) = 1. $$
Alternative terminologies include:
Link to original
- is a logical consequence of .
- .
- The argument is valid.
- is semantically entailed (or implied) by
- is a valid consequence of
Alternate definition of Model
Let the symbol denote the set of all interpretations. Let . We have that
Notice that hence:
Therefore, if , then .
title: Example
Show that $P, P \rightarrow Q \models Q$.
| *interpretation* | $p$ | $q$ | $p \rightarrow q$ | $p \land (p \rightarrow q)$ | $q$ | $\models$ |
|:----------------:|:---:|:---:|:-----------------:|:---------------------------:|:---:|:-----------------------------------:|
| $v_{0}$ | 0 | 0 | 1 | 0 | 0 | ✅ **premises false** |
| $v_{1}$ | 0 | 1 | 1 | 0 | 1 | ✅ **premises false** |
| $v_{2}$ | 1 | 0 | 0 | 0 | 0 | ✅ **premises false** |
| $v_{3}$ | 1 | 1 | 1 | 1 | 1 | ✅ **premises and conclusion true** |
The statement follows because in every row in which the columns for $P$ and $P \rightarrow Q$ contain $1$ (the premises), so does the column for $Q$ (the conclusion).
$$
\bmod (\{ P, P \rightarrow Q \}) = \{ v_3 \} \subseteq \, \bmod(\{ Q \}) = \{ v_1, v_3 \}
$$
This type of derivation is called [[Modus ponens]].Special case: unsatisfiable premises
Take the following scenario:
- If Jack takes a holiday, then Jill will be happy and she will not cry.
- Jack will take a holiday and if Jill is happy she will cry.
- Therefore Jack will take a holiday.
We define this formally using:
- Let stand for ‘Jack will take a holiday’
- Let stand for ‘Jill will be happy’
- Let stand for ‘Jill will cry’
In this case, the argument is valid. This is because . In general, any conclusion follows from an unsatisfiable set of premises.
Special case: tautological conclusions
Tautologies are always true, so if is a tautology, then .
This has two effects:
- A tautology is a logical consequence of any set of formulae.
- A tautology also follows from ‘nothing’. Any interpretation satisfies all of the formulae in the empty set, hence . However, if is a tautology, then hence .
Invalid argument
Invalid argument
An argument that is not valid is said to be invalid.
By the definition of logical consequence, if there exists an interpretation such that:
Hence, in order to show a conclusion does not follow from a set of premises, we must find an interpretation that makes all of the premises true, but under which the conclusion is false.
Link to original
title: Example 1
Show that $P \not\models Q$ where $P$ and $Q$ are atoms.
**Solution**: Take the interpretation $v$ with $v(P) = 1$ and $v(Q) = 0$.title: Example 2
Show that $P \rightarrow Q \not\models Q$ where $P$ and $Q$ are atoms.
**Solution**: Take the interpretation $v$ with $v(P) = 0$ and $v(Q) = 0$.
When $P$ and $Q$ are $0$, it makes $P \rightarrow Q$ true but $Q$ is still false.