Tagged Questions
The cartesian-product tag has no wiki summary.
15
votes
8answers
3k views
Generating all Possible Combinations
Given 2 arrays Array1 = {a,b,c...n} and Array2 = {10,20,15....x} ..
how can i generate all possible combination as Strings a(i) b(j) c(k) n(p) where
1 <= i <= 10, 1 <= j <= 20 , 1 <= ...
11
votes
9answers
1k views
Cartesian product
I wish to produce the cartesian product of 2 lists in Haskell, but I cannot work out how to do it. The cartesian product gives all combinations of the list elements:
xs = [1,2,3]
ys = [4,5,6]
...
9
votes
1answer
889 views
Fighting cartesian product (x-join) when using NHibernate 3.0.0
I'm bad at math but I kind get idea what cartesian product is.
Here is my situation (simplified):
public class Project{
public IList<Partner> Partners{get;set;}
}
public class Partner{
public ...
9
votes
4answers
562 views
In Perl, how can I get the Cartesian product of multiple sets?
I want to do permutation in Perl. For example I have three arrays: ["big", "tiny", "small"] and then I have ["red", "yellow", "green"] and also ["apple", "pear", "banana"].
How do I get:
["big", ...
8
votes
5answers
3k views
Cartesian product of arbitrary sets in Java
Do you know some neat Java libaries that allow you to make cartesian product of two (or more) sets?
For example: I have tree sets. One with objects of class Person, second with objects of class Gift ...
7
votes
2answers
316 views
Efficient item binning algorithm (itertools/numpy)
I think this is a common combinatorics problem, but I can't seem to find a name for it or any material about it. I am doing this in Python and numpy, but if there is a fast matrix method for this, I ...
7
votes
5answers
2k views
Efficient Cartesian Product algorithm
Can somebody please demonstrate for me a more efficient Cartesian product algorithm than the one I am using currently (assuming there is one). I've looked around SO and googled a bit but can't see ...
6
votes
4answers
388 views
Finding cartesian product with PHP associative arrays
Say that I have an array like the following:
Array
(
[arm] => Array
(
[0] => A
[1] => B
[2] => C
)
[gender] => Array
...
6
votes
3answers
385 views
Why does application of `sequence` on List of Lists lead to computation of its Cartesian Product?
My question is about the sequence function in Prelude, the signature of which is as follows:
sequence :: Monad m => [m a] -> m [a]
I understand how this function works for List of Maybes. For ...
6
votes
2answers
246 views
How can I simplify “for x in a for y in b for z in c …” with the unordered?
#!/usr/bin/python
#
# Description: I try to simplify the implementation of the thing below.
# Sets, such as (a,b,c), with irrelavant order are given. The goal is to
# simplify the messy "assignment", ...
6
votes
2answers
533 views
Concurrent cartesian product algorithm in Clojure
Is there a good algorithm to calculate the cartesian product of three seqs concurrently in Clojure?
I'm working on a small hobby project in Clojure, mainly as a means to learn the language, and its ...
6
votes
5answers
3k views
Scala - can yield be used multiple times with a for loop?
An example:
val l = List(1,2,3)
val t = List(-1,-2,-3)
Can I do something like this?
for (i <- 0 to 10) yield (l(i)) yield (t(i))
Basically I want to yield multiple results for every ...
5
votes
2answers
87 views
How can I complete this Objective-C implementation of a cartesian product function?
As a follow up to my question here, I am trying to implement the following PHP function in Objective-C, which will generate a cartesian product:
function array_cartesian_product($arrays)
{
...
5
votes
7answers
2k views
List multiplication
I have a list L = [a, b, c] and I want to generate a list of tuples :
[(a,a), (a,b), (a,c), (b,a), (b,b), (b,c)...]
I tried doing L * L but it didn't work. Can someone tell me how to get this in ...
5
votes
2answers
2k views
Mixing implicit and explicit JOINs
I am having a problem with Hibernate generating invalid SQL. Specifically, mixing and matching implicit and explicit joins. This seems to be an open bug.
However, I'm not sure why this is invalid ...
4
votes
2answers
501 views
Clear explanation of the “theta join” in relational algebra?
I'm looking for a clear, basic explanation of the concept of theta join in relational algebra and perhaps an example (using SQL perhaps) to illustrate its usage.
If I understand it correctly, the ...
4
votes
3answers
606 views
How can I create cartesian product of vector of vectors?
I've a vector of vectors say vector<vector<int> > items of different sizes like as follows
1,2,3
4,5
6,7,8
I want to create combinations in terms of cartesian product of these vectors ...
4
votes
2answers
416 views
Cartesian Product and Map Combined in Scala
This is a followup to: Expand a Set of Sets of Strings into Cartesian Product in Scala
The idea is you want to take:
val sets = Set(Set("a","b","c"), Set("1","2"), Set("S","T"))
and get back:
...
3
votes
3answers
60 views
DrRacket Combining Lists
I was hoping someone could guide me in the right direction:
I am looking two produce all possible combinations of items in two lists:
Example:
Given the lists '(symbol1 symbol2) and '(1 2), I am ...
3
votes
1answer
92 views
When does the Oracle CBO choose to execute a “merge join cartesian” operation?
From time to time, Oracle seems to prefer a MERGE JOIN CARTESIAN operation over a regular MERGE JOIN. Knowing the data and looking at concrete execution plans, I can see that this operation is usually ...
3
votes
1answer
70 views
SQLite accepts non-existing join types in SQL syntax
I found this unexpected behavior with SQLite. It appears that SQLite accepts arbitrary keywords in SQL join syntax. If I accidentally type nautral join instead of natural join a cartesian product is ...
3
votes
1answer
130 views
Recreate sets from combinations of these sets
I came across a specific problem and looking for some algorithm for it. The problem to solve is as described below.
Let's say we have combinations like below
1 - 3 - 5
1 - 4 - 5
1 - 8 - 5
2 - 4 ...
3
votes
4answers
603 views
Calculate n-ary Cartesian Product
Given two lists, I can produce a list of all permutations the Cartesian Product of these two lists:
permute :: [a] -> [a] -> [[a]]
permute xs ys = [ [x, y] | x <- xs, y <- ys ]
...
3
votes
2answers
464 views
How do I compute the cartesian product of n sequences in F#?
I was given a puzzle as a present. It consists of 4 cubes, arranged side by side. The faces of each cube are one of four colours.
To solve the puzzle, the cubes must be orientated so that all four ...
3
votes
3answers
897 views
C++ How to generate the set of cartesian product of n-dimensional tuples
I wish to generate some data that represents the co-ordinates of a cloud of points representing an n-cube of n dimensions. These points should be evenly distributed throughout the n-space and should ...
3
votes
1answer
357 views
how to get cartesian products between database and local sequences in linq?
I saw this similar question here but can't figure out how to use Contains in Cartesian product desired result situation:
...
3
votes
4answers
372 views
How can I compute a Cartesian product iteratively?
This question asks how to compute the Cartesian product of a given number of vectors. Since the number of vectors is known in advance and rather small, the solution is easily obtained with nested for ...
3
votes
7answers
963 views
In Perl, how can I iterate over the Cartesian product of multiple sets?
Given x number of arrays, each with a possibly different number of elements, how can I iterate through all combinations where I select one item from each array?
Example:
[ ] [ ] [ ]
foo ...
2
votes
4answers
332 views
How to do Combinatorics on the Fly
I have a very weird problem which has some constrains that make it difficult to solve. I have a list of lists and I want to do the combinations of all items in those lists. Each item has a name and a ...
2
votes
3answers
573 views
JavaScript Golf - Cartesian Product
Lets play some simple-golf. This is like code-golf, but rather than going for very few characters, we want to make a very simple implementation.
Here's my implementation of a Cartesian product for a ...
2
votes
2answers
240 views
efficient sorted Cartesian product of 2 sorted array of integers
Need Hints to design an efficient algorithm that takes the following input and spits out the following output.
Input: two sorted arrays of integers A and B, each of length n
Output: One sorted array ...
2
votes
2answers
331 views
How to generate the cartesian product of a jagged array?
I'm having some trouble figuring out how to generate the cartesian product of a jagged array. I have googled around, but i cant seem to find an implentation for a iterative language. So i'm trying to ...
2
votes
2answers
108 views
Problem related to finding permuations and combinations using Python
I have 2 variables - a and b. I need to fill up k places using these variables. So if k = 3 output should be
[a,a,a], [a,a,b] , [a,b,a], [b,a,a], [a,b,b], [b,a,b], [b,b,a] and [b,b,b]
Input - k
...
2
votes
1answer
105 views
Are all MySQL joins selections on the Cartesian product?
On reading the documentation of the MySQL join commands, it looks like all the joins are analogous to , by simply finding the Cartesian product and then selecting from that result.
Is this an accurate ...
2
votes
3answers
407 views
Algorithm to produce Cartesian product of arrays in depth-first order
I'm looking for an example of how, in Ruby, a C like language, or pseudo code, to create the Cartesian product of a variable number of arrays of integers, each of differing length, and step through ...
2
votes
1answer
241 views
MYSQL: Avoiding cartesian product of repeating records when self-joining
There are two tables: table A and table B. They have the same columns and the data is practically identical. They both have auto-incremented IDs, the only difference between the two is that they have ...
2
votes
2answers
503 views
In python: how to apply itertools.product to elements of a list of lists
I have a list of arrays and I would like to get the cartesian product of the elements in the arrays.
I will use an example to make this more concrete...
itertools.product seems to do the trick but I ...
2
votes
3answers
757 views
Cartesian product in Scheme
I've been trying to do a function that returns the Cartesian Product of n sets,in Dr Scheme,the sets are given as a list of lists,I've been stuck at this all day,I would like a few guidelines as where ...
2
votes
1answer
243 views
Generate all possible dna sequences from a few given sets
I have been trying to wrap my head around this for a while now but have not been able to come up with a good solution. Here goes:
Given a number of sets:
set1: A, T
set2: C
set3: A, C, G
set4: T
...
2
votes
5answers
571 views
Split String - the Cartesian way
Given the following string:
"foo bar-baz-zzz"
I want to split it at the characters " " and "-", preserving their value, but get all combinations of inputs.
i want to get a two-dimensional array ...
1
vote
3answers
49 views
Creating Combinations in JavaScript
Lets say I have several sets of options in Javascript
var color = ["red", "blue", "green","yellow"];
var size = ["small", "medium", "large"];
var weight = ["heavy", "light"];
what is an ...
1
vote
1answer
90 views
How do I generate a Cartesian product in Java?
I have a number of ArrayList with each ArrayList having objects and each one can have different length. I need to generate permutation like in the below example:
suppose i have 2 arraylist
...
1
vote
2answers
84 views
NHibernate FetchMode Cartesian Product
In my object graph, VendorServiceRateChange has a lazy loaded property IList<VendorService> VendorServiceList and the VendorService has a lazy loaded property IList<ClientService>.
When I ...
1
vote
1answer
42 views
trigger @ Execution plan.. Cartesian product
The idea is when a user runs a query and has a bad Cartesian who cost is above a certain threshold . Then oracle emails it to me and user. i have tried few things but they don't work on run time. If ...
1
vote
1answer
29 views
Need to use criteria from multiple tables to acquire data from multiple tables
I'm having a bit of a hiccup regarding a particular SQL query. I need to join data from two tables, while also limiting the data (but not necessarily grabbing it) by means of a third table. The ...
1
vote
2answers
99 views
LINQ implementation of Cartesian Product with pruning
I hope someone is able to help me with what is, at least to me, quite a tricky algorithm.
===========
The Problem
I have a List (1 <= size <= 5, but size unknown until run-time) of Lists (1 ...
1
vote
1answer
131 views
Postgresql: Insert the cartesian product of two or more sets
as definition: The cartesian product of two sets is the set of all possible pairs of these sets, so {A,B} x {a,b} = {(A,a),(A,b),(B,a),(B,b)}.
Now i want to insert such a cartesian product into a ...
1
vote
2answers
121 views
performance of cross join
I am building a photo content webpage. In order to make all the combination of content, I use cross join. Let's say I have the following simple table:
table photos
id filename
------------
1 ...
1
vote
3answers
177 views
Why does Math::Cartesian::Product return blessed objects?
I noticed Math::Cartesian::Product returns an array of blessed objects instead of a simple array of arrays. I couldn't figure out why. I actually need to do some extra work (unbless) to use the ...
1
vote
3answers
628 views
Cartesian Product + N x M Dynamic Array
I have looked hours for a solution without any success. Hopefully someone can help me out.
I have a dynamic array of N items on M origin zip codes.
For instance:
Item 1: 11001, 54010, 60621
Item 2: ...