InterviewSolution
Saved Bookmarks
| 1. |
How do you represent “All dogs have tails”?(a) ۷x: dog(x) àhastail(x)(b) ۷x: dog(x) àhastail(y)(c) ۷x: dog(y) àhastail(x)(d) ۷x: dog(x) àhasàtail(x)I had been asked this question in unit test.Question is from History in portion Introduction to Artificial Intelligence of Artificial Intelligence |
|
Answer» RIGHT answer is (a) ۷x: DOG(x) àhastail(x) The explanation is: We represent the statement in mathematical LOGIC TAKING ‘x ‘as Dog and which has tail. We cannot represent two variable x, y for the same object Dog that has tail. The symbol “۷ “represent all. |
|