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 06:00:01 +00:00
|
|
|
# Logical equivalence
|
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
> Two sentences, P and Q, are truth-functionally equivalent if and only if there
|
|
|
|
> is no truth assignment in which P is true and Q is false
|
2022-04-23 13:26:53 +01:00
|
|
|
|
|
|
|
### Informal expression
|
|
|
|
|
|
|
|
P: If it is raining then the pavement will be wet.
|
2022-12-21 06:00:01 +00:00
|
|
|
|
2022-04-23 13:26:53 +01:00
|
|
|
Q: The pavement is not wet unless it is raining.
|
|
|
|
|
|
|
|
### Formal expression
|
|
|
|
|
|
|
|
$$
|
2022-12-25 15:00:05 +00:00
|
|
|
(P \rightarrow Q) \longleftrightarrow (\lnot P \lor Q)
|
2022-04-23 13:26:53 +01:00
|
|
|
$$
|
|
|
|
|
|
|
|
### Truth-tables
|
|
|
|
|
2022-12-23 13:00:06 +00:00
|
|
|
| $P$ | $Q$ | $ P \rightarrow Q $ | $ \lnot P \lor Q$ |
|
|
|
|
| --- | --- | ------------------- | ----------------- |
|
|
|
|
| T | T | T | T |
|
|
|
|
| T | F | T | F |
|
|
|
|
| F | T | T | T |
|
|
|
|
| F | F | F | T |
|
2022-04-23 13:26:53 +01:00
|
|
|
|
|
|
|
### Derivation
|
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
> Propositions $P$ and $Q$ are equivalent in a system of
|
|
|
|
> [derivation](Formal%20proofs%20in%20propositional%20logic.md) for
|
|
|
|
> propositional logic if $Q$ is derivable from $P$ and $P$ is derivable from
|
|
|
|
> $Q$.
|
2022-04-23 13:26:53 +01:00
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
Note that the property of equivalence stated in terms of derivablity above is
|
|
|
|
identical to the derivation rule for the
|
|
|
|
[material biconditional](/Logic/Proofs/Biconditional_Introduction.md):
|
2022-04-23 13:26:53 +01:00
|
|
|
|
2022-12-29 20:22:34 +00:00
|
|
|

|