joshmaxsilverman.bsky.social
joshmaxsilverman.bsky.social
@joshmaxsilverman.bsky.social
for more details, and my calculation of the setup questions, see joshmaxsilverman.github.io/2025-07-22-f... @xaqwg.bsky.social
Can you meet me at the mall?
What is the greatest number of friends you're likely to meet if everyone fails to coordinate?
joshmaxsilverman.github.io
July 23, 2025 at 1:10 AM
the two approximations i make point in opposing directions, so it makes sense that they somewhat cancel, but the result seems too good for coincidence. i suspect it is a glimpse of a deeper calculation that takes into account the time correlation of the excitations.
July 23, 2025 at 1:10 AM
this captures the behavior closely, starting at about 10 friends.
July 23, 2025 at 1:10 AM
i then asked, at what k would we expect such an excitation to spawn once in an hour. this led to a remarkable formula for the excitation δ = (k-μ)
July 23, 2025 at 1:10 AM
on average we'd expect N/4 friends in any 15 min interval. to probe the extremes, I made the approximation that each interval is an independent poisson process. I calculated the probability that such a window would have an excitation to k friends, and found the expected lifetime of such an interval.
July 23, 2025 at 1:10 AM
glad to pay you back for your non-vector solution to the tilted plot problem.
May 26, 2025 at 9:05 PM
interestingly, the probability of a river of length ℓ is well approximated by the naive approximation times an extra factor of 2/9
May 26, 2025 at 8:52 PM
with this in hand, we can calculate the probability that the river has length ℓ
May 26, 2025 at 8:52 PM
this oscillates around the long-distance value 2/9 before settling down
May 26, 2025 at 8:52 PM
using generating functions, we can find an exact expression for the chance position ℓ is a space
May 26, 2025 at 8:52 PM
with this in hand, we can calculate the chance of a length ℓ river like
May 26, 2025 at 8:52 PM
the chance position ℓ has a space is the chance position (ℓ-4) was a space times the chance a 3-letter word was used plus the chance position (ℓ-5) was a space times the chance a 4-letter word was used.
May 26, 2025 at 8:52 PM
each line is very long, so we can just find the probability the a given line has a space at position ℓ.
May 26, 2025 at 8:52 PM
for the puzzle depicted, this is just 2*2*4*4*6*^ = 2,304 and in general, for an L-layer puzzle it is
May 19, 2025 at 2:22 PM
paths from one node to another in a flat layer are unique, so sidestepping doesn't change the multiplicity. a path can enter/exit a layer at any node. since two edges emerge from any given node, the number of paths is just the product of the number of edges emerging at each layer.
May 19, 2025 at 2:22 PM
we are also given a 2D version of the problem, which can be done with the same computational approach but can also be done analytically.
May 19, 2025 at 2:22 PM
putting it all together, we can run Ω(bottom point) which gives 1,093,007,025 for the 7-layer bipyramid.
May 19, 2025 at 2:22 PM
within a layer, pick a corner and call it row = 0, index = 0. all nodes can therefore be labelled by their row, index, and layer. in this scheme, vertical neighbors of node (r,i,l) in the upper half are ((r,i,l-1), (r-1,i,l-1), (r-1,i-1,l-1)) with the row/index shifts reversed in the lower half.
May 19, 2025 at 2:22 PM
finally we can find T(i<-j, l) by searching within the layer. this leaves determining the vertical neighbors for any given node which can be seen by overlaying one layer of the pyramid on the one below.
May 19, 2025 at 2:22 PM
we can find the number of ways to enter a layer at node i as the sum of ways to exit the last layer from one of its neighbors
May 19, 2025 at 2:22 PM
at each layer, a path enters at a node, and moves to exit from any other node. therefore, the number of ways Ω(i) to exit a layer from node i is the number of ways W(j) to enter the layer at node j times the number of ways to move from j to i within their layer, without repeating an edge T(i <- j)
May 19, 2025 at 2:22 PM