A combination is a selection of objects from a larger collection in no particular order.

learn more… | top users | synonyms (1)

0
votes
0answers
6 views

How to combine result of Chinese remainder theorem

For calculating (N,r) where N is large we use Chinese remainder theorem. I read Chinese remainder theorem from the following link. Calculated nCr mod m (n choose r) for large values of n (10^9) But ...
0
votes
0answers
7 views

Number of ways in which students can be arranged in a row during examination

Assume there is a examination hall. Students of computer stream are to be sitted and arranged in only row "B". Let "n" be the number of desks in row "B" .What is the number of ways in which at least ...
5
votes
2answers
75 views

PHP combinations of array elements

I want to generate all possible combination of array elements to fill a placeholder, the placeholder size could vary. Let say I have array $a = array(3, 2, 9, 7) and placeholder size is 6. I want to ...
1
vote
0answers
36 views

Permutation of binary variables and their value table

I have some some boolean variables and want to change the value table in the same "order" as the variables. for example: 2^2 = 4 combinations 0,0 = A 0,1 = B 1,0 = C 1,1 = D Now I swap x_1 with x_2 ...
0
votes
0answers
51 views

Find possible combinations in Matlab equal to a constant

Let's take: A=[180 230 115 130 135 ; 180 230 115 120 130 ; 180 230 115 120 135 ; 250 230 115 120 140] How do I find all possible combinations as long as each combination has a sum ...
0
votes
0answers
31 views

How to combine correlated signals?

There are 11 signals: S_main : The original signal S1 ~ S10 : 10 signals that are correlated to S_main with different correlation coefficients (coeff1 ~ coeff10) Now here's the question: How can ...
0
votes
1answer
25 views

Prolog-cut & fail

I have this function comb(2,[1,2,3],A) witch finds the combinations with the elements of a list. now i want to make a function witch puts me all these combinations in a list without sending ; in ...
2
votes
2answers
67 views

What is the big-O complexity of this naive code to compute combinations?

The following recursive algorithm is a (fairly inefficient) way to compute n choose k: int combinationsOf(int n, int k) { if (k == 0) return 1; if (n == 0) return 0; return ...
0
votes
1answer
28 views

how to find out all probabilities of 3 zeros positions combinations out of 9 positions? How to figure them out using for loop in PHP? [closed]

I have 9 digits: 123456789 I need to find out all probabilities of 3 zeros positions every time, I did the work manually in Excel but I'm afraid of that I missed some of probabilities by mistake since ...
4
votes
1answer
35 views

Programming a sensitivity analysis in R: Vary 1 parameter (column), hold others constant. Better way?

I want to test the sensitivity of a calculation to the value of 4 parameters. To do this, I want to vary one parameter at a time -- i.e., change Variable 1, hold variables 2-4 at a "default" value ...
-1
votes
0answers
68 views

C# How do you get all combinations given a sample size and size of the population?

I am working on this project in C# where we are required to get all possible combinations (size n) of all the values inside a list (size p) using a windows form. So far I have created a list that ...
0
votes
2answers
22 views

SQL combination OR operator of result records

My TABLE is like: S_NO A B C 1 1 1 0 2 0 1 0 3 1 1 0 4 1 1 1 I want 'OR' of all A,B,C as a result when I give S_NO's as 1,2 and 3, result should be like A B C 1 1 0
0
votes
2answers
96 views

all possible combination of n sets

I have n Sets. each Set has different number of elements. I would like to write an algorithm which give me all possible combinations from the sets. for example: Lets say we have: S1={1,2}, ...
1
vote
2answers
57 views

I want to test an equation on arrays every unique combination of them, How could I do that using PHP?

If I had 6 arrays, and each array has 6 values (NOT zeros), and I want to test an equation while assuming 3 arrays of them to be zero values every loop, how could I do that? Example: I have these 6 ...
0
votes
2answers
34 views

Permutations and Combinations of rows as per Id having SUM for dissimilar groups As a SQL QUERY

I require a permutations and combinations of rows as per Id having SUM for dissimilar groups: As a SQL QUERY CREATE TABLE TestTable2([Id] [int] NULL, [Group] [varchar](50) NULL, [PeriodStart] ...
1
vote
3answers
92 views

How to find the shortest path cost?

I have Two Arrays string[] city = {"A","B","C","D"} And the cost of connecting them say int[] cost ={ 2,1,3,2,4,3} The task is to find the shortest path cost which will be 6 here. Why? ...
5
votes
7answers
101 views

How do I generate all possible combinations of a string with spaces between the characters? Python

How do I generate all possible combinations of a string with spaces between the characters? [in]: "foobar" [out]: ['foobar', 'f oobar', 'fo obar', 'f o obar', 'foo bar', 'f oo bar', 'fo o bar', ...
3
votes
3answers
89 views

How to make combination based on limit provided?

I have an array as under var x = new int[] { 1,2,3 }; And given a limit as int limit=2; I have to find a combination as 1+2 = 3 1+3 = 4 2+3 = 5. If the array is say var x = new int[] { ...
2
votes
4answers
142 views

How to make equal subsets of integers?

Suppose I have an array as under array[] = {14,10,20,4} This array can be divided into to subsets {14,10} and {20,4} since these two have equal sum. Another example may be array[] = {5, 5, 15, 5} ...
0
votes
0answers
14 views

All subsets of a bitmask

I'm encoding a list of integers which represents cities from 0 to N-1 where 3<=N<=20 into a bitmask of length N where a 1 means city (place of 1 in the bitmask) is in the list. For example: 1001 ...
2
votes
3answers
44 views

Generate all possible numbers with mask

Let say I have a string like: a = "123**7*9" And I need to generate all possible combination of it: 12300709...12399799 How to do that with python? Thanks!
2
votes
1answer
69 views

R - Find the chance of each subset in a given universe

Let me start with an easy example of my problem. Assume a universe of 10 people, where 1 person owns product A and 2 persons own product B U=10, A=1, B=2 Now I want to find the chances that: 1) a ...
1
vote
4answers
107 views

Find the Highest Sum in a Combination of Numbers

Lets say I have this: 1A=6 2A=4.5 3A=6 1B=7 2B=6 3B=7.5 1C=6 2C=6.75 3C=9 I want to find the combination of numbers that yields the highest sum. None of the numbers before the letters can be ...
0
votes
1answer
56 views

How do I generate all combinations of integers in java when placement is restricted?

I need to generate permutations over a set of integers. However the placement of the numbers matter. In position 0, the range is from 0-2. In position 1, the range is from 0-3. In position 2, the ...
0
votes
0answers
45 views

Check the existence of association combinations from a table

Folks, I am looking for the best way to retrieve following information. I got a table with products and options assigned to them. Then I got a list of option combinations and wanting to know the ...
0
votes
0answers
42 views

Using JSON/AJAX to pass dynamic information and return two header types

Background I have an application which I am updating. On other pages, I use a link to run a php script and return a header("Content-type: application/vnd.ms-word"); to print a document to MS Word. ...
0
votes
0answers
18 views

Most Efficient Way To Solve Permuation

I have one equation as : (M-1)C(i) + (S-M)C(N-1-i) Where i varies from 1....k-1 How Can this sum can be calculated efficiently ? I tried various methods but was not successful.
-1
votes
1answer
70 views

Find all the combinations for n sets of k elements

I have an array of structs typedef struct st1 { double start; double step; double stop; } ST; I need to find all the posible combinations of those Optimization parameters going from start to ...
0
votes
2answers
78 views

Run all possible combination of page filters in a pivot + VBA + Dynamic Solution

I am trying to create a macro that is dynamic and runs through all possible combination of page filters and produce reports. Right now, I just have two filters: AccountManager and CostCenter and the ...
-1
votes
0answers
35 views

Deriving the formula (18564) in GCJ - 2013 - 1A - C “Good Luck”? [closed]

The problem statement The official contest analysis In the section "The optimal strategy" of the analysis, they mentioned that there are "(12+7-1) choose (7-1) = 18564" possibilities for filling the ...
0
votes
3answers
60 views

How to count and group by combinations of multiple columns?

For a table such as: foo_table id | str_col | bool_col 1 "1234" 0 2 "3215" 0 3 "8132" 1 4 NULL 1 5 "" 1 6 "" 0 I know how to query both of: ...
-7
votes
0answers
55 views

splitting a number into multiple combinations in python [closed]

I'm passing a long number to a string say "123456789012345" and now I want to split it into all combinations of a string 2 or 3 chars long ex: 12 345 67 89 012 345 123 45 678 90 123 45 12 34 567 890 ...
3
votes
3answers
68 views

Python looping combinations of 8 objects into 3 groups, 3-3-2

Let's say I have a list of 8 objects, numbered that 1-8. The objects are put into three boxes, 3 in one box, 3 in another box, 2 in the last box. By mathematics, there are 8C3*5C3=560 ways to do ...
4
votes
2answers
102 views

How to get started with c# for testing keypressed event?

I am quite new to c#, and the first thing i want to do is being familiar with that environment by trying Key's Combination Events. In particular, alt+k. I'm working on Microsoft Visual c# 2010 ...
2
votes
3answers
118 views

PHP Find All (somewhat) Unique Combinations of an Array

I've been looking at PHP array permutation / combination questions all day.. and still can't figure it out :/ If I have an array like: 20 //key being 0 20 //key being 1 22 //key being 2 24 //key ...
-2
votes
0answers
22 views

Listing all possible lists out of two list's values

This is a problem that have bugged for months now. So I have two lists, each of them containing their own items. I want to produce new lists from these two, but the "order" of the items must remain ...
0
votes
2answers
32 views

Finding every possible linear combination that equals a constant in R with boundary conditions

Been trying to figure this out, but been having issues and suspect that there's any easy way to do this. So say I have some vector of constants for example: [1] -2 -3 1 Now say I want to define ...
0
votes
1answer
76 views

Enumerating all possible permutations in objective c -xcode

I want to have my program loop over all possible combinations of something like 5c1,5c2,5c3 etc and calculate some things within the loop. Something like 5c1 -> 1,0,0,0,0 0,1,0,0,0 0,0,1,0,0 ...
0
votes
1answer
43 views

how to generate combinations obtained by permuting 2 positions in java

I have this problem, I need to generate from a given permutation not all combinations , but juste those obtained after permuting 2 positions and without repetition . it's called the region of the a ...
-1
votes
0answers
19 views

Display Combination UPC [closed]

How can I display the UPC of a selected combination on the product template page like the reference number? $product->reference seems to contain individual combination's reference number but the ...
1
vote
1answer
135 views

algorithm for generating number combinations without repetition

I checked almost every similar post in here but i couldn't figure out how i can do what i want. What i am trying is to give an input in a C program, let say number 4, and the program return the ...
1
vote
3answers
206 views

How to get all possible combinations of strings from List<string[]>?

I'm doing a tag-like string match function where function checks is string contains any of possible words while maintaining their order, at least per tag. I figured out it will be best to precreate ...
5
votes
4answers
152 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 ...
-1
votes
1answer
37 views

Count function for combinations of repeated observations and factors in a dataframe within and across time

Suppose I have data of the following type: df <- data.frame(student = c("S1", "S2", "S3", "S4", "S5", "S2", "S6", "S1", "S7", "S8"), factor = c("A", "A", "A", "A", "A", "B", "B", ...
0
votes
2answers
67 views

interview questions: find all numbers that contain k 1's

I was asked to implement the following function: void printNumber(int N, int K); It prints all binary numbers of length N, which contains K ones. e.g. input: printNumber(3,2) output: 011 101 ...
-3
votes
1answer
55 views

Best Product Price Combination PHP Code [closed]

Please help!, I want a function that will generate the best price combination that can fit/or nearest to the total price limit. these are the following variables $limit = 475.60; $product_prices = ...
0
votes
3answers
55 views

PHP: Why is this an endless loop? [closed]

$x = 0; $y = 0; while ($x < 6); { while ($y < 6) { echo "INSERT INTO map_location(xLoc,yLoc) VALUES ($x,$y)"; $y++; } $x++; } I am trying to generate SQL statements ...
1
vote
2answers
33 views

Combinational Circuit with LED Lighting

Combinational Circuit design question. A ____ | | F | | B | | ____ | G | E | | C | | ____ D Suppose this is a LED display. It would take input of 4 bit ...
0
votes
0answers
7 views

determine the size of the region of a given permutation

I have this problem, I have a permutation of N=5 elements, say S=12345 , and I defined the region R(S) of this permutation as being all combinations obtained by changing 2 elements of this permutation ...
2
votes
2answers
42 views

Enumeration of distinct events in R

I am searching for an general approach to enumerate the sequence associated with the following problem and deposit the results in a 3 dimensional matrix in R. I think there must be a combinatorial ...

1 2 3 4 5 19