A cone is glued to a hemisphere. When you place it on a table in what position does it come to rest?
Alexander went on to say...
After some asking around, I was told there is no closed form for that. A small computer program that looks like this: double overhang = 0; double brickWidth = 20; double maxOverhang = 100; double numBricks = 0; while (overhang < maxOverhang){ numBricks = numBricks+1; overhang = overhang+brickWidth/(2*numBricks); } returns 12367 as the number of bricks needed to make an overhang of 1m, making its height 12367*10cm = 1,236.7m Since 1+1/2+1/3+...+1/n doesn't converge, you can make the overhang as big as you wish (I'm not gonna go into counting how much material for those bricks is needed and if there's enough of it in the universe :-) )
After some asking around, I was told there is no closed form for that. A small computer program that looks like this:
double overhang = 0; double brickWidth = 20; double maxOverhang = 100; double numBricks = 0; while (overhang < maxOverhang){ numBricks = numBricks+1; overhang = overhang+brickWidth/(2*numBricks); }