0
votes
2answers
67 views
Prolog Find the longest list in a list of lists
I have a list of lists, and I need to find the longest one of them. If there are more than one with the same length it's the same which it returns. Thanks.
1
vote
4answers
69 views
Prolog Path Search Pointers
I need to check if a path is valid, true or false. It's given like this:
?-path(a,b,[(a,c),(c,d),(d,b)]).
true
In the list part, how do I access the a or c in (a,c)? Is it like …
1
vote
2answers
38 views
Prolog Problem with combinding predicates that work on their own
Here we go, bare with me. The over all goal is to return the max alignment between two lists. If there are more than one alignment with the same length it can just return the first …
1
vote
2answers
52 views
Prolog A predicate for alignment
By alignment I mean that the predicate takes in two lists, well three with the alignment list. And then check that every item in the alignment list is indeed an element in both the …
0
votes
3answers
42 views
push a list to Stack as one element without brackets
I have list of elements in a list like [1,2,+] and I want to push them as a one element onto a stack. I can do that by putting them between square brackets but this will make brac …
1
vote
1answer
34 views
Prolog Conditional Not Evaluating
Hi, I'm trying to simply do a conditional in prolog like this:
((Life==dead)->Trans=no).
I thought the above code would evaluate as if Life == dead, then Trans = no, but for som …
0
votes
2answers
37 views
Simple graph search in Prolog
Hi,
I'm trying to code a simple graph search in SWI-Prolog. I came up with the following program:
adjacent(1,4). adjacent(4,2). adjacent(3,6).
adjacent(6,4). adjacent(7,10). adja …
1
vote
2answers
168 views
Binary Tree Isomorphism
I have an assignment to write among other things, a set of prolog predicates that determine if any two binary tree's are isomorphic to each other. The predicate must also be able t …
1
vote
1answer
28 views
Documentation for the Prolog dialect Prova
I would like to switch from SWI-Prolog to Prova - but it seems to be harder than expected:
Predicates like succ() are not available and operations like Var1+Var2>Var3 do not w …
0
votes
3answers
225 views
perfect numbers between 1 and 100
How can I accomplish writing a program to generate all perfect numbers between 1 and 100. A perfect number is a positive integer that is equal to the sum of its proper divisors. Fo …
3
votes
5answers
159 views
What are the advantages of using Prolog over other languages?
Every language that is being used is being used for its advantages, generally.
What are the advantages of Prolog?
What are the general situations/ category of problems where one …
0
votes
2answers
106 views
tail recursion sum, power, gcd in prolog?
hi guys, how can I accomplish this:
Give a tail-recursive definition for each of the following predicates.
power(X,Y,Z): XY=Z.
gcd(X,Y,Z): The greatest common divisor of X and Y …
0
votes
3answers
103 views
What’s an elegant way to unify X,Y with (1,2), (1,-2), (-1,2), (-1,-2), (2,1), (2,-1) , (-2,1), (-2,-1)?
What's an elegant way to unify X,Y with (1,2), (1,-2), (-1,2), (-1,-2), (2,1), (2,-1) , (-2,1), (-2,-1)?
Doing it this way seems error prone and tedious:
foo(1,2).
foo(1,-2).
…
1
vote
2answers
70 views
Prolog list difference routine.
I am trying to implement a list difference routine in prolog.
For some reason the following fails:
difference(Xs,Ys,D) :- difference(Xs,Ys,[],D).
difference([],_,A,D) :- D is A, ! …
1
vote
1answer
35 views
Prolog Problem with “is” function
I am having a problem with prolog that I do not understand. I have used the tracer to follow the problem, and this is what happens
....
(8) 8 NEXT value(debt, p9, Orly)
(8) 8 * …
