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-12-21 09:00:01 +00:00
|
|
|
# Logical truth and falsity
|
|
|
|
|
2022-12-21 13:00:05 +00:00
|
|
|
We say of certain propositions that they are logically true or logically false.
|
2022-04-23 13:26:53 +01:00
|
|
|
|
|
|
|
## Logical falsity
|
|
|
|
|
|
|
|
### Informal definition
|
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
A proposition is logically false if and only if **it is not possible for the
|
|
|
|
proposition to be true**. The proposition itself cannot be consistently
|
|
|
|
asserted.
|
2022-04-23 13:26:53 +01:00
|
|
|
|
|
|
|
**Demonstration**
|
|
|
|
|
2022-09-06 13:26:44 +01:00
|
|
|
```
|
2022-04-23 13:26:53 +01:00
|
|
|
There is a country that is not a country.
|
|
|
|
Apples are fruits and apples are not fruits
|
2022-09-06 13:26:44 +01:00
|
|
|
```
|
2022-04-23 13:26:53 +01:00
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
Neither proposition can be true because the truth of the first clause is
|
|
|
|
contradicted by the second. By the principle of
|
2024-02-17 11:57:44 +00:00
|
|
|
[consistency](Logical_consistency.md), it is not
|
2024-02-02 15:58:13 +00:00
|
|
|
possible for both clauses to be true at once therefore the proposition, overall
|
|
|
|
has the truth value of false.
|
2022-04-23 13:26:53 +01:00
|
|
|
|
2022-09-06 13:26:44 +01:00
|
|
|
```
|
2022-04-23 13:26:53 +01:00
|
|
|
It is raining and it is not raining.
|
2022-09-06 13:26:44 +01:00
|
|
|
```
|
2022-04-23 13:26:53 +01:00
|
|
|
|
|
|
|
### Formal definition
|
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
> A proposition P is truth-functionally false if and only if P is false on every
|
|
|
|
> truth-value assignment
|
2022-04-23 13:26:53 +01:00
|
|
|
|
|
|
|
### Formal expression
|
|
|
|
|
2022-12-23 13:00:06 +00:00
|
|
|
$$ P \land \lnot P $$
|
2022-04-23 13:26:53 +01:00
|
|
|
|
|
|
|
### Truth-table
|
|
|
|
|
2022-12-23 13:00:06 +00:00
|
|
|
| $P$ | $P \land \lnot P$ |
|
|
|
|
| --- | ----------------- |
|
|
|
|
| T | F |
|
|
|
|
| T | F |
|
2022-04-23 13:26:53 +01:00
|
|
|
|
|
|
|
## Logical truth
|
|
|
|
|
|
|
|
### Informal definition
|
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
A proposition is logically true if and only if it is not possible for the
|
|
|
|
proposition to be false. The proposition itself cannot be consistently denied.
|
2022-04-23 13:26:53 +01:00
|
|
|
|
|
|
|
**Demonstration**
|
|
|
|
|
2022-09-06 13:26:44 +01:00
|
|
|
```
|
2022-04-23 13:26:53 +01:00
|
|
|
A rose is a rose.
|
|
|
|
Today is Tuesday unless today is not Tuesday.
|
2022-09-06 13:26:44 +01:00
|
|
|
```
|
2022-04-23 13:26:53 +01:00
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
Regardless of any facts obtaining in the world, these propositions cannot be
|
|
|
|
false.should be avoided in arguments, they 'prove' everything whi
|
2022-04-23 13:26:53 +01:00
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
As with logically false propositions, logical truth can also apply to compound
|
|
|
|
propositions:
|
2022-04-23 13:26:53 +01:00
|
|
|
|
2022-09-06 13:26:44 +01:00
|
|
|
```
|
2022-12-23 13:00:06 +00:00
|
|
|
A rose is a rose and a shoe is a shoe
|
2022-09-06 13:26:44 +01:00
|
|
|
```
|
2022-04-23 13:26:53 +01:00
|
|
|
|
|
|
|
### Formal definition
|
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
> A proposition P is truth-functionally true if and only if P is true on every
|
|
|
|
> truth-value assignment
|
2022-04-23 13:26:53 +01:00
|
|
|
|
2022-12-23 13:00:06 +00:00
|
|
|
$$ P \lor \lnot P$$
|
2022-04-23 13:26:53 +01:00
|
|
|
|
|
|
|
### Truth-table
|
|
|
|
|
2022-12-23 13:00:06 +00:00
|
|
|
| $P$ | $P \lor \lnot P$ |
|
|
|
|
| --- | ---------------- |
|
|
|
|
| T | T |
|
|
|
|
| F | T |
|
2022-04-23 13:26:53 +01:00
|
|
|
|
|
|
|
### Consequences
|
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
The existence of logically false and logically true propositions affects the
|
|
|
|
validity and soundness of arguments in which they are used. These are
|
|
|
|
technicalities that have philosophically interesting consequences.
|
2022-04-23 13:26:53 +01:00
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
- If an argument contains premises which are logically false than this argument
|
|
|
|
will perforce be valid. This is because one cannot consistently assert the
|
|
|
|
premises and deny the conclusion which is the definition of
|
2024-02-17 11:57:44 +00:00
|
|
|
[validity](Validity_and_entailment.md). However the
|
2024-02-02 15:58:13 +00:00
|
|
|
_reason_ why one cannot consistently assert the premises and deny the
|
|
|
|
conclusions is because one cannot consistently assert the premises - they
|
|
|
|
conflict with each other. Furthermore as the argument contains false premises,
|
|
|
|
it cannot be sound.
|
2022-09-06 13:26:44 +01:00
|
|
|
|
|
|
|
```
|
2022-04-23 13:26:53 +01:00
|
|
|
(P1) Russia is a country.
|
|
|
|
(P2) Russia is not a country
|
|
|
|
(P3) All countries have languages.
|
|
|
|
____________________________________________
|
|
|
|
(C) Russian is a language.
|
2022-09-06 13:26:44 +01:00
|
|
|
```
|
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
- Any argument with a logically true conclusion is valid. Because the conclusion
|
|
|
|
cannot be consistently denied it follows that we cannot consistently assert
|
|
|
|
the premises _and_ deny the conclusion. Whether or not the argument is sound
|
|
|
|
remains an open question however. If the premises happen to be true then the
|
|
|
|
argument will be sound on the strength of the conclusion being logically true
|
|
|
|
but if the premises are false it will be unsound regardless of the truth of
|
|
|
|
the conclusion.
|
2022-04-23 13:26:53 +01:00
|
|
|
|
2022-09-06 13:26:44 +01:00
|
|
|
```
|
2022-04-23 13:26:53 +01:00
|
|
|
(P1) Horses have legs.
|
|
|
|
(P2) Animals with legs can move.
|
|
|
|
____________________________________________
|
|
|
|
(C) A horse is a horse
|
2022-09-06 13:26:44 +01:00
|
|
|
```
|