2022-04-23 13:26:53 +01:00
|
|
|
---
|
2024-06-16 18:00:05 +01:00
|
|
|
tags:
|
|
|
|
- propositional-logic
|
|
|
|
- logic
|
2022-04-23 13:26:53 +01:00
|
|
|
---
|
2022-09-06 13:26:44 +01:00
|
|
|
|
2022-12-21 05:04:19 +00:00
|
|
|
# Logical consistency
|
|
|
|
|
2022-04-23 13:26:53 +01:00
|
|
|
## Informal definition
|
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
A set of propositions is consistent if and only if **it is possible for all the
|
|
|
|
members of the set to be true at the same time**. A set of propositions is
|
|
|
|
inconsistent if and only if it is not consistent.
|
2022-04-23 13:26:53 +01:00
|
|
|
|
|
|
|
### Demonstration
|
|
|
|
|
2022-12-21 05:04:19 +00:00
|
|
|
The following set of propositions form an inconsistent set:
|
2022-04-23 13:26:53 +01:00
|
|
|
|
2022-12-21 05:04:19 +00:00
|
|
|
1. Anyone who takes astrology seriously is a lunatic.
|
|
|
|
2. Alice is my sister and no sister of mine has a lunatic for a husband.
|
|
|
|
3. David is Alice's husband and he read's the horoscope column every morning.
|
2024-02-02 15:58:13 +00:00
|
|
|
4. Anyone who reads the horoscope column every morning takes astrology
|
|
|
|
seriously.
|
2022-04-23 13:26:53 +01:00
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
The set is inconsistent because not all of them can be true. If (1), (3), (4)
|
|
|
|
are true, (2) cannot be. If (2), (3),(4) are true, (1) cannot be.
|
2022-04-23 13:26:53 +01:00
|
|
|
|
|
|
|
## Formal definition
|
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
> A finite set of propositions $\Gamma$ is truth-functionally consistent if and
|
|
|
|
> only if there is at least one truth-assignment in which all propositions of
|
|
|
|
> $\Gamma$ are true.
|
2022-04-23 13:26:53 +01:00
|
|
|
|
|
|
|
### Informal expression
|
|
|
|
|
2022-09-06 13:26:44 +01:00
|
|
|
```
|
2022-04-23 13:26:53 +01:00
|
|
|
The book is blue or the book is brown
|
|
|
|
The book is brown
|
2022-09-06 13:26:44 +01:00
|
|
|
```
|
2022-04-23 13:26:53 +01:00
|
|
|
|
|
|
|
### Formal expression
|
|
|
|
|
2022-12-21 05:04:19 +00:00
|
|
|
$$
|
|
|
|
\{P \lor Q, Q\}
|
|
|
|
$$
|
2022-04-23 13:26:53 +01:00
|
|
|
|
2022-12-21 05:34:20 +00:00
|
|
|
### Truth table
|
2022-04-23 13:26:53 +01:00
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
$ \{P, Q\} $ form a consistent set because there is at least one assignment when
|
|
|
|
both propositions are true. In fact there are two (corresponding to each
|
|
|
|
disjunct) but one is sufficient.
|
2022-12-21 05:04:19 +00:00
|
|
|
|
2022-12-21 06:30:01 +00:00
|
|
|
| $P$ | $Q$ | $ P \lor Q $ | $Q$ |
|
|
|
|
| --- | --- | ------------ | --- |
|
2022-12-21 08:30:01 +00:00
|
|
|
| T | T | T | T |
|
|
|
|
| T | F | T | F |
|
|
|
|
| F | T | T | T |
|
|
|
|
| F | F | F | F |
|
2022-12-21 06:30:01 +00:00
|
|
|
|
2022-04-23 13:26:53 +01:00
|
|
|
## Derivation
|
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
> In terms of logical derivation, a finite $\Gamma$ of propositions is
|
|
|
|
> **inconsistent** in a system of derivation for propositional logic if and only
|
|
|
|
> if a proposition of the form $P \& \lnot P$ is derivable from $\Gamma$. It is
|
|
|
|
> **consistent** just if this is not the case.
|
2022-04-23 13:26:53 +01:00
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
In other terms, if you can derive a contradiction from the set, the set is
|
|
|
|
logically inconsistent.
|
2022-04-23 13:26:53 +01:00
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
A
|
2024-02-17 11:57:44 +00:00
|
|
|
[contradiction](Logical_truth_and_falsity.md#logical-falsity)
|
2024-02-02 15:58:13 +00:00
|
|
|
has very important consequences for reasoning because if a set of propositions
|
|
|
|
is inconsistent, any other proposition is derivable from it.
|
2022-04-23 13:26:53 +01:00
|
|
|
|
2024-02-16 16:14:01 +00:00
|
|
|

|
2022-04-23 13:26:53 +01:00
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
_A demonstration of the the consequences of deriving a contradiction in a
|
|
|
|
sequence of reasoning._
|
2022-04-23 13:26:53 +01:00
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
Here we want to derive some proposition $Q$. If we can derive a contradiction
|
|
|
|
from its negation as an assumption then, by the
|
2024-02-17 11:57:44 +00:00
|
|
|
[negation elimination](Negation_Elimination.md)) rule, we can
|
2024-02-02 15:58:13 +00:00
|
|
|
assert $Q$. This is why contradictions should be avoided in arguments, they
|
|
|
|
'prove' everything which, by association, undermines any particular premise you
|
|
|
|
are trying to assert.
|