With one straight cut you can slice a pie into two pieces. A second cut that crosses the first one will produce four pieces, and a third cut can produce as many as seven pieces. What is the largest number of pieces that you can get with six straight cuts?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
We maximize the number of pieces by making sure:
Each new cut intersects each of the previous cuts. In between individual intersections (as well as between intersections and the edge of the pie) the cut moves through a single piece. The n t h cut intersects the previous n − 1 cuts. Therefore it moves through n distinct pieces, adding n new pieces. Therefore after n cuts we have
2 n ( n + 1 ) + 1 total pieces. For n=6 this is 22.