In: Computer Science
Given the following knowledge base:
a <- b^c.
b <- d^e.
b <- g^e.
c <- e.
d.
e.
ƒ <- a^g.
Which of the following would be the trace of resolved atoms
assuming a bottoms-up proof procedure?
Select one:
a. {a,b,c,e,g}
b. {a,b,c,e,d}
c. {g,e,b,e,c,a}
d. None of these options
Constraint Satisfaction Problem (CSP) is consists of a set of _________________.
Select one:
a. Variables, heuristics, and solutions
b. Variables, domains, and backtracking
c. Variables, domains, and constraints
d. Variables, forward checking, and heuristics
ANSWER :1)
Correct response is OPTION (c).
JUSTIFICATION:
Let C be a Consequence set.
Therefore, the trace of resolved atoms using a bottoms-up proof procedure is as follows-
->{}
{d}
{e,d}
{c,e,d}
{b,c,e,d}
{a,b,c,e,d}.
The bottom up algorithm terminates with C={a,b,c,e,d}. Thus, KB a, KB b, and so on.
ANSWER: 2)
Correct response is OPTION (c).
JUSTIFICATION:
Constraint Satisfaction Problem (CSP) is a problem that needs to be addressed within some constraints or conditions, also known as constraints. It consists of the following:
If you are satisfied by my answer please give a thumbs up. Thank you.