Here's a fun one: it is possible to divide a (circular) pizza with n cuts into more than 2n pieces (not necessarily equal, and the cuts do not all go through the center or bisect the pizza).
- the ordinary way, n cuts all through the center gives 2n uniform pieces and it is trivial to make them equal size.
However the MAXIMUM number of pieces p(n) for n cuts is called the lazy caterer's sequence and goes like this: 1, 2, 4, 7, 11, 16, 22, 29...
See e.g. the Wikipedia picture of the pancake cut into 7 pieces by 3 cuts (the middle piece is a (possibly equilateral) triangle)
http://en.wikipedia.org/wiki/Lazy_caterer%27s_sequence
Note: "equal-area" does NOT imply "uniform"!
So anyway my questions are these:
a) for n cuts, define the general algorithm to make the cuts
b) what is the ratio r(n) of largest to smallest pieces area?
Try e.g. computing r(3) and r(4)
c) is there a more useful sequence of cuts such that 2n
2007-11-18
16:41:24
·
2 answers
·
asked by
smci
7
in
Science & Mathematics
➔ Mathematics
Addenda (I ran out of room...):
- the cuts must be straight-line, no corners allowed!
- the general lazy-caterer number of pieces is
p(n) = (n²+n+2)/2 = =n(n+1)/2 +1 = C(n+2,2)
; see Wikipedia for proof and justification
c) is there a more useful sequence such that 2n
A property of the ordinary (symmetric) cutting scheme which we seem to lose with lazy-caterer is that all symmetric cutting schemes can further be subdivided, e.g. 3 cuts give us 6 equal-area pieces, but using those 3 cuts, 3 further cuts can then give us 12 equal-area pieces, 6 more cuts to 24 pieces etc.
So again, can you find a more useful sequence of cuts such that 2n
but preserving some of the ability to subdivide? Must a cut-sequence necessarily have some sort of (radial) symmetry to preserve this subdivision property?
2007-11-18
16:53:06 ·
update #1
For diagrams, see
http://www.research.att.com/~njas/sequences/A000124.gif
which has diagrams of p(3)→7 cuts
p(4)→11 and p(5)→16 cuts.
Note that we can make the 7-cut case radially symmetric, but not the higher-order cases. So, can we say anything at all useful about e.g. the 11-cut case? i.e. some constraints on those annoying subdivided triangles? How would you numerically optimize the 11-cut case?
Can anyone find a closed-form for the areas of the three different types of pieces in the 7-cut case (radially symmetric version)? requires a little integration.
[Finally, if we relax the requirement for cuts to be purely straight lines e.g. we allow one corner (of some angle), we can achieve equal-area pieces, at least in the 7-cut case. But that kind of makes it a different problem?]
2007-11-18
18:15:59 ·
update #2