Skip to content

Commit 1da8ddb

Browse files
committed
end section 1.2
1 parent 55283e9 commit 1da8ddb

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

math/how_to_prove_it/chap1.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -413,3 +413,35 @@ c)
413413
[P∧(R∨¬R)]∨(¬R∧Q)]
414414
P∨(¬R∧Q)
415415
```
416+
417+
13)
418+
```
419+
start with what you want to prove
420+
¬P∨¬Q
421+
double negate
422+
¬¬(¬P∨¬Q)
423+
apply De Morgan first rule
424+
¬(P∧Q)
425+
```
426+
427+
14)
428+
```
429+
(P∧Q)∧(R∧S)
430+
[(P∧Q)∧R]∧S
431+
[P∧(Q∧R)]∧S
432+
```
433+
434+
15) 2**n
435+
436+
16) ¬(¬P∧Q)
437+
438+
17) (¬P∧Q)∨(P∧¬Q) which is also an XOR
439+
440+
18)
441+
In order to be valid, when a promise is true the conclusion has to be true. Otherwise they can take any value as long as we cant find a true promise with a false conclusion.
442+
443+
So, if the conclusion is a tautology then the statement is valid as all true values on premises will map to true.
444+
445+
If the conclusion is a contradiction, then its only valid if the premise is a contradiction.
446+
447+
For a premise that is a tautology, in order to be valid, the conclusion must be a also tautology, so all true premises maps to true conclusions. Otherwise, if the premise is a contradiction, then any conclusion is valid.

0 commit comments

Comments
 (0)