Autosave: 2022-12-23 13:30:06
This commit is contained in:
parent
8b6ee7a642
commit
772109d084
2 changed files with 25 additions and 29 deletions
|
@ -77,16 +77,14 @@ The pavement is wet.
|
|||
|
||||
#### Formal demonstration
|
||||
|
||||
```
|
||||
{P, P ⊃ Q} ⊨ Q
|
||||
```
|
||||
$$
|
||||
\{ P, P\rightarrow Q \} \vdash Q
|
||||
$$
|
||||
|
||||
#### Truth-table
|
||||
|
||||
```
|
||||
P Q P ⊃ Q P Q
|
||||
T T T T T *
|
||||
T F F T F
|
||||
F T T F T
|
||||
F F T F F
|
||||
```
|
||||
| $P$ | $Q$ | $P \rightarrow Q$ | $P$ | $Q$ | Assessment |
|
||||
| --- | --- | ----------------- | --- | --- | ---------- |
|
||||
| T | T | T | T | T | Valid |
|
||||
| T | F | F | T | F | |
|
||||
| F | T | T | F | T | |
|
||||
|
|
|
@ -4,38 +4,36 @@ categories:
|
|||
tags: [propositional-logic]
|
||||
---
|
||||
|
||||
## Corresponding material conditional to show validity
|
||||
# Corresponding material conditional to show validity
|
||||
|
||||
To demonstrate _truth-functional validity_ we have to construct a truth-table which contains each of the premises and the conclusion and then review each row to see if there is an assignment where both the premises and the conclusion are true.
|
||||
|
||||
A simpler way to get the same result is to invoke the corresponding material conditional. Here we concatenate the premises using conjunction and then join them to the conclusion using the material conditional, which then becomes the main connective. We then populate the truth table for this compound sentence. If it is logically true, the argument is valid.
|
||||
A simpler way to get the same result is to invoke the corresponding material conditional. Here we concatenate the premises using conjunction and then join them to the conclusion using the material conditional, which then becomes the main connective. We then populate the truth table for this compound proposition. If it is logically true, the argument is valid.
|
||||
|
||||
### Demonstration
|
||||
|
||||
We will demonstrate with the following set:
|
||||
|
||||
$$ {P \equiv Q, P \lor Q, P &Q } $$
|
||||
$$ \{ P \leftrightarrow Q, P \lor Q, P \land Q \} $$
|
||||
|
||||
```
|
||||
P Q P ≡ Q P ∨ Q P & Q
|
||||
T T T T T *
|
||||
T F F T F
|
||||
F T F T F
|
||||
F F T F F
|
||||
```
|
||||
| $P$ | $Q$ | $P \leftrightarrow Q$ | $P \lor Q$ |
|
||||
| --- | --- | --------------------- | ---------- |
|
||||
| T | T | T | T |
|
||||
| T | F | F | T |
|
||||
| F | T | F | T |
|
||||
| F | F | T | F |
|
||||
|
||||
```
|
||||
P Q ( ( P ≡ Q ) & ( P ∨ Q ) ) ≡ ( P & Q )
|
||||
T T T
|
||||
T F T
|
||||
F T T
|
||||
F F T
|
||||
```
|
||||
| $P$ | $Q$ | $(P \leftrightarrow Q) \land (P \lor Q)) \leftrightarrow (P \lor Q)$ |
|
||||
| --- | --- | -------------------------------------------------------------------- |
|
||||
| T | T | T |
|
||||
| T | F | T |
|
||||
| F | T | T |
|
||||
| F | F | T |
|
||||
|
||||
We see above that the main connective, the material conditional returns true for every truth-functional assignment. In other words it is logically true. Consequently the argument is valid
|
||||
|
||||
## Corresponding material biconditional
|
||||
|
||||
We can use the corresponding material biconditional as a shorthand for demonstrating logical equivalence between two sentences.
|
||||
We can use the corresponding material biconditional as a shorthand for demonstrating logical equivalence between two propositions.
|
||||
|
||||
For two putatively equivalent sentences $P$ and $Q$, $P$ and $Q$ are logically equivalent if the compound sentence $P \equiv Q$ is logically true.
|
||||
For two putatively equivalent propositions $P$ and $Q$, $P$ and $Q$ are logically equivalent if the compound proposition $P \equiv Q$ is logically true.
|
||||
|
|
Loading…
Add table
Reference in a new issue