CSE 563, Spring 2003
HOMEWORK #3: PROPOSITIONAL LOGIC
Last Update: 17 February 2003
Note:
or
material is highlighted
|
This is adapted from Russell & Norvig, 2nd edition, p. 237, #7.8.
Consider the following syntax and semantics for a propositional KR language:
Syntax: The following are all and only the atomic well-formed
formulas ("wffs"):
Smoke, Fire, Big, Dumb,
Heat.
Semantics:
[[Smoke]] = There is smoke.
[[Fire]] = There is fire.
[[Big]] = Someone is big.
[[Dumb]] = Someone is dumb.
[[Heat]] = There is heat.
Using this language, represent the following English sentences:
- If there is smoke, then someone is dumb.
- Either there is no smoke, or someone is dumb.
- If someone is not dumb, then there is no smoke.
- There is smoke. If there is smoke, then there is fire. Therefore,
there is fire.
-
Warning: This one is tricky! Is it a conjunction of 3
sentences, or is it an inference (i.e., an "argument")?
Now,
consider the following molecular wffs in this language.
Note: Due to limitations of HTML, I will use:
- "~" for negation
- "->" for material conditional
- "<->" for biconditional.
Note: Sometimes, I will omit parentheses when there is no ambiguity or when they would be distracting.
- (Smoke -> Smoke)
- (Smoke -> Fire)
- ((Smoke -> Fire) -> (~Smoke -> ~Fire))
- (Smoke v Fire v ~Fire)
- ((Smoke ^ Heat) -> Fire) <-> ((Smoke -> Fire) v (Heat -> Fire))
- (Smoke -> Fire) -> ((Smoke ^ Heat) -> Fire)
- Big v Dumb v (Big -> Dumb)
- (Big ^ Dumb) v ~Dumb
Using the semantics given above, translate these wffs into English.
Using truth tables, determine which of the above wffs are:
- tautologies
- i.e., true under all interpretations
- i.e., true in all models
- i.e., true for all possible assignments of truth values to the wff's atomic propositions.
- contradictions
- i.e., false under all interpretations
- i.e., false in all models
- i.e., false for all possible assignments of truth values to the wff's atomic propositions.
- neither (sometimes called "contingent")
DUE: AT THE BEGINNING OF LECTURE, WEDNESDAY, FEB. 19 |
Copyright © 2003 by
William J. Rapaport
(rapaport@cse.buffalo.edu)
file: 563/hw03.2003.02.17.html