Tagged Questions
-1
votes
2answers
31 views
Explain how prolog handles this query?
my_append([], L, L).
my_append([H|T], L, [H|NewTail]):-
my_append(T, L, NewTail).
Here is a program that can appear in my exam. The output is here:
?- my_append([1,2,5], [3,4], L).
L = [1, 2, 5, ...
0
votes
1answer
39 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
22 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
30 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
18 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
37 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 ...
2
votes
2answers
45 views
PROLOG List filter predicate not aswering true or false
I'm trying to make a predicate that takes two vectors/lists and uses the first one as a filter. For example:
?- L1=[0,3,0,5,0,0,0,0],L2=[1,2,3,4,5,6,7,8],filter(L1,L2,1).
L1 = [0, 3, 0, 5, 0, 0, ...
0
votes
1answer
45 views
Converting propositional logic argument to Prolog
How do I translate the following argument into Prolog? It seems like it doesn't need predicates. (Note: I use & for a conjunction and | for a disjunction.)
G -> (H & J)
(H | J) -> S
...
1
vote
1answer
29 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
38 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
28 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], ...
1
vote
1answer
25 views
PROLOG predicate answers true or false, but not the desired value
I am new to Prolog, and got stuck trying to make an auxiliar function that takes elements from a list, 2 at a time, and makes a vector.
For example:
L=[0,0,0,0,0,0,0,0], v_form([2,3,1,1],L).
L = ...
2
votes
2answers
39 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 ...
-3
votes
0answers
71 views
Coding A Sudoku Solver in Prolog [closed]
I am trying to code a sudoku solver in prolog; however it is returning false.
Here is the code I tried:
sudoku(Solution,Puzzle):-
PossibleNos = [1,2,3,4,5,6,7,8,9],
Solution = Puzzle,
Solution ...
1
vote
1answer
50 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:
...
0
votes
0answers
23 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 ...
1
vote
1answer
51 views
Logically Incorrect answer
I tested this code out. I solved it logically without the use of prolog and the answer was different. I cannot understand where the mistake is! These are my clues:
Mary Smith put all five wedding ...
0
votes
1answer
26 views
Logic Programming: Solve the term constraint f(X; Y; g(a)) = f(g(Y ); Z; X)
I was not able to attend my programming language class the other day due to my wonderful car crapping out on me. I am working on our homework assignment, I am doing pretty good till I got to this ...
2
votes
1answer
38 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
32 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
3answers
70 views
Can anyone point me in the direction of some 'wumpus world' type tutorials? [closed]
Hello stackoverflow users.
I have done some basic learning in Prolog with their user guide and followed the official LPA Flex tutorial booklet for Flex.
I am looking to write some form of my own ...
-2
votes
0answers
25 views
Some doubts about a program that found limited path from 2 nodes in a graph using Prolog
I am studying Prolog and I am finding some difficulties to understand this program that find a path between two nodes in a graph if this path is <= MaxLenght
This is the code:
edge(a,b).
...
1
vote
1answer
37 views
Telephone Conversation Logic Puzzle {Prolog}
year('1928').
year('1929').
year('1932').
year('1935').
person(gertie).
person(herbert).
person(miriam).
person(wallace).
exchange(al).
exchange(be).
exchange(pe).
exchange(sl).
solve:- year(Y1), ...
0
votes
2answers
33 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
43 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
53 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
38 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
57 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
55 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
vote
2answers
61 views
Prolog Family Tree Compile Errors
I've been getting two error messages when compiling this:
"Clauses of (-)/1 are not together in source-file" and
"Singleton variables: [X]"
...those two being examples of the errors I've been ...
2
votes
1answer
109 views
“Squares” Logic Riddle Solution in Prolog
"Squares"
Input:
Board size m × n (m, n ∈ {1,...,32}), list of triples (i, j, k), where i ∈ {1,...,m}, j ∈ {1,...,n}, k ∈ {0,...,(n-2)·(m-2)}) describing fields with numbers.
Output:
List of ...
-1
votes
1answer
30 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
1answer
46 views
Add fact to list if it's not already in
I need to construct a list based on facts I have. For example I have a course list like this :
attend(student1,c1).
attend(student1,c2).
attend(student2,c1).
attend(student2,c3).
...
0
votes
2answers
42 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
35 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
59 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
73 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
26 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
39 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
33 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
33 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
56 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
39 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
55 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
1answer
49 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
125 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:
...
0
votes
2answers
60 views
Solve in prolog resulting in false?
I have tried using a code similar to this link:
Solving a textual logic puzzle in Prolog - Find birthday and month
The problem I'm trying to solve is this(Telephone Conversations).
...
1
vote
1answer
143 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), ...
0
votes
1answer
65 views
swi prolog solve
I am using SWI Prolog for windows 7 and one of my assignments is a basic logic puzzle. We have been given a sample solution to a seperate problem - including its source code.
Its the "Its a tie" ...
0
votes
1answer
43 views
Solving symbolic logic with prolog
I'm going through some of Lewis Carrols logical quizzes
and I have a question with riddle number 60 on that page:
(1) The only animals in this house are cats;
(2) Every animal is suitable for a pet, ...
