eolas/Logic/General_concepts/Logical_consistency.md

66 lines
2.6 KiB
Markdown
Raw Normal View History

2022-04-23 13:26:53 +01:00
---
2022-08-20 13:00:04 +01:00
categories:
2022-12-21 05:04:19 +00:00
- Logic
tags: [propositional-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
2022-12-21 05:04:19 +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.
4. Anyone who reads the horoscope column every morning takes astrology seriously.
2022-04-23 13:26:53 +01: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.
## Formal definition
2022-12-21 05:04:19 +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
### Truth-table
2022-12-21 05:04:19 +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-09-06 13:26:44 +01:00
```
2022-04-23 13:26:53 +01:00
P Q P Q Q
T T T T *
T F T F
F T T T *
F F F F
2022-09-06 13:26:44 +01:00
```
2022-04-23 13:26:53 +01:00
## Derivation
2022-12-21 05:04:19 +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 $P & \sim P$ is derivable from $\Gamma$. It is **consistent** just if this is not the case.
2022-04-23 13:26:53 +01:00
2022-09-06 13:26:44 +01: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
A [contradiction](Logical%20truth%20and%20falsity.md#logical-falsity) contradiction has very important consequences for reasoning because if a set of propositions is inconsistent, every and all other propositions are derivable from that set.
![proofs-drawio-Page-5.drawio 3.png](../img/proofs-drawio-Page-5.drawio%203.png)
2022-09-06 13:26:44 +01:00
_A demonstration of the the consequences of deriving a contradiction in a sequence of reasoning._
2022-04-23 13:26:53 +01:00
Here we want to derive some proposition $Q$. If we can derive a contradiction from its negation as an assumption then, by the [negation elimination](Negation%20Elimination.md) rule, we can 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.