4
$\begingroup$

I'm having a discussion with a co-worker over the number of permutations in a bin packing problems as follows.

There are two bins each of which can hold 6 cu ft. A package can be from 1 - 6 cu feet, there can be from 1 - 12 packages. How many permutations are possible?

It's been a great many years since either of us have done any formal math but it seems to me the problem space isn't all that large due to the constraints, though the problem is NP complete. We found a few web pages talking about different approaches to bin packing but nothing really on how to determine number of possible permutations.

  • 0
    This is a basic clarification. When you ask for permutations, are you implying that ordering matters across bins? i.e., if I have a 6 cu.ft. package in the first and two 3 cu. ft. packages in the second, is it counted as different from an arrangement where there are two 3 cu. ft. packages in the first and 6 in the second? If a bin has (1,2,3) is it different from (2,3,1)?2011-03-23
  • 0
    If none of the orderings matter, you should be asking for the number of combinations.2011-03-23
  • 0
    Sorry, it's been too long since my formal education as I implied, yes I mean number of combinations not permutations. (1, 2, 3) is the same as (3, 2, 1) as long as they are both in the first bin.2011-03-24

1 Answers 1