Math Challenge by Charles Link #1

In summary, the participants are attempting to solve a challenge that involves finding the remaining volume after drilling three intersecting 1" diameter holes through a cube with each side of length 1". This problem has a closed form solution and can also be solved using numerical methods. Some participants have also referenced the "Steinmetz Solid" in their attempts to solve the problem.
  • #36
Oh, now that I finished my post I saw's Nidum's new beautiful diagrams. Yes, that's what I mean by "prongs". Too bad it's hard to see that their cross-section is square.
Thank you!
 
  • Like
Likes Charles Link
Physics news on Phys.org
  • #37
The cross section of anyone wing at any point along the length is square and the function defining the edge length is a simple geometric one ?
 
  • Like
Likes maline
  • #38
Nidum said:
The cross section of anyone wing at any point along the length is square and the function defining the edge length is a simple geometric one ?
That's right.
 
  • Like
Likes Nidum
  • #39
block with holes cut in half v2 less small cube v1 and slice throgh v1 v1.png
 
  • Like
Likes mfb and maline
  • #43
Here's an imgur album of my work:

http://imgur.com/a/AttQ7

It's not at all rigorous and tidied up, but I believe it easily leads to a solution. I'll type out what is said in my notes and post a more rigorous solution when I'm away from job. I'm too lazy to integrate right now, but I'll leave that up to future Jason and all you people out there.

I decided to integrate the area of the holes from top-down to find the volume of the holes, then double it, then subtract from the volume of the cube. To integrate the area to get a volume of the holes, I just created a coordinate, z, which will parametrize moving from top to the middle of the cube. I will integrate areas of constant z times dz to get the volume.

To better understand what these areas look like, I imagined slices of these figures at constant z. At the z=0 slice, the area is a circle. At the z=r slice, the area is a square. Any slice in between looks like a circle + some curvy triangles, as shown in the images.

Analyzing the area of the circle + the curvy triangles is easy until the triangles begin to meet and overlap. At which point, you have to subtract the overlapping portions from the area. First I will talk about the area before the triangles overlap.

The area of the curvy triangles can be found by integrating some height away from the circle, h(x), times a small piece of dx from 0 to x(z). x is shown in the images, and grows with z. For example, x(z=0) = 0, and x(z=r) = r. x(z) is just the length of the curvy triangle. There area is then the area of a circle plus 8 curvy triangles before they start overlapping.

When the two curvy triangles meet, which is at x = r/(sqrt2), they begin to overlap with each other. The extra area is in the shape of an "L" type figure, which has an area of two rectangles minus a square. The images show how simple it is to find this area and find it using the variables l(z) and s, where l(z) is the length of the square and s is the width of the rectangle. The area then will be the circle, plus the eight curvy triangles when x=r/(sqrt2), plus the 8 rectangles, minus 4 little squares.

So to find the volume, we just integrate these two areas in their proper bounds times dz from z=0 to z=r. This gives us half the volume of the holes, which we then double to find the total volume of the holes. We then subtract this volume from the volume of the cube to find the volume of what's left of the cube.

Cheers y'all, hopefully you can follow it. Good luck with your solutions!EDIT: Found some errors in my work. Will update later when I get to my desktop at home. The procedure should hold true, though.
 
  • #44
How come it is not:

1'' = 2.54cm = diameter

2.54÷2 = Radius = 1.27cm

π(1.27)² = 5.067074... = a₁

(1 side of the squares circular, drill area, which can be substituted from the area of the face of the square):

area of sq.face = 2.54² = 6.4516cm = a₂

a₂ - a₁ = 6.4516 - 5.0670 = 1.3845

Cubing the answer:

1.3845³ = 2.654cm³

The volume leftover from the drill holes in the square is:

2.654÷2.54 = 1.044 cubic inches of cube left over.

Is that correct?
 
  • #45
PhysicsOfLearning said:
The volume leftover from the drill holes in the square is:

2.654÷2.54 = 1.044 cubic inches of cube left over.

Is that correct?

Given that the original cube only has a volume of 1 cubic inch, probably not!

Cubing an area does not give a volume.
 
  • Like
Likes PhysicsOfLearning
  • #46
PeroK said:
Given that the original cube only has a volume of 1 cubic inch, probably not!

Cubing an area does not give a volume.

Oops!

Methodology wrong as well?
 
  • #47
PhysicsOfLearning said:
Oops!

Methodology wrong as well?

Yes. Look at the graphic in post #2 to see what you are dealing with.
 
  • #48
okay I have my answer, the volume of what's left of the cube is...0.0580191... in^3here's an imgur album with my work:
http://imgur.com/a/Xzwjk

agh forgot to say that the 4 pi r^2 should be a pi r^2 obviously. When I evaluated the integral numerically in mathematica I fixed it. Seems I got the right answer from reading the past pages, but less efficiently.
 
  • Like
Likes Biker and Charles Link
  • #49
JasonWuzHear said:
okay I have my answer, the volume of what's left of the cube is...0.0580191... in^3here's an imgur album with my work:
http://imgur.com/a/Xzwjk

agh forgot to say that the 4 pi r^2 should be a pi r^2 obviously. When I evaluated the integral numerically in mathematica I fixed it. Seems I got the right answer from reading the past pages, but less efficiently.
The integrals actually can be computed in closed form to give ## V=1+\sqrt{2}-\frac{3}{4} \pi ##. It might interest you that you can also get a numerical answer with about 15 lines of computer code using 3 nested For-Next loops ("Do" loops) that divide the volume into 100x100x100 parts and using inequalities to test whether a point (tiny cube) lies inside or outside the 3 cylinders. If it lies outside the 3 cylinders, you count ## N=N+1 ##. Once the "Do" Loops have completed all 1,000,000 points, you compute ## V=N/1,000,000 ##. With 1,000,000 points (100 intervals on each Do Loop), you can get an answer accurate to about 3 or 4 decimal places or more.
 
  • Like
Likes JasonWuzHear
  • #50
You can speed up the code by a factor about 4 if you remove one cylinder from the loops. You don't have to add "0" 100 times.
Dividing 1/4 of the cube surface into a 1000x1000 grid and evaluating the length of solid material for one corner for each point should give an even better approximation with a similar computing time.
 
  • Like
Likes JasonWuzHear and Charles Link

Similar threads

  • Math Proof Training and Practice
Replies
13
Views
3K
  • Math Proof Training and Practice
Replies
7
Views
3K
  • Math Proof Training and Practice
Replies
28
Views
6K
  • Math Proof Training and Practice
Replies
18
Views
3K
  • Math Proof Training and Practice
Replies
26
Views
4K
  • Math Proof Training and Practice
Replies
8
Views
2K
  • Math Proof Training and Practice
Replies
8
Views
3K
  • Math Proof Training and Practice
2
Replies
40
Views
14K
  • Math Proof Training and Practice
3
Replies
86
Views
19K
  • Math Proof Training and Practice
2
Replies
57
Views
8K
Back
Top