Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
150 views

Set Theory and .NET

Recently I came across a situation where set theory and set math fit what I was doing to the letter (granted there was an easier way to accomplish what I needed - i.e. LINQ - but I didn't think of ...
4
votes
6answers
223 views

Fastest way to perform subset test operation on a large collection of sets with same domain

Assume we have trillions of sets stored somewhere. The domain for each of these sets is the same. It is also finite and discrete. So each set may be stored as a bit field (eg: 0000100111...) of a ...
4
votes
12answers
3k views

efficient algorithm to compare similarity between sets of numbers?

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 example: set 1: ...
4
votes
3answers
2k 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?
3
votes
1answer
111 views

Deterministic Finite-state Automaton Questions

I have this DFA described as (Q, q1, A, N, F) where Q = {1,2,3,4}, q1 = 1, A = {a,b,c}, F = {2,4}, N = { (1,a) -> 2, (1,b) -> 3, (1,c) -> 4, (2,a) -> 2, (2,b) -> 4, (3,a) -> 2, (3,c) ...
3
votes
2answers
260 views

Parent Child Relationships with Fluent NHibernate?

I would like to create a cascading tree/list of N number of children for a given parent, where a child can also become a parent. Given the following data structure: CountryType=1; ColorType=3; ...
3
votes
1answer
164 views

Finding overlapping sets

I'm writing a Digital Fountain system in C#. Part of this system creates me sets of integers, I need to find the combinations of sets which create can leave me with a set of just one item. What's the ...
3
votes
2answers
350 views

Recursive sql subset query, using connect by

I have two tables that look a little like this AGR_TERR_DEF_TERRS ID DEF_ID TERRITORY_ID (foreign key links to TERRITORIES.ID) TERRITORIES ID NAME PARENT_ID (parent_id and id are ...
3
votes
2answers
123 views

What is a data structure for quickly finding non-empty intersections of a list of sets?

I have a set of N items, which are sets of integers, let's assume it's ordered and call it I[1..N]. Given a candidate set, I need to find the subset of I which have non-empty intersections with the ...
3
votes
2answers
175 views

SQL query to identify completely contained subset

I am scratching my head to figure out a solution to the following question: I have a table with two fields, USER_ID and CLIENT_ID. For each USER_ID there are 1 to n CLIENT_IDs. Let us say that user ...
2
votes
0answers
75 views

Programming Theory - Proving Invariants

I have defined this pseudo-code for recognising strings using a relaxed-trie where the function Next[u,x] gives the set of nodes with u-edges from u ( basically the set of nodes such that (u,x,v) is ...
2
votes
2answers
281 views

implimenting set theory operations in php

Does anyone have any examples or know of any resources that show how to implement set theory operations in pure php?
2
votes
3answers
314 views

determine if intersection of a set with conjunction of two other sets is empty

For any three given sets A, B and C: is there a way to determine (programmatically) whether there is an element of A that is part of the conjunction (edit: intersection) of B and C? example: A: all ...
2
votes
3answers
2k 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, !. ...
2
votes
2answers
223 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 filter out only the ...
2
votes
5answers
356 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 in a database will ...
1
vote
3answers
88 views

Set theory data structure

I come from a rather functional programming background and I'm not used to (efficient) C++ data structures. I need a data structure that keeps multiple elements like depicted in struct element. In the ...
1
vote
5answers
96 views

Why aren't there convenience functions for set_union, etc, which take container types instead of iterators?

std::set_union and its kin take two pairs of iterators for the sets to be operated on. That's great in that it's the most flexible thing to do. However they very easily could have made an additional ...
1
vote
5answers
121 views

Is there a way to remove the nested query in this type of SQL SELECT?

Given this table structure and example data (t3 should not be used in the query, it is only here to show the relation between t1 and t2): t1 t2 t3 ...
1
vote
1answer
93 views

Good free resources for learning set theory

I'm looking to learn set theory. My coding history has been primarily practical and I'd like to move more into the theory side of things. I think I understand the basic concepts of set theory but I ...
1
vote
1answer
126 views

Is there any software that takes set builder notations and returns roster notations?

For example, if you feed {x|xεZ,0<x} to it, it returns { 1,2,3,4,5,6,7,8,9,10,11,...}
1
vote
1answer
36 views

Approaches for using and analyzing set data in time

I am designing an interactive installation for a gallery where I will receive input telling me which of 8 input transducers have been bridged. For example if someone touches strip number 1, I will be ...
0
votes
0answers
17 views

Set unification algorithm

Say I have a text file with thousands of sets of space-delimited strings, each line containing one set: (Here the strings specifying the set members are just one character each, though in practice ...
0
votes
1answer
103 views

SQL: Matching records by set theory

I've been struggling lately with a complex SQL query. I have the following tables: [dbo].[User] ~ {ID,nickname} [dbo].[Property] ~ {ID,title} [dbo].[Property_Values] ~ [ID,propertyID,title} ...
0
votes
0answers
18 views

Where can I find a proof that the set of finite strings on an infinite alphabet has the same cardinality than the alphabet?

While I was studying theory of computation, I started to wonder what would be the cardinality of the set of finite strings over an infinite alphabet. According with my Google research, this set would ...
0
votes
4answers
216 views

Combining NSArrays Through Intersection and Union

I have two NSArrays A and B that share some common elements, e.g. A: 1,2,3,4,5 B: 4,5,6,7 I would like to create a new NSArray consisting of the contents common between the two NSArrays joined ...
0
votes
3answers
51 views

Concatenate an ISet using Aggregate

I am trying to use Concat() on multiple ISets to make one larger ISet. So I tried the following piece of code: public class Foo { private Dictionary<Bii, ISet<Faa>> items = new ...
0
votes
1answer
73 views

Constructing a Follow Set

While creating a first set for a given grammar, I noticed a scenario not described in my reference for the algorithm. Namely, how does one calculate the follow set for a nonterminal with a rule such ...
0
votes
4answers
173 views

Finding vertices in an ordered set of a complete graph

Problem: For an ordered set of edges E of a complete graph Kn, given an edge Ei, find the edge's vertices (v, w)_Ei. Note: This is likely not a problem specific to graph theory, although it was ...
0
votes
1answer
74 views

My array data is being corrupted somehow by my custom (Set Theory) Complements() function?

I was fed up with the limited javascript Array functions and wanted to write a few of my own handy prototype functions to perform Set Theory functions. Below is the code I have for this so far ...
0
votes
1answer
1k views

LINQ to Entities plus Set Theory: Unable to create a constant value of type 'ITextEntity'. Only primitive types ('such as Int32, String, and Guid')

I have a LINQ to Entities query (using EF 4) that has some pretty complicated set-based filtering going on. The code compiles just fine, but when I try to run it, I get the following error: Unable ...
-3
votes
5answers
858 views

Russell's Paradox [closed]

Let X be the set of all sets that do not contain themselves. Is X a member of X?