Tagged Questions
1
vote
1answer
25 views
AI: Partial Unification in Open-World Reference Resolution
When performing reference resolution on predicates describing the semantics of dialogue expressions, I need to be able to allow for partial unification due to working in an open world.
For example, ...
2
votes
1answer
39 views
How work this DCG Prolog grammar that say if a string is a Roman Number?
Searching on StackOverflow I have found this DCG grammar that say inf a string is a roman number and convert it into a decimal number (in this post: Prolog Roman Numerals (Attribute Grammars)):
...
0
votes
1answer
21 views
How create a single Prolog rule that match with more then a single words list?
I am having some problem to do a particular operation on a specific list.
I have a list of tokens where a token represents a word and I want use a single predicate to recognize if some contigous ...
0
votes
1answer
37 views
Prolog predicate that do a wrong use of or ;?
I am having some problem to do a specific operation on a specific list.
I have a list of tokens where a token represents a word and I want recognize if 5 contigous tokens in this list, reppresents a ...
2
votes
1answer
38 views
Some problems with a Prolog predicate that execute a series of operation on list's elements
I am having some problem to implement a predicate that do some operation on a list.
I explain what I have to do with a practical example:
The predicate have to work on a list that have the following ...
0
votes
1answer
45 views
Some doubts related about how work a meaning predicate that interprets the parse tree of a DCG grammar in Prolog
I am studying Prolog DCG grammar* and **parse tree on the Ivan Bratko book: "Programming for Artificial Intelligence"
I am finding some difficulties with the following example that provide a DCC ...
0
votes
1answer
28 views
Program that “mean” a parse tree in Prolog, don't work
I am studying DCG grammar and parse tree using the Ivan Bratko book: Programming fro Artificial Intelligence.
On the book I found the following example that show a DCC grammar that also generate a ...
-1
votes
1answer
42 views
Some doubts about how Prolog automatically convert DCG grammars int a set of rules
I am studying DCG grammar in Prolog using Ivan Bratko book: "Programming for Artificial Intelligence" and I am finding some problem to understand how Prolog automatically convert a DCG grammar into a ...
1
vote
1answer
32 views
BFS visit in Prolog, why this program don't work?
I have take this program that impement BFS visit algorithm from Ivan Bratko book: "Programming for Artificial Intelligence".
It's logic is pretty clear form me (I have commented the lines of code ...
1
vote
2answers
49 views
Iterative deepening with Max depth constraint in Prolog
I have to modify the following Prolog program that implements the iterative deepening dfs search on a graph:
s(a, b).
s(b, c).
s(c, d).
s(a, d).
goal(d).
/* Solution is the inverse list of the ...
1
vote
1answer
33 views
Is it correct this interpretation of DFS algorithm version that avoids loops in Prolog?
I am studying DFS algorithm the DFS algorithm version that avoids loops, this is the code
/* It is TRUE that Solution is the path from the start node Node to a goal state node
if it is TRUE the ...
2
votes
1answer
49 views
How to implement a solve predicate for this “moving blocks” Prolog exercise?
I am studying Prolog using Ivan Bratko book: Programming for Artificial Intelligence and I am finding some difficulties to implement the final part of an exercise proposed
The exercise is a program ...
1
vote
1answer
31 views
Some doubts about how work this particular query of a delete from a list predicate
I have a doubt about how work this query for this del/3 predicate:
/* BASE CASE: If I delete X from List and X is the HEAD of List, NewList is
the Tail of List
*/
del(X, [X|Tail], ...
2
votes
2answers
44 views
some doubts about a Prolog program that use a moves graph to move blocks on 3 stack
I am studying Prolog using Ivan Bratko book: Programming for Artificial Intelligence and I am finding some problems trying to understand how work an exercise that use graphs to decide how to move ...
1
vote
1answer
71 views
8 queen solution that use a space state “graph” in Prolog don't work
I am studying Prolog on Ivan Bratko book: Programming for Artificial Intelligence and on the book I have found this version of 8 Queens problem that use a space state "graph" to solve the problem:
...
1
vote
0answers
29 views
Some doubts about Prolog implementation of 2-3 Dictionary
I am learning Prolog using SWI Prolog and I have some doubts about how work this implementation of the 2-3 dictionary in Prolog.
I know the theory of the 2-3 dictionary that are trees whose internal ...
2
votes
1answer
45 views
Recursive similarity between trees according to the number of common subtrees in Prolog
I am stufying Prolog using SWI Prolog and I am finding many difficult with this code snippet that found if 2 binary trees have N common subtree (having the same root):
/* BASE CASE: T1 and T2 are two ...
1
vote
1answer
39 views
Similarity between trees according to the number of common subtrees in Prolog
I am studying Prolog for an universitary exame using SWI Prolog and I have some problems to understand what my teacher do in this example (it seems to me that is is incomplete) that implement the ...
0
votes
2answers
42 views
How to store the list of visited node in a path on a graph in Prolog
I am studying Prolog and I am finding some difficulty interpreting the slide proposed by my professor.
Starting from the classic program that say if exist a path between two node of a graph, this ...
0
votes
1answer
59 views
How does maplist work in a program that inserts elements into an AVL Tree
I am studying Prolog and I could not follow the lessons so I have some doubts relating to a particular use of the maplist built in SWI Prolog predicate.
So let me explain my situation:
I have a ...
0
votes
1answer
61 views
How to create a balance Tree from a list of element using this AVL predicate in Prolog?
I am studying Prolog and I am finding some problem to implement a predicate that take a list and from it build a balanced Tree.
I have implement these predicate that build an AVL Tree (I have take it ...
0
votes
2answers
43 views
How to add a leaves to a tree in Prolog
I am studying binary tree in Prolog and I have some problem to add leaves to a specific b-tree.
I have the following predicates that add a single leaf to a b-tree:
addLeaf(nil, X, t(nil, X, nil)).
...
0
votes
1answer
63 views
Declarative interpretation of Bubble Sort algorithm in Prolog
I have some doubt about how work the following implementation of BubbleSort algorithm in Prolog.
I have very clear how BubbleSort algorithm work so my doubt is only related to the Prolog first order ...
-1
votes
2answers
87 views
How to delete the last element from a list in Prolog?
I am in the following situation: I have a list and I would to delete from it only the last element.
I have implement the following rule (that don't work well):
deleteLastElement([Only], WithoutLast) ...
-1
votes
1answer
32 views
Some doubts about declarative meaning of a program that prints a list of lists in Prolog
Write a rule that take a list whose elements are themselves lists and
print on each line the elements of internals list:
Example:
?- printList[[1,a],[2,b]]).
1 a
2 b
The ...
0
votes
0answers
41 views
Is the following knowledge base Unsatisfiable, Satisfiable or Valid ? Using PL-resolution
( OR ( NOT a ) b )
( OR c ( OR ( NOT a ) d ) )
( OR ( NOT ( NOT a ) ) ( NOT c ) )
( OR ( NOT c ) ( NOT d ) )
( NOT d )
( OR ( NOT b ) ( NOT c ) )
( OR e b )
( OR c ( NOT c ) )
( ...
0
votes
2answers
47 views
Can't access a file in Prolog
I am studying Prolog using SWI-Prlog.
I am finding some problems with the following example that simply access to a file and write in it what the user put in the Prolog Shell.
processFile(File) :- ...
-1
votes
1answer
40 views
Some doubts about the use of the cut in a program that read and format an input text in Prolog
I have some doubt related to the declarative interpretation of this simple Prolog example that read a sentence from the current input stream and output the same sentence reformatted so that multiple ...
0
votes
1answer
80 views
Can I use setof predicate to build a list without duplicates starting from a list with duplicate?
I am learning Prolog for an universitary exame using SWI Prolog and I have the following exercise:
Write the duplicates predicate that starting from a ListWithDuplicates
list (a list that admit ...
0
votes
1answer
116 views
Some problems asserting a new rule in SWI-Prolog
I am studying on Ivan Bratko book: "Programming for Artificial Intelligence" for an universitary exame and using SWI Prolog and I have some doubts about an example show on this book regarding the ...
-1
votes
1answer
28 views
Prolog arg built in personal implementation, don't work
I have some trouble with an exercise that ask me to implement the classic arg predicate in Prolog.
arg(?Arg, +Term, ?Value)
Where Arg it is the index of the argument in the arguments list of a ...
0
votes
1answer
47 views
How to implement arg predicate in Prolog?
I have some trouble with an exercise that ask me to implement the classic arg predicate in Prolog.
arg(?Arg, +Term, ?Value)
Where Arg it is the index of the argument in the arguments list of a ...
0
votes
1answer
41 views
Use of =.. predicate to perform symbolic manipulation of furmulas in Prolog
I am learning Prolog for an universitary university exam using SWI Prolog and I have some doubts about how it work this exercise that use the univ =.. =.. predicate to perform symbolic manipulation of ...
0
votes
1answer
35 views
Some questions about the use of CUT in this Prolog exercise
I am studying Prolog for an universitary exame using SWI Prolog and I have some doubts about the differences between two different solution of the following problem:
Define the clause count(X, L, ...
0
votes
1answer
59 views
Some questions about declarative interpretation of not predicate in Prolog
I think that I think that I am doing a litle confusion with the declarative view of not predicate in Prolog.
I have that I can implement not predicate simply in this way:
not(P) :- P, !, fail;
...
1
vote
1answer
52 views
Different predicate in Prolog, don't work (always false)
I am learning Prolog for an universitary exame using SWI Prolog and I have some question about this simple program that implement the different predicate that say TRUE if two element are different (if ...
1
vote
1answer
59 views
Negation as failure in Prolog is a procedural behavior?
I have a litle question about the negation as failure in Prolog language:
This is a question more theoretical than practical because I have clear how this example work.
so I have the following ...
0
votes
0answers
32 views
A-star algorithm and Minesweeper [duplicate]
I am trying to implement minesweeper solver in lisp.
I HAVE to use A* algorithm. And i don't need to open all unopened fields...I need to find positions of all mined fields. And of course it has to ...
0
votes
1answer
56 views
Implement a Prolog predicate that say if an element belong to a list. Problems with not numerical lists
I am studying Prolog for an universitary exam using SWI Prolog.
I am finding some problem with this exercise:
Implement the predicate: **not_member(X,L) that is TRUE if the element X does not ...
0
votes
1answer
156 views
Some explanation about 8 queen solution that use permutation
I am studyin Prolog for an universitary exam on SWI Prolog implementation.
I have some doubt about how work this version of 8 Queen problem that solve the problem using the permutations:
...
1
vote
1answer
214 views
From 8-Queens solution to more generic n-Queens solution in Prolog
I am studying Prolog for an universitary exame and I have some problem with the following exercise.
I have the following classic solution of 8-Queens problem (and this is not a problem for me), ...
1
vote
1answer
50 views
Declarative interpretation of list inversion in Prolog
I have some problem to join declarative reasoning...so I am here to ask you if my reasoning is correct or if there is something wrong or if I am missing something...
I have the following problem: ...
1
vote
3answers
67 views
Declarative interpretation of this program that says if an element belongs to a list
From what I have understood the declarative paradigm indicate what is important to reach the solution and not how reach it but, being accustomed to think procedurally, I often make confusion...
So ...
0
votes
0answers
65 views
Sokoban solver - strategy in picking barrels?
I'm doing some research in making a Sokoban solver.
Untill now, I found some information about deadlocks, determing distances between pusher and barrels, tunnel and so on.
I didn't found some ...
-1
votes
1answer
276 views
Predicate Logic and CNF [closed]
One given example, two questions, two ideas:
∃t ∀s learn(s, t, a) and not distracted(s) => passExam(s, a)
1) What means that in natural language?
There is a t(opic), when a s(tudent) learns ...
0
votes
2answers
84 views
I want my dealer to be bit more 'intelligent' when choosing when to draw a card in BlackJack game
Think of BlackJack game... I created a method which does simple calculation whether computer should draw a card and just hard coded the rules. I would like to make this more 'intelligent' therefore ...
0
votes
1answer
137 views
Resolution Inference Rule Algorithm
I have the following doubt in the Resolution Inference Rule.
1* In for each Ci, Cj in clauses do , does each Ci and Cj necessarily contain complimentary symbols (ex. one contains A and the other ...
0
votes
2answers
56 views
How would this hierarchy for knowledge representation be extended?
I've tried making a hierarchy of all forms of knowledge - including physical objects, numbers, procedures etc. How could this be improved? How would a sentence such as "Jack is producing music sitting ...
0
votes
1answer
138 views
What does [x|y] mean in a logical predicate? [closed]
One might suppose that we can avoid the problem of variable conflict in unification during backward chaining by standardizing apart all of the sentences in the knowledge base once and for all. Show ...
0
votes
0answers
95 views
Confusion in first-order logic inference
I'm having some difficulty with understanding the following paragraphs taken from the book Artificial Intelligence A modern approach, regarding first-order logic inference:
The technique of ...
