Tagged Questions

1
vote
2answers
118 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, ! …
5
votes
12answers
623 views

efficient algorithm to compare similarity between sets of numbers?

Hello, I have a large number of sets of numbers. Each set contains 10 numbers and I need to remove all sets that have 5 or more number (unordered) matches with any other set. For …
1
vote
2answers
105 views

How do I find a subset of items in two sets of data that partially differ?

I am trying to get the subset of items in dataA that are in dataB, and have different values of property c. The properties a and b can be used as an index, so I have tried to filt …
2
votes
5answers
176 views

Database operation that can be applied repeatedly and produce the same results?

I'm drawing a blank, or as some would say, having a senior moment. I know there’s a formal definition and a name for the concept where a db operation (stored procedure) that runs i …
-4
votes
6answers
471 views

Russell’s Paradox

Let X be the set of all sets that do not contain themselves. Is X a member of X?
3
votes
2answers
687 views

Is there set division in SQL?

I'm fully aware that set division can be accomplished through a series of other operations, so my question is: Is there a command for set division in SQL?