Question inspired from Matt's video, The bubble that break maths
Bubble shape is a cosh function: $\quad y = a \cosh((x-b)/a) $
With symmetry, we can reduce formula to: $ (R/r) = \cosh(H/r) $
where r = bubble minimum radius, R = bubble maximum radius
To simplify further, let $x = H/r\,,\,k = H/R :$
$x\,/\,k = \cosh(x)\quad\quad→ k = x\,/\cosh(x) $
Bubble will burst when $k > max(x/\cosh(x)) = 0.66274\,34193\,...$
This limited domain of $x = [0\,, 1.1996\, 78640\,...]$
Solving x from k is trivial, if we use iterations, say, Newton's method.
But, if we only need 3 digits accuracy, can we have a direct formula ?
Here is my attempt, by fitting a quadratic, and back solve for x
Points at x = 0.0, 0.4, 1.2:
$k ≈ -0.46590\,x^2 + 1.1114\,x$
$x ≈ 1.1927 - \sqrt{1.4225 - 2.1464\,k}$
Using Matts video example: $x|_{k = {0.25\over0.534}} ≈ 0.5465$
Convert back to bubble minimum radius: $r = {H \over x} ≈ {0.25 \over 0.5465} ≈ 0.4575$ meter
Actual minimum radius is 0.4652 meter, error of 1.7%
We can fit more points, but solving for k will involve solving for cubic (or higher) roots.
Any idea ?
Empirical model
Based on observation a simple model could be $$x=x_*-\sum_{n=1}^m a_n (k_*-k)^{\frac n 2}$$ where $$x_*=1.1996786402577338339 \qquad \text{and}\qquad k_0=0.66274341934918158097$$
Using $m=4$, we have $R^2 > 0.9999999$ and, as shown below, the parameters are highly significant $$\begin{array}{llll} \text{} & \text{ Estimate} & \text{Std Error} & \text{Confidence Interval} \\ a_1 & +1.7259717 & 0.000259 & \{+1.725464,+1.726480\} \\ a_2 & -0.7108628 & 0.001734 & \{-0.714265,-0.707461\} \\ a_3 & +0.4140864 & 0.003610 & \{+0.407005,+0.421168\} \\ a_4 & +0.0944479 & 0.002348 & \{+0.089842,+0.099054\} \\ \end{array}$$
Making the coefficients rational (just to look nicer) $$a_1=\frac{844}{489} \qquad a_2=-\frac{445}{626} \qquad a_3=\frac{535}{1292} \qquad a_4=\frac{131}{1387}$$ Now, some results $$\left( \begin{array}{ccc} k & x_{\text{est}} & x_{\text{sol}}\\ 0.00 & 0.000803 & 0.000000 \\ 0.05 & 0.050126 & 0.050063 \\ 0.10 & 0.100237 & 0.100505 \\ 0.15 & 0.151403 & 0.151730 \\ 0.20 & 0.203958 & 0.204184 \\ 0.25 & 0.258338 & 0.258392 \\ 0.30 & 0.315123 & 0.315008 \\ 0.35 & 0.375113 & 0.374883 \\ 0.40 & 0.439457 & 0.439204 \\ 0.45 & 0.509914 & 0.509740 \\ 0.50 & 0.589397 & 0.589388 \\ 0.55 & 0.683413 & 0.683588 \\ 0.60 & 0.805069 & 0.805292 \\ 0.65 & 1.013290 & 1.013080 \end{array} \right)$$
Required accuracy obtained.