eolas/Logic/General_concepts/Logical_truth_and_falsity.md

101 lines
3.4 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 09:00:01 +00:00
- Logic
tags: [propositional-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
2022-12-21 13:00:05 +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
2022-12-21 13:00:05 +00:00
Neither proposition can be true because the truth of the first clause is contradicted by the second. By the principle of [consistency](/Logic/General_concepts/Logical_consistency.md), it is not 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
2022-12-21 13:00:05 +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-21 09:00:01 +00:00
$$ P \& \sim P $$
2022-04-23 13:26:53 +01:00
### Truth-table
2022-12-21 09:00:01 +00:00
| $P$ | $P \& \sim P$ |
| --- | ------------- |
| T | F |
| T | F |
2022-04-23 13:26:53 +01:00
## Logical truth
### Informal definition
2022-12-21 13:00:05 +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
2022-12-21 13:00:05 +00:00
Regardless of any facts obtaining in the world, these propositions cannot be false.
2022-04-23 13:26:53 +01:00
2022-12-21 13:00:05 +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-04-23 13:26:53 +01:00
It is Monday and Monday is a day of the week.
2022-09-06 13:26:44 +01:00
```
2022-04-23 13:26:53 +01:00
### Formal definition
2022-12-21 13:00:05 +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-21 09:00:01 +00:00
$$ P \lor \sim P$$
2022-04-23 13:26:53 +01:00
### Truth-table
2022-12-21 09:00:01 +00:00
| $P$ | $P \lor \sim P$ |
| --- | --------------- |
| T | T |
| F | T |
2022-04-23 13:26:53 +01:00
### Consequences
2022-12-21 13:00:05 +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
2022-09-06 13:26:44 +01: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 validity. However the _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-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
```
- 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
```