What is the maximum number of slices(not necessarily equal) a pizza can be cut into by slicing it only 100 times?
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.
Note that to divide the pizzas into maximum peices we should cut its lines in such a way that no two are parallel and no three are concurrent.
Now, using one slice we can make a maximum of
2
parts.
Now, using two slices we can make a maximum of
4
parts.
Now, using three slices we can make a maximum of
7
parts.
Now, using four slices we can make a maximum of
1
1
parts.
Now, using five slices we can make a maximum of
1
6
parts.
So, we see that using
n
slices we can make a maximum of
1
+
i
=
1
∑
n
i
So using 100 slices we can make a maximum of
1
+
i
=
1
∑
1
0
0
i
=
1
+
2
1
0
0
×
1
0
1
=
5
0
5
1
An alternative method is to realize that with every slice we are cutting the existing parts into a maximum of n more parts. Eg:- If in slice 5 we make 16 parts, in slice 6 we cut in such a way that in passes through 4 points thus making 5 more pieces than first, which leads to the same result as above.
I used the formula n(n+1)/2 + 1...
We can use the derived formula f ( n ) = 2 1 ( n 2 + n + 2 ) . We have
f ( 1 0 0 ) = 2 1 ( 1 0 0 2 + 1 0 0 + 2 ) = 5 0 5 1
I saw this problem before in a PDF called concrete mathematics
Wierd, well I dont think it can be the exactky same, cause this problem is original.
well, that's good u rediscovered it ;)
Problem Loading...
Note Loading...
Set Loading...
So, this is how Jesus fed the 5,000 as mentioned in the bible, Matthew 14:13-21.