Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re^3: Multiple Combinatorics

by BrowserUk (Patriarch)
on Apr 15, 2012 at 17:54 UTC ( [id://965184]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Multiple Combinatorics
in thread Multiple Combinatorics

Care to clarify that? Maybe add some examples? Cos like JavaFan, I don't get it.

As soon as you pick any two values from group 2 (1..6), you've also already picked two values from group 1 (0..7), so there is no way to comply with your "every resulting row should satisfy the initial condition" requirement.

You would either a) a pick two from both groups and therefore have 4 from the larger group; or b) pick nothing from the larger group, in which case you have nothing from the larger group.


With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

The start of some sanity?

Replies are listed 'Best First'.
Re^4: Multiple Combinatorics
by aartist (Pilgrim) on Apr 15, 2012 at 22:01 UTC
    Yes: if Group B (1..6) is subset of Group A(0..7) and Pick(B)=2 is equal to Pick(A)=2 then we apply 'b): pick nothing from larger group';

    In this case, we still have picked 2 values from larger group automatically, which holds the initial condition. Only thing that '0' and '7' won't be picked at all in any resultset. ( from the given data).

      The only way to deal with this efficiently is to reduce the input sets to non-overlapping sets prior to permuting them.

      To do that, you need to lay out the rules for overlapping sets. You'd need to define how to deal with:

      1. One set completely overlaps another;
        1. the overlap is less than the number to be picked from the smaller group.
        2. The overlap is less than the number to be picked from the larger group.
        3. The overlap is equal to the number to picked from the smaller group.
        4. ...
      2. There is only a partial overlap between the groups:
        1. The overlap is smaller than the number to be picked ....
        2. ...

      Whence you've defined how all the possibilities should be resolved into distinct groups, the rest should be relatively easy.

      I'm still bugged by your lack of explanation of what the purpose of this is?


      With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
      Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
      "Science is about questioning the status quo. Questioning authority".
      In the absence of evidence, opinion is indistinguishable from prejudice.

      The start of some sanity?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://965184]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (4)
As of 2024-04-18 03:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found