Given n disks that intersect, there is a shape in the space where they intersect. Given that, what is the longest chord, more generally longest line, that can be drawn in this space? For n=1, this is the diameter For n=2, the result can be found on wolfram
What is the result for n>2? Bounds, estimates, and closed form equations will get you the bounty. Algorithms that don't guess can also get you the bounty. And I've already read Longest chord inside the intersection area of three circles.
I'm going to use this result to find appropriate diameters for covers that are the union of an arbitrary number of circles. Specifically this can be used to estimate the Hausdorff measures and dimensions of fractals. So if you have a suggestion for doing that, I'd appreciate it. If you know exactly what I'm talking about at this point, you could suggest I use a different shape, such as a square or oval, since it would give an easier equation.

With 2 circles there are three relevant configurations:
Adding another, N-th circle can have each of the 3 configurations with respect to all the other circles, for a total of $3^{N(N-1)/2}$ configurations with up to $N(N+1)$ intersection points. Simply determining which case you have at hand is bothersome and any analytical plug&chug formula where you just use all the center positions and radii would be ridiculously long and inefficient.
Lets use your example (positions (2,2);(-4,-4);(1,3);(3,2);(-1,-1) and the
diameterradius of each circle is 5 (with a diameter of 5 the solution is trivial since there is no overlap)) and find the solution manually.If the radii are all different then it gets more complicated but the general idea is the same, and here is a sketch that will hopefully clarify what i am talking about
