give the number 52. It has to sort into 1 24-page, 0 20-page, 1 16-page,
1
12-page and 0 8 page. The only available dividers are 24, 20, 16, 12 and
8.
(ie 10110)
Hi. You mention "Only available..."
As a side note with your numbers, you selected the second of 13 possible
solutions. You may need to specify a more detailed "Rule".
FrobeniusSolve[{24,20,16,12,8},52]]
{1,1,0,0,1},
{1,0,1,1,0},
{1,0,0,1,2},
{0,2,0,1,0},
{0,1,2,0,0},
{0,1,1,0,2},
{0,1,0,2,1},
{0,1,0,0,4},
{0,0,2,1,1},
{0,0,1,3,0},
{0,0,1,1,3},
{0,0,0,3,2},
{0,0,0,1,5}
So one might think the solution is:
1*24 + 1*20 + 1*8 = 52
or
1*12+5*8 = 52
etc...
All numbers in {24,20,16,12,8} are Co-Prime, hence there are an infinite
number that can't be reproduced with these numbers.
Your page numbers can only be 8,12,16,20, ...(+4) multiples of 4.
Just to mention...
From Number Theory, if you could reduce the last page from 8 to 7, then the
Frobenius Number reduces from Infinity to 29.
FrobeniusNumber[{24,20,16,12,7}] = 29
(29 being the largest page # you can't do)
Therefore, every page number above 29 can be represented from
{24,20,16,12,7}. I don't know what your requirements are, but thought it
might be worth mentioning.
--
Dana DeLouis
daffy1 said:
I am trying to come up with a formula to sort page counts. Example: If I
give the number 52. It has to sort into 1 24-page, 0 20-page, 1 16-page,
1
12-page and 0 8 page. The only available dividers are 24, 20, 16, 12 and
8.