0
votes
1answer
31 views

How to solve boolean logic equation with prolog?

For example i have expression "C = A and B", i want to make predicate like solv(A, B, C) := C is A, B. to call it like solv(A, true, true). and Prolog say "B is true". Please help
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
0answers
34 views

Local theft art in prolog program [duplicate]

I have to write program in prolog to solve this logic problem: After a local art theft, six suspects were being interviewed. Below is a summary of their statements. Police know that exactly four of ...
-2
votes
0answers
42 views

Local theft art in prolog [closed]

I have to write program in prolog to solve this logic problem: After a local art theft, six suspects were being interviewed. Below is a summary of their statements. Police know that exactly four of ...
-1
votes
2answers
43 views

How does Prolog handle this query

Considering the following definition: my_append([], L, L). my_append([H|T], L, [H|NewTail]):- my_append(T, L, NewTail). And a possible usage, and its output: ?- my_append([1,2,5], [3,4], L). L = ...
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 ...
2
votes
2answers
57 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
54 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
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], ...
1
vote
1answer
34 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
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 ...
1
vote
1answer
57 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
33 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
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
3answers
83 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 ...
1
vote
1answer
44 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
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
vote
2answers
78 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
133 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
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
1answer
52 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
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
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 ...

1 2 3 4