What is the minimum number of straight cuts required to divide a circle into 2017 pieces?
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.
For any circle, the number of straight cuts needed to divide it into x pieces is computed per:
N = 2 1 ⋅ ( x 2 + x + 2 ) .
Since we desire N = 2 0 1 7 pieces, we have:
2 0 1 7 = 2 1 ⋅ ( x 2 + x + 2 ) ⇒ x 2 + x + 2 = 4 0 3 4 ⇒ x 2 + x − 4 0 3 2 = 0 ⇒ ( x + 6 4 ) ( x − 6 3 ) = 0
We only require the positive root, hence x = 6 3 cuts.