Cutting a Slice of Cake Into Two
up vote
3
down vote
favorite
Given a slice of cake, how can it be divided into two equal parts? Ignoring the trivial solution of 'down the middle'.
How far along the already-cut side of the cake do you need to cut?
Assume the slice of cake is a standard circle divided into 8 (N), and has a radius of 15cm (r).
Bonus points for a more general solution relating to how many pieces it's cut into (N) and how large the cake is (r).
One (vertical, straight) cut only.
mathematics
New contributor
user3108295 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
3
down vote
favorite
Given a slice of cake, how can it be divided into two equal parts? Ignoring the trivial solution of 'down the middle'.
How far along the already-cut side of the cake do you need to cut?
Assume the slice of cake is a standard circle divided into 8 (N), and has a radius of 15cm (r).
Bonus points for a more general solution relating to how many pieces it's cut into (N) and how large the cake is (r).
One (vertical, straight) cut only.
mathematics
New contributor
user3108295 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
One vertical straight cut? Or following the curve of the circle?
– Hugh
3 hours ago
Vertical straight cut, yes. Should have clarified!
– user3108295
3 hours ago
Although JohnMark Perry's answer is very funny, this question only has the mathematics tag and does not have the lateral-thinking tag. Based off that, I'm going to say that this belongs in Math.SE, and not here.
– Hugh
1 hour ago
add a comment |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
Given a slice of cake, how can it be divided into two equal parts? Ignoring the trivial solution of 'down the middle'.
How far along the already-cut side of the cake do you need to cut?
Assume the slice of cake is a standard circle divided into 8 (N), and has a radius of 15cm (r).
Bonus points for a more general solution relating to how many pieces it's cut into (N) and how large the cake is (r).
One (vertical, straight) cut only.
mathematics
New contributor
user3108295 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Given a slice of cake, how can it be divided into two equal parts? Ignoring the trivial solution of 'down the middle'.
How far along the already-cut side of the cake do you need to cut?
Assume the slice of cake is a standard circle divided into 8 (N), and has a radius of 15cm (r).
Bonus points for a more general solution relating to how many pieces it's cut into (N) and how large the cake is (r).
One (vertical, straight) cut only.
mathematics
mathematics
New contributor
user3108295 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
user3108295 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 3 hours ago
Rand al'Thor
68.5k14227457
68.5k14227457
New contributor
user3108295 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 3 hours ago
user3108295
161
161
New contributor
user3108295 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
user3108295 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
user3108295 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
One vertical straight cut? Or following the curve of the circle?
– Hugh
3 hours ago
Vertical straight cut, yes. Should have clarified!
– user3108295
3 hours ago
Although JohnMark Perry's answer is very funny, this question only has the mathematics tag and does not have the lateral-thinking tag. Based off that, I'm going to say that this belongs in Math.SE, and not here.
– Hugh
1 hour ago
add a comment |
One vertical straight cut? Or following the curve of the circle?
– Hugh
3 hours ago
Vertical straight cut, yes. Should have clarified!
– user3108295
3 hours ago
Although JohnMark Perry's answer is very funny, this question only has the mathematics tag and does not have the lateral-thinking tag. Based off that, I'm going to say that this belongs in Math.SE, and not here.
– Hugh
1 hour ago
One vertical straight cut? Or following the curve of the circle?
– Hugh
3 hours ago
One vertical straight cut? Or following the curve of the circle?
– Hugh
3 hours ago
Vertical straight cut, yes. Should have clarified!
– user3108295
3 hours ago
Vertical straight cut, yes. Should have clarified!
– user3108295
3 hours ago
Although JohnMark Perry's answer is very funny, this question only has the mathematics tag and does not have the lateral-thinking tag. Based off that, I'm going to say that this belongs in Math.SE, and not here.
– Hugh
1 hour ago
Although JohnMark Perry's answer is very funny, this question only has the mathematics tag and does not have the lateral-thinking tag. Based off that, I'm going to say that this belongs in Math.SE, and not here.
– Hugh
1 hour ago
add a comment |
4 Answers
4
active
oldest
votes
up vote
3
down vote
Place the cake on one side, and then slice down the middle.
Very funny, although I think that this constitutes "trivial"...
– Hugh
1 hour ago
add a comment |
up vote
1
down vote
Assuming that we are making a cut that is perpendicular to the line that bisects the angle at the centre of the slice, here is the general solution.
Note that we can simply look at the slice from above, and make a cut such that the areas on both sides of the cut are identical.
First, we can say that the area of the slice is $frac{pi{}R^2}{s}$, where $R$ represents the radius of the circle which we are slicing, and $s$ represents the number of slices we are cutting the circle into.
Additionally, the angle subtended by the "sides" of our slice is $frac{360}{s}^{circ}$, or $frac{2pi}{s} textrm{rad}$. We can use $theta$ to represent this angle.
Next, we make our "cut", and we call the distance from the ends of the cut to the origin $r$. Since the 'inner' piece is a triangle where we know the lengths of two sides and an angle, we can use the formula for the area of an SAS triangle $frac{absin{C}}{2}$. Therefore, the area of our 'inner' piece is $frac{r^2sin{theta}}{2}$.
We can then subtract the area of the 'inner' piece from the area of the whole slice to obtain the area of our 'outer' piece; $frac{pi{}R^2}{s} - frac{r^2sin{theta}}{2}$.
Next, we set our two areas equal to each other, and solve for $r$, the distance from the end of the cut to the origin.
$frac{r^2sin{theta}}{2} = frac{pi{}R^2}{s} - frac{r^2sin{theta}}{2}$
$2frac{r^2sin{theta}}{2} = frac{pi{}R^2}{s}$
$r^2sin{theta} = frac{pi{}R^2}{s}$
$r^2 = frac{frac{pi{}R^2}{s}}{sin{theta}} = frac{pi{}R^2}{ssin{theta}}$
$r = sqrt{frac{pi{}R^2}{ssin{theta}}}$, where $R$ represents the radius of the circle (or cake), $s$ represents the number of slices into which we cut the circle (or cake), and $theta$ represents the the angle subtended by the "sides" of our slice.
In the specific case asked in the question, the radius of the slice ($R$) is $15$cm and the number of slices ($s$) is $8$.
$theta = frac{360}{8} = 45^{circ}$
$r = sqrt{frac{pi{}15^2}{8sin{45^{circ}}}} = sqrt{frac{225pi}{8sin{45^{circ}}}} approx 11.1783756707$
Therefore, the cut that divides the pie into two equal slices goes through the two points that are roughly $11.17$ cm from the origin.
add a comment |
up vote
0
down vote
For $n geq 8:$
Viewing the tip of the slice as the origin and following one edge of the slice, we are trying the find the distance $x$ from the origin in which a perpendicular cut would give two pieces with same area. A perpendicular cut on the slice would result in one piece being a right triangle, so the question is now to find the cut which would give a triangle with area that is half of the slice.
$A_{cake} = pi r^2$
$A_{slice} = frac{A_{cake}}{n}$
$theta_{slice} = frac{360^circ}{n}$
$A_{halfSlice} = xy$, where $x$ is the distance from the origin, and $y$ is the length of the cut. After finding $y$, we can then put $A_{halfSlice}$ in terms of $x$:
$y = xtan(theta_{slice})$
$A_{halfSlice} = x^2tan(theta_{slice})$
Finally, we can solve for $x$, given that we know that $A_{halfSlice} = frac{A_{slice}}{2}$:
$frac{pi r^2}{2n} = x^2tan(theta_{slice})$
$x = frac{sqrt{frac{pi}{2}}r}{sqrt{n}sqrt{tan(theta_{slice})}}$
So for $n=8$ and $r=15cm$, we get $x approx 6.6467cm$.
Still unsure about $n$ below 8 though...
New contributor
NigelMNZ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
0
down vote
Note: The "down the middle" solution is just one of the two trivial solutions. Viewn in 3D you can also cut it at half the height. But, assuming it's a layered cake without special toppings and both partitions shall have the same amount of each layer, it's of course more complicated! :P
The area $A$ in top-down view of a full cake of diameter $r$ is: $A = pi * r^2$ and each of $N$ equally sized partitions has therefore an area of $A_{part}=frac{pi*r²}{N}$. We want to split one of the partitions into two parts, which have the same area. Hence, each part must have an area of $frac{A_{part}}{2}$. The part which was in the middle of the cake will have the shape of a isosceles triangle, which means two sides and two angles are the same. The third angle (in the middle) of this triangle is $alpha=frac{360°}{N}$. It's area is defined by $A = frac{a^2}{2} sin(alpha)$ ($a$ being the length of the equal sides). We want this area to be equal to $frac{A_{part}}{2}$. Therefore we need to solve: $frac{pi r^2}{2 N} = frac{a²}{2}sin(frac{360°}{N})$ for $a$. The solution to this is: $a = sqrt{frac{pi r^2}{N sin(frac{360°}{N})}}$. For $N=8$ and $r=15cm$ the solution is: $a = sqrt{frac{pi (15cm)^2}{8 sin(frac{360°}{8})}} = 11.664 cm$. Hence the cut needs to be made in a distance of a bit more than 11.664 cm measured along the side of the piece starting at the tip.
New contributor
SDwarfs is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
Place the cake on one side, and then slice down the middle.
Very funny, although I think that this constitutes "trivial"...
– Hugh
1 hour ago
add a comment |
up vote
3
down vote
Place the cake on one side, and then slice down the middle.
Very funny, although I think that this constitutes "trivial"...
– Hugh
1 hour ago
add a comment |
up vote
3
down vote
up vote
3
down vote
Place the cake on one side, and then slice down the middle.
Place the cake on one side, and then slice down the middle.
answered 2 hours ago
JonMark Perry
16.5k63279
16.5k63279
Very funny, although I think that this constitutes "trivial"...
– Hugh
1 hour ago
add a comment |
Very funny, although I think that this constitutes "trivial"...
– Hugh
1 hour ago
Very funny, although I think that this constitutes "trivial"...
– Hugh
1 hour ago
Very funny, although I think that this constitutes "trivial"...
– Hugh
1 hour ago
add a comment |
up vote
1
down vote
Assuming that we are making a cut that is perpendicular to the line that bisects the angle at the centre of the slice, here is the general solution.
Note that we can simply look at the slice from above, and make a cut such that the areas on both sides of the cut are identical.
First, we can say that the area of the slice is $frac{pi{}R^2}{s}$, where $R$ represents the radius of the circle which we are slicing, and $s$ represents the number of slices we are cutting the circle into.
Additionally, the angle subtended by the "sides" of our slice is $frac{360}{s}^{circ}$, or $frac{2pi}{s} textrm{rad}$. We can use $theta$ to represent this angle.
Next, we make our "cut", and we call the distance from the ends of the cut to the origin $r$. Since the 'inner' piece is a triangle where we know the lengths of two sides and an angle, we can use the formula for the area of an SAS triangle $frac{absin{C}}{2}$. Therefore, the area of our 'inner' piece is $frac{r^2sin{theta}}{2}$.
We can then subtract the area of the 'inner' piece from the area of the whole slice to obtain the area of our 'outer' piece; $frac{pi{}R^2}{s} - frac{r^2sin{theta}}{2}$.
Next, we set our two areas equal to each other, and solve for $r$, the distance from the end of the cut to the origin.
$frac{r^2sin{theta}}{2} = frac{pi{}R^2}{s} - frac{r^2sin{theta}}{2}$
$2frac{r^2sin{theta}}{2} = frac{pi{}R^2}{s}$
$r^2sin{theta} = frac{pi{}R^2}{s}$
$r^2 = frac{frac{pi{}R^2}{s}}{sin{theta}} = frac{pi{}R^2}{ssin{theta}}$
$r = sqrt{frac{pi{}R^2}{ssin{theta}}}$, where $R$ represents the radius of the circle (or cake), $s$ represents the number of slices into which we cut the circle (or cake), and $theta$ represents the the angle subtended by the "sides" of our slice.
In the specific case asked in the question, the radius of the slice ($R$) is $15$cm and the number of slices ($s$) is $8$.
$theta = frac{360}{8} = 45^{circ}$
$r = sqrt{frac{pi{}15^2}{8sin{45^{circ}}}} = sqrt{frac{225pi}{8sin{45^{circ}}}} approx 11.1783756707$
Therefore, the cut that divides the pie into two equal slices goes through the two points that are roughly $11.17$ cm from the origin.
add a comment |
up vote
1
down vote
Assuming that we are making a cut that is perpendicular to the line that bisects the angle at the centre of the slice, here is the general solution.
Note that we can simply look at the slice from above, and make a cut such that the areas on both sides of the cut are identical.
First, we can say that the area of the slice is $frac{pi{}R^2}{s}$, where $R$ represents the radius of the circle which we are slicing, and $s$ represents the number of slices we are cutting the circle into.
Additionally, the angle subtended by the "sides" of our slice is $frac{360}{s}^{circ}$, or $frac{2pi}{s} textrm{rad}$. We can use $theta$ to represent this angle.
Next, we make our "cut", and we call the distance from the ends of the cut to the origin $r$. Since the 'inner' piece is a triangle where we know the lengths of two sides and an angle, we can use the formula for the area of an SAS triangle $frac{absin{C}}{2}$. Therefore, the area of our 'inner' piece is $frac{r^2sin{theta}}{2}$.
We can then subtract the area of the 'inner' piece from the area of the whole slice to obtain the area of our 'outer' piece; $frac{pi{}R^2}{s} - frac{r^2sin{theta}}{2}$.
Next, we set our two areas equal to each other, and solve for $r$, the distance from the end of the cut to the origin.
$frac{r^2sin{theta}}{2} = frac{pi{}R^2}{s} - frac{r^2sin{theta}}{2}$
$2frac{r^2sin{theta}}{2} = frac{pi{}R^2}{s}$
$r^2sin{theta} = frac{pi{}R^2}{s}$
$r^2 = frac{frac{pi{}R^2}{s}}{sin{theta}} = frac{pi{}R^2}{ssin{theta}}$
$r = sqrt{frac{pi{}R^2}{ssin{theta}}}$, where $R$ represents the radius of the circle (or cake), $s$ represents the number of slices into which we cut the circle (or cake), and $theta$ represents the the angle subtended by the "sides" of our slice.
In the specific case asked in the question, the radius of the slice ($R$) is $15$cm and the number of slices ($s$) is $8$.
$theta = frac{360}{8} = 45^{circ}$
$r = sqrt{frac{pi{}15^2}{8sin{45^{circ}}}} = sqrt{frac{225pi}{8sin{45^{circ}}}} approx 11.1783756707$
Therefore, the cut that divides the pie into two equal slices goes through the two points that are roughly $11.17$ cm from the origin.
add a comment |
up vote
1
down vote
up vote
1
down vote
Assuming that we are making a cut that is perpendicular to the line that bisects the angle at the centre of the slice, here is the general solution.
Note that we can simply look at the slice from above, and make a cut such that the areas on both sides of the cut are identical.
First, we can say that the area of the slice is $frac{pi{}R^2}{s}$, where $R$ represents the radius of the circle which we are slicing, and $s$ represents the number of slices we are cutting the circle into.
Additionally, the angle subtended by the "sides" of our slice is $frac{360}{s}^{circ}$, or $frac{2pi}{s} textrm{rad}$. We can use $theta$ to represent this angle.
Next, we make our "cut", and we call the distance from the ends of the cut to the origin $r$. Since the 'inner' piece is a triangle where we know the lengths of two sides and an angle, we can use the formula for the area of an SAS triangle $frac{absin{C}}{2}$. Therefore, the area of our 'inner' piece is $frac{r^2sin{theta}}{2}$.
We can then subtract the area of the 'inner' piece from the area of the whole slice to obtain the area of our 'outer' piece; $frac{pi{}R^2}{s} - frac{r^2sin{theta}}{2}$.
Next, we set our two areas equal to each other, and solve for $r$, the distance from the end of the cut to the origin.
$frac{r^2sin{theta}}{2} = frac{pi{}R^2}{s} - frac{r^2sin{theta}}{2}$
$2frac{r^2sin{theta}}{2} = frac{pi{}R^2}{s}$
$r^2sin{theta} = frac{pi{}R^2}{s}$
$r^2 = frac{frac{pi{}R^2}{s}}{sin{theta}} = frac{pi{}R^2}{ssin{theta}}$
$r = sqrt{frac{pi{}R^2}{ssin{theta}}}$, where $R$ represents the radius of the circle (or cake), $s$ represents the number of slices into which we cut the circle (or cake), and $theta$ represents the the angle subtended by the "sides" of our slice.
In the specific case asked in the question, the radius of the slice ($R$) is $15$cm and the number of slices ($s$) is $8$.
$theta = frac{360}{8} = 45^{circ}$
$r = sqrt{frac{pi{}15^2}{8sin{45^{circ}}}} = sqrt{frac{225pi}{8sin{45^{circ}}}} approx 11.1783756707$
Therefore, the cut that divides the pie into two equal slices goes through the two points that are roughly $11.17$ cm from the origin.
Assuming that we are making a cut that is perpendicular to the line that bisects the angle at the centre of the slice, here is the general solution.
Note that we can simply look at the slice from above, and make a cut such that the areas on both sides of the cut are identical.
First, we can say that the area of the slice is $frac{pi{}R^2}{s}$, where $R$ represents the radius of the circle which we are slicing, and $s$ represents the number of slices we are cutting the circle into.
Additionally, the angle subtended by the "sides" of our slice is $frac{360}{s}^{circ}$, or $frac{2pi}{s} textrm{rad}$. We can use $theta$ to represent this angle.
Next, we make our "cut", and we call the distance from the ends of the cut to the origin $r$. Since the 'inner' piece is a triangle where we know the lengths of two sides and an angle, we can use the formula for the area of an SAS triangle $frac{absin{C}}{2}$. Therefore, the area of our 'inner' piece is $frac{r^2sin{theta}}{2}$.
We can then subtract the area of the 'inner' piece from the area of the whole slice to obtain the area of our 'outer' piece; $frac{pi{}R^2}{s} - frac{r^2sin{theta}}{2}$.
Next, we set our two areas equal to each other, and solve for $r$, the distance from the end of the cut to the origin.
$frac{r^2sin{theta}}{2} = frac{pi{}R^2}{s} - frac{r^2sin{theta}}{2}$
$2frac{r^2sin{theta}}{2} = frac{pi{}R^2}{s}$
$r^2sin{theta} = frac{pi{}R^2}{s}$
$r^2 = frac{frac{pi{}R^2}{s}}{sin{theta}} = frac{pi{}R^2}{ssin{theta}}$
$r = sqrt{frac{pi{}R^2}{ssin{theta}}}$, where $R$ represents the radius of the circle (or cake), $s$ represents the number of slices into which we cut the circle (or cake), and $theta$ represents the the angle subtended by the "sides" of our slice.
In the specific case asked in the question, the radius of the slice ($R$) is $15$cm and the number of slices ($s$) is $8$.
$theta = frac{360}{8} = 45^{circ}$
$r = sqrt{frac{pi{}15^2}{8sin{45^{circ}}}} = sqrt{frac{225pi}{8sin{45^{circ}}}} approx 11.1783756707$
Therefore, the cut that divides the pie into two equal slices goes through the two points that are roughly $11.17$ cm from the origin.
edited 1 hour ago
answered 2 hours ago
Hugh
1,297615
1,297615
add a comment |
add a comment |
up vote
0
down vote
For $n geq 8:$
Viewing the tip of the slice as the origin and following one edge of the slice, we are trying the find the distance $x$ from the origin in which a perpendicular cut would give two pieces with same area. A perpendicular cut on the slice would result in one piece being a right triangle, so the question is now to find the cut which would give a triangle with area that is half of the slice.
$A_{cake} = pi r^2$
$A_{slice} = frac{A_{cake}}{n}$
$theta_{slice} = frac{360^circ}{n}$
$A_{halfSlice} = xy$, where $x$ is the distance from the origin, and $y$ is the length of the cut. After finding $y$, we can then put $A_{halfSlice}$ in terms of $x$:
$y = xtan(theta_{slice})$
$A_{halfSlice} = x^2tan(theta_{slice})$
Finally, we can solve for $x$, given that we know that $A_{halfSlice} = frac{A_{slice}}{2}$:
$frac{pi r^2}{2n} = x^2tan(theta_{slice})$
$x = frac{sqrt{frac{pi}{2}}r}{sqrt{n}sqrt{tan(theta_{slice})}}$
So for $n=8$ and $r=15cm$, we get $x approx 6.6467cm$.
Still unsure about $n$ below 8 though...
New contributor
NigelMNZ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
0
down vote
For $n geq 8:$
Viewing the tip of the slice as the origin and following one edge of the slice, we are trying the find the distance $x$ from the origin in which a perpendicular cut would give two pieces with same area. A perpendicular cut on the slice would result in one piece being a right triangle, so the question is now to find the cut which would give a triangle with area that is half of the slice.
$A_{cake} = pi r^2$
$A_{slice} = frac{A_{cake}}{n}$
$theta_{slice} = frac{360^circ}{n}$
$A_{halfSlice} = xy$, where $x$ is the distance from the origin, and $y$ is the length of the cut. After finding $y$, we can then put $A_{halfSlice}$ in terms of $x$:
$y = xtan(theta_{slice})$
$A_{halfSlice} = x^2tan(theta_{slice})$
Finally, we can solve for $x$, given that we know that $A_{halfSlice} = frac{A_{slice}}{2}$:
$frac{pi r^2}{2n} = x^2tan(theta_{slice})$
$x = frac{sqrt{frac{pi}{2}}r}{sqrt{n}sqrt{tan(theta_{slice})}}$
So for $n=8$ and $r=15cm$, we get $x approx 6.6467cm$.
Still unsure about $n$ below 8 though...
New contributor
NigelMNZ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
0
down vote
up vote
0
down vote
For $n geq 8:$
Viewing the tip of the slice as the origin and following one edge of the slice, we are trying the find the distance $x$ from the origin in which a perpendicular cut would give two pieces with same area. A perpendicular cut on the slice would result in one piece being a right triangle, so the question is now to find the cut which would give a triangle with area that is half of the slice.
$A_{cake} = pi r^2$
$A_{slice} = frac{A_{cake}}{n}$
$theta_{slice} = frac{360^circ}{n}$
$A_{halfSlice} = xy$, where $x$ is the distance from the origin, and $y$ is the length of the cut. After finding $y$, we can then put $A_{halfSlice}$ in terms of $x$:
$y = xtan(theta_{slice})$
$A_{halfSlice} = x^2tan(theta_{slice})$
Finally, we can solve for $x$, given that we know that $A_{halfSlice} = frac{A_{slice}}{2}$:
$frac{pi r^2}{2n} = x^2tan(theta_{slice})$
$x = frac{sqrt{frac{pi}{2}}r}{sqrt{n}sqrt{tan(theta_{slice})}}$
So for $n=8$ and $r=15cm$, we get $x approx 6.6467cm$.
Still unsure about $n$ below 8 though...
New contributor
NigelMNZ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
For $n geq 8:$
Viewing the tip of the slice as the origin and following one edge of the slice, we are trying the find the distance $x$ from the origin in which a perpendicular cut would give two pieces with same area. A perpendicular cut on the slice would result in one piece being a right triangle, so the question is now to find the cut which would give a triangle with area that is half of the slice.
$A_{cake} = pi r^2$
$A_{slice} = frac{A_{cake}}{n}$
$theta_{slice} = frac{360^circ}{n}$
$A_{halfSlice} = xy$, where $x$ is the distance from the origin, and $y$ is the length of the cut. After finding $y$, we can then put $A_{halfSlice}$ in terms of $x$:
$y = xtan(theta_{slice})$
$A_{halfSlice} = x^2tan(theta_{slice})$
Finally, we can solve for $x$, given that we know that $A_{halfSlice} = frac{A_{slice}}{2}$:
$frac{pi r^2}{2n} = x^2tan(theta_{slice})$
$x = frac{sqrt{frac{pi}{2}}r}{sqrt{n}sqrt{tan(theta_{slice})}}$
So for $n=8$ and $r=15cm$, we get $x approx 6.6467cm$.
Still unsure about $n$ below 8 though...
New contributor
NigelMNZ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 2 hours ago
New contributor
NigelMNZ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered 2 hours ago
NigelMNZ
384
384
New contributor
NigelMNZ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
NigelMNZ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
NigelMNZ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
up vote
0
down vote
Note: The "down the middle" solution is just one of the two trivial solutions. Viewn in 3D you can also cut it at half the height. But, assuming it's a layered cake without special toppings and both partitions shall have the same amount of each layer, it's of course more complicated! :P
The area $A$ in top-down view of a full cake of diameter $r$ is: $A = pi * r^2$ and each of $N$ equally sized partitions has therefore an area of $A_{part}=frac{pi*r²}{N}$. We want to split one of the partitions into two parts, which have the same area. Hence, each part must have an area of $frac{A_{part}}{2}$. The part which was in the middle of the cake will have the shape of a isosceles triangle, which means two sides and two angles are the same. The third angle (in the middle) of this triangle is $alpha=frac{360°}{N}$. It's area is defined by $A = frac{a^2}{2} sin(alpha)$ ($a$ being the length of the equal sides). We want this area to be equal to $frac{A_{part}}{2}$. Therefore we need to solve: $frac{pi r^2}{2 N} = frac{a²}{2}sin(frac{360°}{N})$ for $a$. The solution to this is: $a = sqrt{frac{pi r^2}{N sin(frac{360°}{N})}}$. For $N=8$ and $r=15cm$ the solution is: $a = sqrt{frac{pi (15cm)^2}{8 sin(frac{360°}{8})}} = 11.664 cm$. Hence the cut needs to be made in a distance of a bit more than 11.664 cm measured along the side of the piece starting at the tip.
New contributor
SDwarfs is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
0
down vote
Note: The "down the middle" solution is just one of the two trivial solutions. Viewn in 3D you can also cut it at half the height. But, assuming it's a layered cake without special toppings and both partitions shall have the same amount of each layer, it's of course more complicated! :P
The area $A$ in top-down view of a full cake of diameter $r$ is: $A = pi * r^2$ and each of $N$ equally sized partitions has therefore an area of $A_{part}=frac{pi*r²}{N}$. We want to split one of the partitions into two parts, which have the same area. Hence, each part must have an area of $frac{A_{part}}{2}$. The part which was in the middle of the cake will have the shape of a isosceles triangle, which means two sides and two angles are the same. The third angle (in the middle) of this triangle is $alpha=frac{360°}{N}$. It's area is defined by $A = frac{a^2}{2} sin(alpha)$ ($a$ being the length of the equal sides). We want this area to be equal to $frac{A_{part}}{2}$. Therefore we need to solve: $frac{pi r^2}{2 N} = frac{a²}{2}sin(frac{360°}{N})$ for $a$. The solution to this is: $a = sqrt{frac{pi r^2}{N sin(frac{360°}{N})}}$. For $N=8$ and $r=15cm$ the solution is: $a = sqrt{frac{pi (15cm)^2}{8 sin(frac{360°}{8})}} = 11.664 cm$. Hence the cut needs to be made in a distance of a bit more than 11.664 cm measured along the side of the piece starting at the tip.
New contributor
SDwarfs is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
0
down vote
up vote
0
down vote
Note: The "down the middle" solution is just one of the two trivial solutions. Viewn in 3D you can also cut it at half the height. But, assuming it's a layered cake without special toppings and both partitions shall have the same amount of each layer, it's of course more complicated! :P
The area $A$ in top-down view of a full cake of diameter $r$ is: $A = pi * r^2$ and each of $N$ equally sized partitions has therefore an area of $A_{part}=frac{pi*r²}{N}$. We want to split one of the partitions into two parts, which have the same area. Hence, each part must have an area of $frac{A_{part}}{2}$. The part which was in the middle of the cake will have the shape of a isosceles triangle, which means two sides and two angles are the same. The third angle (in the middle) of this triangle is $alpha=frac{360°}{N}$. It's area is defined by $A = frac{a^2}{2} sin(alpha)$ ($a$ being the length of the equal sides). We want this area to be equal to $frac{A_{part}}{2}$. Therefore we need to solve: $frac{pi r^2}{2 N} = frac{a²}{2}sin(frac{360°}{N})$ for $a$. The solution to this is: $a = sqrt{frac{pi r^2}{N sin(frac{360°}{N})}}$. For $N=8$ and $r=15cm$ the solution is: $a = sqrt{frac{pi (15cm)^2}{8 sin(frac{360°}{8})}} = 11.664 cm$. Hence the cut needs to be made in a distance of a bit more than 11.664 cm measured along the side of the piece starting at the tip.
New contributor
SDwarfs is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Note: The "down the middle" solution is just one of the two trivial solutions. Viewn in 3D you can also cut it at half the height. But, assuming it's a layered cake without special toppings and both partitions shall have the same amount of each layer, it's of course more complicated! :P
The area $A$ in top-down view of a full cake of diameter $r$ is: $A = pi * r^2$ and each of $N$ equally sized partitions has therefore an area of $A_{part}=frac{pi*r²}{N}$. We want to split one of the partitions into two parts, which have the same area. Hence, each part must have an area of $frac{A_{part}}{2}$. The part which was in the middle of the cake will have the shape of a isosceles triangle, which means two sides and two angles are the same. The third angle (in the middle) of this triangle is $alpha=frac{360°}{N}$. It's area is defined by $A = frac{a^2}{2} sin(alpha)$ ($a$ being the length of the equal sides). We want this area to be equal to $frac{A_{part}}{2}$. Therefore we need to solve: $frac{pi r^2}{2 N} = frac{a²}{2}sin(frac{360°}{N})$ for $a$. The solution to this is: $a = sqrt{frac{pi r^2}{N sin(frac{360°}{N})}}$. For $N=8$ and $r=15cm$ the solution is: $a = sqrt{frac{pi (15cm)^2}{8 sin(frac{360°}{8})}} = 11.664 cm$. Hence the cut needs to be made in a distance of a bit more than 11.664 cm measured along the side of the piece starting at the tip.
New contributor
SDwarfs is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
SDwarfs is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered 45 mins ago
SDwarfs
1263
1263
New contributor
SDwarfs is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
SDwarfs is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
SDwarfs is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
user3108295 is a new contributor. Be nice, and check out our Code of Conduct.
user3108295 is a new contributor. Be nice, and check out our Code of Conduct.
user3108295 is a new contributor. Be nice, and check out our Code of Conduct.
user3108295 is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Puzzling Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fpuzzling.stackexchange.com%2fquestions%2f76216%2fcutting-a-slice-of-cake-into-two%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
One vertical straight cut? Or following the curve of the circle?
– Hugh
3 hours ago
Vertical straight cut, yes. Should have clarified!
– user3108295
3 hours ago
Although JohnMark Perry's answer is very funny, this question only has the mathematics tag and does not have the lateral-thinking tag. Based off that, I'm going to say that this belongs in Math.SE, and not here.
– Hugh
1 hour ago