-1
votes
2answers
29 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
24 views

Prolog List instantiation

i want to create a predifined list. But i am doing something wrong because when i pass it as an argument it doesnt work. Here is the code i have: list([5, 1, 2, 8, 10, 4, 3, 6, 9, 7]). print( [ ] ). ...
1
vote
1answer
57 views

How can I search a list with the underscore variable? (Prolog)

here's my problem I receive various lists with the underscore variable in them (for example: [ _, _, A, _, _] or [ _,A, B, _, _]), and I need to search those lists for the values that matter (in this ...
0
votes
1answer
82 views

“Or” procedure in prolog

I'm doing a prolog program for college that is a bit like the cluedo game. I have six suspects with different traits: suspect(Name, Age, Weapon, Shape, Object, Shoes) The goal is to implement a ...
0
votes
1answer
46 views

how to check if B isn't betwenn A and B

i have a question, how can i make a program that says that given a list, B is not in the middle of A and C? i can suppose that betwwen A and C is only one position.. so: ...
0
votes
1answer
40 views

Prolog: How to find a specific element in a list?

I have to implement this predicate: predicate(+connections, +[index,position], -leftConnections); The connections variable is a list which looks like this: (conn(symbol1, element11, element21), ...
0
votes
1answer
17 views

prolog delete head from a clause

I am using yap. Suppose I have this scenario: p(x,y) :- q(x), f(x,y), g(x). I need to put the body of the predicate in a list using the command listing(p). Expected output should be: [q,f,g]. How ...
2
votes
2answers
66 views

Prolog - Extract a Sublist

sublist(L1,L2,I,J) I have a list, L1 being passed in, along with 2 indices I and J, and I want L2 to be the inclusive sublist containing the elements between I and J. If J is outside of the bounds, ...
0
votes
1answer
37 views

Building a list of n length same value Prolog

I want to build/3 a list in Prolog of N elements, each element should be X. ?- build(30,3,L). L = [30,30,30]. Spent a good few hours on it, keep ending up in either a infinite loop or the ...
1
vote
1answer
66 views

Find a missing number in a list

Say I have a List [2,1,4,5], I would like to have a predicate that returns 3 as the missing element. missing([], []). missing([H|T], R) :- missing([H|T], H, R). missing([], _I, []). missing([H|T], I, ...
0
votes
2answers
34 views

Prolog element is a list member check

I have a little rule in prolog that has to check if an element is a member of a list and write it's position in the list,but it only works if the elemebt i'm looking for is in the 1 place.Need help ...
1
vote
1answer
97 views

Prolog avoid generating same lists twice

I have following code: internal_generator(List):- select(foo, List, MList), select(bar, MList, M2List), select(baz, M2List, _). internal_generator2(List):- select(sth1, List, MList), ...
1
vote
2answers
45 views

Prolog removing all variables and duplicates

I need a query, which will remove me all variables and duplicates from list. Example: ?- L = [1,2,3,X,Y,3,2], my_awesome_predicate(L, Res). Then, Res should be: [1,2,3]. I don't care about order ...
0
votes
3answers
37 views

Accumulating atoms into a list without recursion Prolog

I'm trying to write a Prolog program that takes user input and makes decisions based on the semantics of the input (basically a chatbot). I had originally thought (being not a logic programmer) that ...
2
votes
1answer
38 views

Prolog: Downcase all atoms in a list

I'm trying to write a Prolog program that needs to take a user's natural language input and match it against a set of atoms. I'm using SWI Prolog's readln/1 to get input and put it in a list of ...
0
votes
1answer
37 views

Prolog program- implementing rules and list matching

I am trying to write a program in Prolog that would recognize 'is a' statements and apply the transitive property in inquired. For example: Input: Mary is a girl. Output: ok. Input: A girl is a ...
1
vote
2answers
22 views

List intersection predicate issue

I'm trying to create this predicate that counts the number of matches from one list to another but whenever I run it I keep getting errors regarding the X and Y values not being instantiated ...
1
vote
3answers
73 views

Finding the most similar list from predicate knowledge base in Prolog

I have a problem in which I have a list of elements and I have to cycle through all instances of a particular /2 predicate to find which one has he highest number of matching elements in its list. In ...
0
votes
1answer
18 views

Unpredictable dynamic predicate behaviour

I have a problem that requires me to add elements to a list that are spread across various predicates. Rather than doing via argument based lists I've opted to use a dynamic list predicate. I simple ...
0
votes
1answer
75 views

Prolog, delete an element in a list at a specified index

I need your help! Can you help me with this: delete an element in a list at a specified index in Prolog. For example: delete(List,Index,NewList). ?-L=[1,5,7,4],delete(L,2,L2),write(L2). ...
1
vote
2answers
44 views

Prolog: list of lists (size N x N)

I need to make list of the lists witch will be some kind of matrix, in size N x N for same N, and I don't know how to declare that all the elements of list must be lists with N elements?
0
votes
1answer
39 views

Prolog: Appending a List fails and Not too sure why

I am relatively new to prolog and what I am trying to do is create a list, but I seem to be encountering an error and Im not too sure why. Here is the trace for a more detailed outlook, This is part ...
0
votes
2answers
46 views

Prolog List Predicates

I need some help with three prolog predicates for checking and manipulating lists. I'm new to prolog and any help would be much appreciated. The three predicates are: double_up(+List1, -List2) is ...
1
vote
3answers
53 views

Arithmetic on Two Lists Prolog

So I have a HW problem I've been working on for a couple days and I'm stuck on the last part. In Prolog, I'm supposed to write a function that takes in two lists ((x1, x2, …, xn), (y1, y2, …yn) ) and ...
3
votes
2answers
41 views

Element handling issue in Prolog, but not in a regular list?

I'm trying to write an element handling function in Prolog. It's almost the same as the prolog predicate member/2 but it must do the job in a different way. For being specific; I must say the member/2 ...
1
vote
1answer
30 views

Infinite loop prolog

I am writing a function that returns distinct sublists of a size n. When I run the following prolog code with a query gen_list_n(4,D,[1,2,3,4]) it runs into an infinite loop after returning the first ...
0
votes
5answers
50 views

Count only numbers in list of numbers and letters

I'm new to Prolog and I can't seem to get the answer to this on my own. What I want is, that Prolog counts ever Number in a list, NOT every element. So for example: getnumbers([1, 2, c, h, 4], X). ...
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). ...
-1
votes
0answers
29 views

Prolog - Concatenate everything inside a list

How would I do this in prolog? [a,man,a,plan,a,canal,panama] => [amanaplanacanalpanama] So everything in the list needs to be concatenated
0
votes
1answer
53 views

Prolog - Creating a list by iterating facts

I am new in Prolog and wanted to learn it. I have been trying to create a list while iterating facts but list that was created one step back refreshing and lost the data. How can I keep the data and ...
0
votes
4answers
107 views

Prolog converting integer to a list of digit

I want to write a predicate that an integer and a list of digits, and succeed if Digits contain the digits of the integer in the proper order, i.e: ?-digit_lists( Num, [1,2,3,4] ). [Num == 1234]. ...
0
votes
1answer
60 views

New to Prolog, Lists and Pairs

I'm new to Prolog and I'm having a bit of a hard time understanding how some of the mechanics actually works. Right now I'm trying to work on a particular problem. I need to find all possible pairs ...
0
votes
1answer
36 views

Prolog Clear List of positive elements without using cuts

I want to clear a list without cutting. I tried: filter([],[]). filter([H|T],[H|S]) :- H<0, filter(T,S). filter([H|T],S) :- H>=0, filter(T,S). But it doesn't work. Here is ...
1
vote
1answer
40 views

Remove unique elements only

There are many resources on how to remove duplicates and similar issues but I can't seem to be able to find any on removing unique elements. I'm using SWI-Prolog but I don't want to use built-ins to ...
1
vote
1answer
79 views

Prolog, recursive return values are dissapearing

I have written a program to evaluate a post-fix expression in prolog recursively from an expression list. For example, given the following list: [+,1,2] It should return 3. They way I have ...
0
votes
5answers
99 views

Prolog - summing numbers from two lists

I'm trying to write prolog program that sums items from two lists and present the result in another list. For example: List1: [1, 3, 4, 2] List2: [5, 1, 3, 0] Result: [6, 4, 7, 2] So ...
1
vote
1answer
43 views

Prolog (SWI): Conjunction over a list?

Say I have a predicate eval(A) that just evaluates to true/false depending on some input Now the thing is, I want another predicate and(List, R) that succeeds iff List is empty/the conjunction of ...
1
vote
2answers
96 views

Splitting a list into two lists (Unique and Duplicate) (Prolog)

I have been trying to split a given list into two different lists: Unique and Duplicate. For example, if we have the list [1, 1, 2, 3, 3, 4, 5] I want the Unique list to be [2, 4, 5] and Duplicate to ...
1
vote
1answer
83 views

Prolog recursive program returning too many results

I have a prolog program which is meant to find the sum of the squares of all the numbers in a list divisible by three or five. However it returns more than one result and I'm not sure why. % ...
0
votes
1answer
80 views

find all k-length subsets of list in prolog

i need to find a k-length subset of list in prolog, i have this function: subset([], []). subset([E|Tail], [E|NTail]):- subset(Tail, NTail). subset([_|Tail], NTail):- subset(Tail, ...
1
vote
1answer
64 views

How to pattern match an element in a list in prolog?

In prolog how can you pattern match an element in a list? For example, if the list was like [1/2,1/3,2/5,3/6] then you can do something like one([..,1/A,..]) :- A=2. one([..,1/A,..]) :- A=3. ...
1
vote
2answers
64 views

replacing list elements in sicstus prolog

I am writing a Prolog predicate that takes arguments (A1, A2, L1, L2) and succeeds if all occurences of A1 within L1 have been changed to A2 in L2. i.e.: | ?- replace(a, b, [a], X). X = [b] ...
0
votes
2answers
57 views

Prolog Sum of All Instances in a List of Facts

I have a list of facts. Each fact defines a relationship between two subjects and the number of projects they've completed. They're defined like this: ...
-4
votes
2answers
189 views

flattening a list in perl [closed]

I am solving some examples for practice, since i have a an exam tomorrow and is covering, perl, haskell and prolog programming languages,there is questions that asks to flatten a list in perl, ...
1
vote
3answers
71 views

getting specific elements from a list in Prolog

I have been reading this tutorial about Prolog list, and how to get specific element from a list, and I came across this example: ?- [_,X,_,Y|_] = [[], dead(z), [2, [b, c]], [], Z]. X ...
2
votes
2answers
224 views

Remove duplicate values from a list in Prolog

This is a case of duplicate value for which I haven't found a solution. Let's say we've got the following list: List = [ (A, B), (A, C), (B, A), (B, C), (C, A), (C, B) ]. A ...
0
votes
1answer
28 views

Prolog - two lists

I have two lists, for example: L1=[1,0,1,0,1,1] L2=[2,3,4,2,1,1] and I want to check something like this if (L1[k]==0) sum=L2(k) Is there any way to do that using prolog?
1
vote
1answer
43 views

Prolog Recursion on List

I am trying to understand how this prolog program works, and, as a beginner, I'm having some difficulty. The program is as follows: initialCan([w, b, w, w, w]). scholten([X], X). scholten([X, X | ...
0
votes
1answer
73 views

How to get the pairs from one list in Prolog?

I'm new in Prolog and I can't figure out how to obtain the result. I want to compute the possible combinations of pairs in the list. Example: input is a list [a,b,c], I want to obtain the pairs ...
2
votes
1answer
178 views

Prolog - Recursive List

Here is my question: A small club decided to set up a telephone network for urgent messages amongst its members. The following arrangement was agreed: Anne can phone both Bill and Mary. Bill can phone ...

1 2 3 4 5 8