Tagged Questions
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
...
0
votes
1answer
81 views
Using the Prolog select predicate?
I'm trying to make a program where seat(Guests, Seating) holds if the people in the list Guests can be re-arranged into the list Seating so that each one is compatible to the ones on either side.
I ...
5
votes
1answer
164 views
Define a predicate inside a predicate in prolog
I'm trying to define a predicate inline to pass it to another predicate in Prolog.
% Test if a "product" of graphs G1 and G2 has a "mini-loop" starting from Q
test_property_combined(G1,G2,Q):-
...
1
vote
1answer
99 views
Prolog: getting rid of a recursive helper predicate
So I'm trying to get rid of the wrapper clause by using the sort library predicate directly inside split. What split does is just generating a list of numbers from a list that looks like this: ...
1
vote
1answer
109 views
grandfather predicate in Prolog
I have written the following program in SWI-Prolog:
male(reza).
male(aliakbar).
male(behrooz).
male(said).
male(aliasghar).
male(taghi).
male(gholamreza).
male(hadi).
female(fatema).
female(tahere).
...
1
vote
3answers
142 views
Meaning of slash after the predicate name in prolog?
I checked this Link1 and Link2
But these links don't seem to help me ...
I was going though some beginner tutorials on prolog.
Phrases like Solve/4 or Go/1 confused me ... what does that slash and ...
3
votes
3answers
366 views
Prolog - how to check if a predicate succeeds more than once
I have a database of facts like this:
li(a,2).
li(b,3).
li(b,1).
li(c,2).
li(d,1).
li(d,1).
I need to write a predicate more(+Let) that succeeds if it exists more than one fact li(Let,_).
For ...
1
vote
1answer
227 views
Prolog. How to check if two math expressions are the same
I'm writing a prolog program that will check if two math expressions are actually the same. For example, if my math expression goal is: (a + b) + c then any of the following expressions are considered ...
2
votes
1answer
83 views
Qn on the book Learn Prolog Now
The part of the book I'm referring to is here,
http://cs.union.edu/~striegnk/learn-prolog-now/html/node4.html
listensToMusic(mia).
happy(yolanda).
playsAirGuitar(mia) :- listensToMusic(mia).
...
0
votes
1answer
33 views
how to find declaration of a predicate in the modules which lie in other directories
For Prolog plugins, such as SICStus spider, proDT and PDT, "find declaration" in eclipse editor can not find predicate definition in the modules which lie in different directories.
For example,
...
0
votes
3answers
157 views
Check if the Nth number of Fibonacci is NthFib or not - arithmetic error fail
Here is my predicate, which should check if the Nth number of Fibonacci is NthFib or not.
I am getting arithmetic is not function error.
K - current iteration
N - Nth number
Tmp - previous Fibonacci ...
1
vote
1answer
192 views
Calculating Time Difference in Prolog
I'm having some trouble writing a relatively simple predicate in Prolog. This predicate is supposed to receive two arguments in the format Hours:Minutes, calculate the difference between the two and ...
0
votes
2answers
115 views
SWI-Prolog Finding Value Of X
I have something like this in the database.
flight( tk1, ist, esb, 40 ).
flight( tk2, ist, mlx, 90 ).
And I have written a predicate called test.
test([S], L1):-
findall( C, (flight( _, S, C, ...
2
votes
4answers
382 views
Implementing nth1 list operation in SWI prolog
How would you code your own predicate in prolog, to do exactly what the nth1 function does?
For those not familiar with that function, its power is best displayed through an example:
?- nth1(2, ...
0
votes
1answer
168 views
How do I return unique results from a knowledge base in Prolog?
Complete prolog beginner here.
Let's say I have a prolog knowledge base which contains food and it's price, for example:
food(banana,99).
etc.
I'm trying to write a predicate that will return ...
1
vote
4answers
148 views
How do I work with equations that are passed on in the goal/query of prolog?
I have this scenario wherein I get a linear equation in the Prolog query like below:
?- myquery( 3X + 5Y = 10, Result).
So my query has an equation 3X + 5Y = 10, which in general assumes the form AX ...
0
votes
3answers
731 views
Compound boolean expressions in Prolog
In Prolog, how do you implement compound logical predicates like (A and B) or (C and D)?
This may seem like a simple question but many approachable online tutorials are not detailed enough on boolean ...
0
votes
1answer
141 views
Prolog - readterm
Does anyone know how the predicate readterm from Prolog works with facts/database?
I gotta use that but I don't know how to fit it into facts.
2
votes
1answer
977 views
I want to create dynamic facts in prolog
I wrote the following simple code, and I expect that when I write 'male.', this code ask me once "is it male?" and if i input 'No' it write on screen "she is female".
male :- ( print('is it male ? ...
1
vote
1answer
388 views
Get random predicate from knowledge base. Prolog
For example I have:
upred(mary, have, knife).
upred(john, have, sword).
upred(sam, have, bowl).
upred(sword, is, long).
How can I get random predicate?
% call this and get random predicate as ...
0
votes
2answers
115 views
Rewrite recursive sicstus prolog function
My goal is to have this input:
L = [a,b,c], build_tree(L,T).
With this output:
L = [1,30,kth,5],
T = b(l(a),b(l(b),b(l(c)))) ?
yes
And with this code, that counts the number of leaves in a ...
1
vote
1answer
130 views
Prolog frequently used rules and facts
Is there any standard predicate library for Prolog? I am working on a chat bot which will have common sense. Besides mathematical rules and facts I also need some English basic predicates, for example
...
0
votes
1answer
287 views
Prolog test whether predicate failed or not
I want to write a predicate which returns a solution from a factbase. When no solution exists the predicate should return "No solutions exists". Returning a solution which exists in factbase is ...
2
votes
2answers
174 views
Prolog list problem
[a,b,c,d] and
[[1,2,3,4],[5,6,7,8],[43,34,56,5],[23,32,2,2]]
I want to make
[[a,1,2,3,4],[b,5,6,7,8],[c,43,34,56,5],[d,23,32,2,2]]
I use swi prolog is it possible do it ?
Thanks a lot.
0
votes
1answer
205 views
Is it possible make predicate from List?
I use swi prolog
I have lists like this
`[sunny,hot,high,weak,no]` and
[outlook,temperature,humidity,wind,play_tennis]
I want to make a predicate like
run(no, [outlook=sunny, temp=hot, ...
0
votes
0answers
65 views
Predicate problem [duplicate]
Possible Duplicate:
Prolog List Merge Question?
Hi, I have two
attributes(emp,buy,sex,married,decision).
data(yes,comp,f,no,approve).
I want to use this predicates:
example(approve, ...
0
votes
1answer
816 views
How to make a list of lists in prolog
I use SWI-Prolog and I want to make a list of several other lists.
For example, I want to put the following three lists
[a,b,c]
[1,2]
[d]
into a larger one that looks like [[a,b,c],[1,2],[d]] .
...
-1
votes
2answers
170 views
Set parametres dynamically in prolog
I try to make my code dynamic.I have a file and it has
a(b1,c1,d1).
a(b2,c2,d2).
a(b3,c3,d3).
And I found all b1 and I make a list like this.
[b1,b2,b3].
When arity count changes ...
4
votes
4answers
244 views
Problem with `\+` in Prolog queries with variables
I'm reading "Seven languages in seven weeks" atm, and I'm stumped over some Prolog query that I don't understand the 'no' response to.
The friends.pl file looks like this:
likes(wallace, cheese).
...
0
votes
1answer
77 views
Prolog file manipulation
I use swi prolog, I have a file like this,
yeni(a,b,c).
yeni(d,s,w).
I try to make a new list which occur predicate column. Such as
[a,d]
[b,s]
[c,w]
Do you have any suggestion?
0
votes
1answer
154 views
How to generalize program according to arity in prolog?
I use swi prolog. I have a fact base like this consisting of facts with arity 4.
attribute(a1,a2,a3,a4).
data(yes,no,no,no).
data(yes,no,yes,no).
data(yes,yes,yes,no).
data(yes,yes,yes,yes).
...
0
votes
1answer
99 views
Making a predicate from a list
I want to make a predicate from this list.
I have a list [apple,orange].
I try to make this predicate--->
fruits(apple,orange).
Do you have any idea?
0
votes
1answer
339 views
What is wrong with this predicate in Prolog?
findThree([H|T],_,3).
findThree([H|T], M, Z):-
( member(H,M)
-> Z2 is Z + 1,
select(H,M,C),
findThree(T,C,Z2)
...
0
votes
2answers
359 views
In Prolog, how can I check for N of elements in list A in list B?
I have these two lists =
fruits([banana, apple, mangoes, pears]).
foodILike([hamburgers, banana, shakes, fries]).
I want to write a prolog predicate that will return true as soon as it sees 1 ...
3
votes
2answers
1k views
compute in prolog
I know in prolog we ask for is that true or false ,
can we also do compute for example average and how the predicate look like?
2
votes
2answers
1k views
Predicate control in Prolog
Have a curiosity related to Prolog predicate control.
Supposedly I have a predicate f(A,X) and g(B).
f(A,X):- a,b,c, g(X).
g(B):- true.
a - returns true
b - returns true.
c - returns false.
where ...
2
votes
2answers
91 views
How can I insert an additional argument after the last argument in a prolog procedure?
I am new to learning prolog, and I want to know, if we have some procedure like
father("Nic","Adam").
and I want to write a function that it will add new value to this
...
3
votes
2answers
395 views
Defining is_a predicate in prolog?
I'm trying to define the inheritance-check predicate is_a/2 in Prolog, but so far all my trials failed.
The is_a(X, Y) predicate should return true whenever Y is a superclass of X. For example:
...
4
votes
3answers
458 views
Becoming operational in Prolog ASAP
May be this sort of question has been asked many times( as I see the list when I move the cursor to this messagebox), But my company has a project running in Prolog and I want to clarify few things ...
0
votes
3answers
2k views
Prolog — symetrical predicates
I have to simulate family tree in prolog.
And i have problem of symetrical predicates.
Facts:
parent(x,y).
male(x).
female(y).
age(x, number).
Rules:
blood_relation is giving me headache. this is ...
