The cartesian product, named after René Descartes, of two sets A and B is the set of all ordered pairs ab, where a is element of A and b is element of B.

learn more… | top users | synonyms

-3
votes
0answers
34 views

Matrix Multiplication and Cartesian Products in MapReduce [closed]

I will soon be engaged in Matrix and Cartesian Multiplication in MapReduce. I would appreciate concrete examples in python and Java as well as algorithmic approach description to better understand ...
2
votes
2answers
113 views

How to convert a tuple of vectors into a vector of tuples using the Cartesian product? [duplicate]

For the purpose of unit testing classes with std::tuple constructors, I'd like to generate a sample of special cases plus random values for the constructor arguments. Say that I have a std::tuple of ...
2
votes
1answer
18 views

Cartesian product table for an algebraic relation in R

I have one or two numerical vectors, e.g. x <- c(1, 2, 3). I want to create a graphical representation of the relation aRb, where R is any algebraic formula such as a + b (used in the example ...
0
votes
0answers
39 views

SQL Table Cartesian. Dynamic Cross join

I have some issue with SQL dynamic cross join script. I have tables with some variables and it's values (Variable and Variable_Values), and i have table Variable_Sample (see DB diagram). ...
5
votes
4answers
147 views

A restricted Cartesian Product Calculation - PHP

EDIT 1 -since posting I have learnt that the underlying question is about how to find the CARTESIAN PRODUCT (now go google), but not only because I don't want every perm, I want to find the cartesian ...
2
votes
1answer
109 views

Scala: cross (cartesian) product with multiple sources and heterogeneous types

I'm trying to construct multiple cross products of traversables of different (but each homogeneous) types. The desired return type is a traversable of a tuple with the type matching the types in the ...
2
votes
2answers
88 views

Calculation of combinations/cartesian product of sets (without duplicates and without order restrictions)

I have a combinatorial problem that can be solved inefficiently using the cartesian product of multiple sets. Concretely, I have multiple items and multiple elements that satisfy each item. The ...
1
vote
1answer
57 views

SQL Inequality joins returning cartesian product

I have a problem getting join conditions to isolate unique records. My query is returning cartesian products, and I don't know how to make it stop. My tables look like this: Table A ID_1 ...
0
votes
2answers
65 views

How to write Cartesian Product in Ruby?

http://spark-university.s3.amazonaws.com/berkeley-saas/homework/hw1.pdf Trying to part 7 of this assignment. The following code does not seem to work, but to be frank I'm not sure why, the ...
0
votes
1answer
101 views

Javascript for Variations with Repetition (combinatorics) of missing string characters

My question is similar to THIS question that hasn't been answered yet. How can I make my code (or any javascript code that might be suggested?) find all possible solutions of a known string length ...
0
votes
1answer
86 views

List of combinations from a list of values?

How can I obtain a list of combinations from a list of lists? For example: ghci> getCombinations [[1,2,3],[10,20,30],[100,200,300]] ...
3
votes
1answer
109 views

What is the LINQ query to get a Cartesian Product even when one set is EMPTY?

Imagine I have 2 list and one is empty: List<string> foo = new List<string>(){ "Ali","wall-e","Ellie" }; List<string> bar = new List<string>(); And I obtain the Cartesian ...
1
vote
1answer
122 views

Cartesian product and WHERE clause issue

Let us have simple table: CREATE TABLE dbo.test ( c1 INT ) INSERT INTO test (c1) VALUES (1) INSERT INTO test (c1) VALUES (2) INSERT INTO test (c1) VALUES (3) Next calculate some SUM: SELECT ...
1
vote
2answers
60 views

Progressive array combinations in Ruby

I have multiple arrays, lets say 4 for example: a = ["a", "b", "c" ] b = [1, 2, 3, 4] c = ["xx", "yy"] d = ["abc"] I'd like to "progressively" do product of arrays in an iterative fashion, ...
2
votes
1answer
121 views

Linear time algorithm to compute cartesian product

I was asked in an interview to come up with a solution with linear time for cartesian product. I did the iterative manner O(mn) and a recursive solution also which is also O(mn). But I could not ...
3
votes
2answers
190 views

Haskell Cartesian Product Recursively [duplicate]

I know how to use list comprehension to do this, but how can I implement a function that will recursively compute the cartesian product given two sets? Here's where I'm stuck (and I'm a noob) ...
2
votes
1answer
212 views

Cross product in Scala

I want to have a binary operator x (cross-product/cartesian product) of traversables in Scala: val x = Seq(1, 2) val y = List('hello', 'world', 'bye') val z = x cross y # i can chain as many ...
0
votes
2answers
228 views

Oracle cartesian product vs. join

In my company we use an Oracle database. I've noticed everybody writes their queries like this: SELECT p.name, p.id, o.issued_date FROM orders o, products p WHERE o.productid = p.id; What is the ...
-1
votes
2answers
144 views

Why asterisk is overloaded for types?

I still don't understand the motivation. Why did they made two different operators (* and *.) for multiplication of integers and floats respectively as if they afraid of overloading, but at the same ...
-4
votes
1answer
75 views

how to create a product using a combination of features and values with c# [closed]

public class Properties { public int PropertyId { get; set; } public string Property { get; set; } } public class Values { public int ValueId { get; set; } public string Value { get; ...
1
vote
1answer
101 views

Undestanding how cartesian product implementation on Haskell works

I have started learning Haskell and I have problem with understanding how cartesian product of lists of the list works here is the supposed code cprod = foldr f [[ ]] where f xs yss = foldr g ...
1
vote
3answers
140 views

Duplicated results when performing INNER JOIN

I have 2 simple tables that I would like to perform an INNER JOIN with, but the problem is that I'm getting duplicated (for the columns str1 and str2) results: CREATE TABLE #A (Id INT, str1 ...
0
votes
1answer
221 views

Having problems doing Cartesian product

I searched throughout the forums and could not find what I was looking for. I am doing an assignment for school and I need to implement some methods. I did most of them and am getting the output I ...
1
vote
0answers
82 views

Would cartesian product be the best approach for this

Related Questions: Matrix Combination Logic Efficient way to determine the outcome of test matrix I have 25 individual validations that I need to test all possible combinations, I have seen a ...
1
vote
1answer
222 views

cartesian product of a power set with a set

how to explicitly write the cartesian product of a power set with another set. eg: P({a,b})x{a,b} Now P({a,b}) = {{},{a},{b},{a,b}} so i need to know {{},{a},{b},{a,b}}x{a,b}
2
votes
2answers
340 views

Iterate over cartesian product of vectors

I have the following nested loop: for (x in xs) { for (y in ys) { # Do something with x and y } } Which I’d like to flatten so I thought of building a Cartesian product of the two ...
6
votes
3answers
361 views

Cartesian product of large iterators (itertools)

From a previous question I learned something interesting. If Python's itertools.product is fed a series of iterators, these iterators will be converted into tuples before the Cartesian product begins. ...
2
votes
1answer
210 views

itertools: Cartesian product of permutations

Using pythons itertools, I'd like to create an iterator over the outer product of all permutations of a bunch of lists. An explicit example: import itertools A = [1,2,3] B = [4,5] C = [6,7] for x in ...
-1
votes
2answers
457 views

How optimizing cartesian product query in SQL

I query a cartesian product over several tables in SQL. If I query SELECT * FROM TABLE1, TABLE2, ... , TABLE n WHERE .... it may be fast. It gives, let me say, only 1-3 hits. Now, if I query ...
2
votes
5answers
222 views

Select all combinations of the rows from 2 tables

I have two datatables like this: dt1: ID1 ---------- 1 2 3 4 5 6 7 8 9 10 dt2: ID2 ---------- 1 2 3 4 5 Now, I want to retrieve ...
0
votes
0answers
78 views

filter lazy initialised collection

I am having some performance issues due to some HQL queries resulting in large Cartesian Products. To get around this I'm trying to lazy fetch the collections although I cant find a nice way of ...
2
votes
4answers
165 views

How to intertwine two strings or arrays, possibly with String.Join()

I have the following string arrays: var myArray1 = new string[] {"A", "B", "C"}; var myArray2 = new string[] {"t1", "t2"}; I would like to be able to produce a final string that looks like this: ...
7
votes
2answers
1k views

Numpy: cartesian product of x and y array points into single array of 2D points

I have two numpy arrays that define the x and y axes of a grid. For example: x = numpy.array([1,2,3]) y = numpy.array([4,5]) I'd like to generate the Cartesian product of these arrays to generate: ...
1
vote
1answer
157 views

Cartesian product of array with itself without duplicates in Ruby

How can I do a cartesian product of an array with itself, without including both [object i, object j] and [object j, object i]? Currently, I've got array = %w{a b c} unique_combinations = ...
4
votes
1answer
236 views

Convert nested C loops into a single boost index?

I'm slowly learning boost and I'm trying to find a simple way to convert the following C++ snippet: for(int i=-n;i<n+1;i++) { for(int j=-n;j<n+1;j++) { for(int k=-n;k<n+1;k++) { ...
3
votes
2answers
265 views

C++ Cartesian product iterator calling base class function on first iteration

I'm working on a set of n-dimension Cartesian product classes, loosely based off of this solution. I have many different data types for the same basic set of algorithms and I thought "Aha! I will ...
6
votes
6answers
281 views

How can I get a random cartesian product in PostgreSQL?

I have two tables, custassets and tags. To generate some test data I'd like to do an INSERT INTO a many-to-many table with a SELECT that gets random rows from each (so that a random primary key from ...
0
votes
2answers
362 views

Oracle SQL Developer - Combining Cartesian Product, Count/Sum and Group By

I am joining 2 tables using Cartesian Product as follows. select p.type, i.amount FROM products p, invoice i where (p.account = i.id); -- column headers cant be changed despite having same info ...
0
votes
1answer
107 views

Sql - Sort by values in a cartesian product

Let's say I have the following data: Product IdPk | Name ------------- guid1 | Printer guid2 | Oil guid3 | Etc. guid4 | Etc.. ProductPart PartIdPk| ItemId | PartName ------------------------- ...
0
votes
3answers
268 views

Most efficient way of combining elements of lists of items into sets of combinations?

Let's say we're giving a List of lists of some items, say Strings. list 1: "a", "b", "c" list 2: "d", "e", "f" list 3: "1", "2", "3" results: (a, d, 1), (a, d, 2), ... (c, f, 3) (the real use ...
1
vote
2answers
104 views

find combinatios of list items

I'm having n inputLists with items. Now I want to calculate resultLists (of length n) containing all combinations of items in the original inputLists (taking one item of each inputList). I think I ...
1
vote
1answer
599 views

Cartesian Product of multiple arrays in C

I am able to achieve cartesian product of static number of arrays in C.But I would like to build a code dynamically taking the number of input arrays.Can someone shed some light how to do this "only ...
1
vote
1answer
151 views

How to optimize Cartesian product

Is there a better way to compute Cartesian product. Since Cartesian product is a special case that differs on each case. I think, I need to explain what I need to achieve and why I end up doing ...
5
votes
4answers
691 views

How to create cartesian product over arbitrary groups of numbers in Java?

Let's say I have 2 groups of numbers: {1, 2, 3}, {4, 5} I'd like to create an algorithm (in Java) that outputs the following 6 combinations: 1,4 1,5 2,4 2,5 3,4 3,5 There can be an arbitrary ...
0
votes
2answers
94 views

Choose 1 from each of 11 ArrayLists is too slow

This is basically what my program is doing: if you have 5 different shirts and 4 different pants to choose from, there are 20 different combinations of shirts and pants you can wear, and my program ...
2
votes
3answers
183 views

Cartesian/combination algorithm (while maintaining order)

Since I don't quite know the language of these types of algorithms (i.e. how to google this), I'll just demonstrate what I'm looking for: I have a three arrays (source arrays are of not equal ...
11
votes
1answer
238 views

How to select specific item from cartesian product without calculating every other item

I'm mostly convinced that there is an answer to this problem, but for the life of me can't figure out how to do it. Let's say I have three sets: A = [ 'foo', 'bar', 'baz', 'bah' ] B = [ 'wibble', ...
2
votes
1answer
1k views

SQL query returning cartesian product

I have some tables: Employee: id, name, id_suc, id dep, id_sec Suc : id_suc, name Dep : id_dep, id_suc, name Sec : id_sec, id_dep, id_suc, name Don't blame on me, this is an existing ...
2
votes
1answer
2k views

Cartesian product in MATLAB

Here is the simplified version of the problem I have. Suppose I have a vector p=[1 5 10] and another one q=[.75 .85 .95]. And I want to come up with the following matrix: res=[1, ...
1
vote
2answers
519 views

PHP algorithm which calculates all possible combinations of dividing one set between another set

I'm looking for a kind of 2-dimensional combination algorithm.. if that's the correct wording. I'm pretty experienced with PHP, but not with algorithms and advanced math so bear with me please. I ...

1 2 3