?

Average Error: 19.2 → 5.9
Time: 13.2s
Precision: binary64
Cost: 20036

?

\[ \begin{array}{c}[V, l] = \mathsf{sort}([V, l])\\ \end{array} \]
\[c0 \cdot \sqrt{\frac{A}{V \cdot \ell}} \]
\[\begin{array}{l} \mathbf{if}\;V \cdot \ell \leq -5 \cdot 10^{-231}:\\ \;\;\;\;\frac{\sqrt{-A}}{\sqrt{\ell} \cdot \sqrt{-V}} \cdot c0\\ \mathbf{elif}\;V \cdot \ell \leq 5 \cdot 10^{-320}:\\ \;\;\;\;\frac{c0}{\frac{\sqrt{\ell}}{\sqrt{\frac{A}{V}}}}\\ \mathbf{elif}\;V \cdot \ell \leq 10^{+299}:\\ \;\;\;\;\frac{c0}{\frac{\sqrt{V \cdot \ell}}{\sqrt{A}}}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{A \cdot \frac{c0}{\frac{V}{\frac{c0}{\ell}}}}\\ \end{array} \]
(FPCore (c0 A V l) :precision binary64 (* c0 (sqrt (/ A (* V l)))))
(FPCore (c0 A V l)
 :precision binary64
 (if (<= (* V l) -5e-231)
   (* (/ (sqrt (- A)) (* (sqrt l) (sqrt (- V)))) c0)
   (if (<= (* V l) 5e-320)
     (/ c0 (/ (sqrt l) (sqrt (/ A V))))
     (if (<= (* V l) 1e+299)
       (/ c0 (/ (sqrt (* V l)) (sqrt A)))
       (sqrt (* A (/ c0 (/ V (/ c0 l)))))))))
double code(double c0, double A, double V, double l) {
	return c0 * sqrt((A / (V * l)));
}
double code(double c0, double A, double V, double l) {
	double tmp;
	if ((V * l) <= -5e-231) {
		tmp = (sqrt(-A) / (sqrt(l) * sqrt(-V))) * c0;
	} else if ((V * l) <= 5e-320) {
		tmp = c0 / (sqrt(l) / sqrt((A / V)));
	} else if ((V * l) <= 1e+299) {
		tmp = c0 / (sqrt((V * l)) / sqrt(A));
	} else {
		tmp = sqrt((A * (c0 / (V / (c0 / l)))));
	}
	return tmp;
}
real(8) function code(c0, a, v, l)
    real(8), intent (in) :: c0
    real(8), intent (in) :: a
    real(8), intent (in) :: v
    real(8), intent (in) :: l
    code = c0 * sqrt((a / (v * l)))
end function
real(8) function code(c0, a, v, l)
    real(8), intent (in) :: c0
    real(8), intent (in) :: a
    real(8), intent (in) :: v
    real(8), intent (in) :: l
    real(8) :: tmp
    if ((v * l) <= (-5d-231)) then
        tmp = (sqrt(-a) / (sqrt(l) * sqrt(-v))) * c0
    else if ((v * l) <= 5d-320) then
        tmp = c0 / (sqrt(l) / sqrt((a / v)))
    else if ((v * l) <= 1d+299) then
        tmp = c0 / (sqrt((v * l)) / sqrt(a))
    else
        tmp = sqrt((a * (c0 / (v / (c0 / l)))))
    end if
    code = tmp
end function
public static double code(double c0, double A, double V, double l) {
	return c0 * Math.sqrt((A / (V * l)));
}
public static double code(double c0, double A, double V, double l) {
	double tmp;
	if ((V * l) <= -5e-231) {
		tmp = (Math.sqrt(-A) / (Math.sqrt(l) * Math.sqrt(-V))) * c0;
	} else if ((V * l) <= 5e-320) {
		tmp = c0 / (Math.sqrt(l) / Math.sqrt((A / V)));
	} else if ((V * l) <= 1e+299) {
		tmp = c0 / (Math.sqrt((V * l)) / Math.sqrt(A));
	} else {
		tmp = Math.sqrt((A * (c0 / (V / (c0 / l)))));
	}
	return tmp;
}
def code(c0, A, V, l):
	return c0 * math.sqrt((A / (V * l)))
def code(c0, A, V, l):
	tmp = 0
	if (V * l) <= -5e-231:
		tmp = (math.sqrt(-A) / (math.sqrt(l) * math.sqrt(-V))) * c0
	elif (V * l) <= 5e-320:
		tmp = c0 / (math.sqrt(l) / math.sqrt((A / V)))
	elif (V * l) <= 1e+299:
		tmp = c0 / (math.sqrt((V * l)) / math.sqrt(A))
	else:
		tmp = math.sqrt((A * (c0 / (V / (c0 / l)))))
	return tmp
function code(c0, A, V, l)
	return Float64(c0 * sqrt(Float64(A / Float64(V * l))))
end
function code(c0, A, V, l)
	tmp = 0.0
	if (Float64(V * l) <= -5e-231)
		tmp = Float64(Float64(sqrt(Float64(-A)) / Float64(sqrt(l) * sqrt(Float64(-V)))) * c0);
	elseif (Float64(V * l) <= 5e-320)
		tmp = Float64(c0 / Float64(sqrt(l) / sqrt(Float64(A / V))));
	elseif (Float64(V * l) <= 1e+299)
		tmp = Float64(c0 / Float64(sqrt(Float64(V * l)) / sqrt(A)));
	else
		tmp = sqrt(Float64(A * Float64(c0 / Float64(V / Float64(c0 / l)))));
	end
	return tmp
end
function tmp = code(c0, A, V, l)
	tmp = c0 * sqrt((A / (V * l)));
end
function tmp_2 = code(c0, A, V, l)
	tmp = 0.0;
	if ((V * l) <= -5e-231)
		tmp = (sqrt(-A) / (sqrt(l) * sqrt(-V))) * c0;
	elseif ((V * l) <= 5e-320)
		tmp = c0 / (sqrt(l) / sqrt((A / V)));
	elseif ((V * l) <= 1e+299)
		tmp = c0 / (sqrt((V * l)) / sqrt(A));
	else
		tmp = sqrt((A * (c0 / (V / (c0 / l)))));
	end
	tmp_2 = tmp;
end
code[c0_, A_, V_, l_] := N[(c0 * N[Sqrt[N[(A / N[(V * l), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
code[c0_, A_, V_, l_] := If[LessEqual[N[(V * l), $MachinePrecision], -5e-231], N[(N[(N[Sqrt[(-A)], $MachinePrecision] / N[(N[Sqrt[l], $MachinePrecision] * N[Sqrt[(-V)], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * c0), $MachinePrecision], If[LessEqual[N[(V * l), $MachinePrecision], 5e-320], N[(c0 / N[(N[Sqrt[l], $MachinePrecision] / N[Sqrt[N[(A / V), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[N[(V * l), $MachinePrecision], 1e+299], N[(c0 / N[(N[Sqrt[N[(V * l), $MachinePrecision]], $MachinePrecision] / N[Sqrt[A], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[Sqrt[N[(A * N[(c0 / N[(V / N[(c0 / l), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]]]]
c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}
\begin{array}{l}
\mathbf{if}\;V \cdot \ell \leq -5 \cdot 10^{-231}:\\
\;\;\;\;\frac{\sqrt{-A}}{\sqrt{\ell} \cdot \sqrt{-V}} \cdot c0\\

\mathbf{elif}\;V \cdot \ell \leq 5 \cdot 10^{-320}:\\
\;\;\;\;\frac{c0}{\frac{\sqrt{\ell}}{\sqrt{\frac{A}{V}}}}\\

\mathbf{elif}\;V \cdot \ell \leq 10^{+299}:\\
\;\;\;\;\frac{c0}{\frac{\sqrt{V \cdot \ell}}{\sqrt{A}}}\\

\mathbf{else}:\\
\;\;\;\;\sqrt{A \cdot \frac{c0}{\frac{V}{\frac{c0}{\ell}}}}\\


\end{array}

Error?

Try it out?

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation?

  1. Split input into 4 regimes
  2. if (*.f64 V l) < -5.00000000000000023e-231

    1. Initial program 14.6

      \[c0 \cdot \sqrt{\frac{A}{V \cdot \ell}} \]
    2. Applied egg-rr17.0

      \[\leadsto \color{blue}{\frac{c0}{\sqrt{\frac{V}{\frac{A}{\ell}}}}} \]
    3. Taylor expanded in c0 around 0 14.6

      \[\leadsto \color{blue}{\sqrt{\frac{A}{V \cdot \ell}} \cdot c0} \]
    4. Simplified17.3

      \[\leadsto \color{blue}{\sqrt{\frac{\frac{A}{V}}{\ell}} \cdot c0} \]
      Proof

      [Start]14.6

      \[ \sqrt{\frac{A}{V \cdot \ell}} \cdot c0 \]

      associate-/r* [=>]17.3

      \[ \sqrt{\color{blue}{\frac{\frac{A}{V}}{\ell}}} \cdot c0 \]
    5. Applied egg-rr1.1

      \[\leadsto \color{blue}{\frac{\sqrt{-A}}{\sqrt{\ell} \cdot \sqrt{-V}}} \cdot c0 \]

    if -5.00000000000000023e-231 < (*.f64 V l) < 4.99994e-320

    1. Initial program 52.6

      \[c0 \cdot \sqrt{\frac{A}{V \cdot \ell}} \]
    2. Applied egg-rr24.3

      \[\leadsto \color{blue}{\frac{c0 \cdot \sqrt{\frac{A}{V}}}{\sqrt{\ell}}} \]
    3. Simplified23.3

      \[\leadsto \color{blue}{\frac{c0}{\frac{\sqrt{\ell}}{\sqrt{\frac{A}{V}}}}} \]
      Proof

      [Start]24.3

      \[ \frac{c0 \cdot \sqrt{\frac{A}{V}}}{\sqrt{\ell}} \]

      associate-/l* [=>]23.3

      \[ \color{blue}{\frac{c0}{\frac{\sqrt{\ell}}{\sqrt{\frac{A}{V}}}}} \]

    if 4.99994e-320 < (*.f64 V l) < 1.0000000000000001e299

    1. Initial program 10.3

      \[c0 \cdot \sqrt{\frac{A}{V \cdot \ell}} \]
    2. Applied egg-rr0.6

      \[\leadsto \color{blue}{\frac{c0}{\frac{\sqrt{V \cdot \ell}}{\sqrt{A}}}} \]

    if 1.0000000000000001e299 < (*.f64 V l)

    1. Initial program 39.1

      \[c0 \cdot \sqrt{\frac{A}{V \cdot \ell}} \]
    2. Applied egg-rr23.7

      \[\leadsto \color{blue}{\frac{c0}{\sqrt{\frac{V}{\frac{A}{\ell}}}}} \]
    3. Simplified23.7

      \[\leadsto \color{blue}{\frac{c0}{\sqrt{\frac{V}{A} \cdot \ell}}} \]
      Proof

      [Start]23.7

      \[ \frac{c0}{\sqrt{\frac{V}{\frac{A}{\ell}}}} \]

      associate-/r/ [=>]23.7

      \[ \frac{c0}{\sqrt{\color{blue}{\frac{V}{A} \cdot \ell}}} \]
    4. Applied egg-rr37.7

      \[\leadsto \color{blue}{\sqrt{\frac{c0 \cdot c0}{V} \cdot \frac{A}{\ell}}} \]
    5. Taylor expanded in c0 around 0 41.3

      \[\leadsto \sqrt{\color{blue}{\frac{A \cdot {c0}^{2}}{V \cdot \ell}}} \]
    6. Simplified33.8

      \[\leadsto \sqrt{\color{blue}{A \cdot \frac{c0}{\frac{V}{\frac{c0}{\ell}}}}} \]
      Proof

      [Start]41.3

      \[ \sqrt{\frac{A \cdot {c0}^{2}}{V \cdot \ell}} \]

      *-commutative [=>]41.3

      \[ \sqrt{\frac{\color{blue}{{c0}^{2} \cdot A}}{V \cdot \ell}} \]

      unpow2 [=>]41.3

      \[ \sqrt{\frac{\color{blue}{\left(c0 \cdot c0\right)} \cdot A}{V \cdot \ell}} \]

      associate-*l/ [<=]41.4

      \[ \sqrt{\color{blue}{\frac{c0 \cdot c0}{V \cdot \ell} \cdot A}} \]

      *-commutative [=>]41.4

      \[ \sqrt{\color{blue}{A \cdot \frac{c0 \cdot c0}{V \cdot \ell}}} \]

      associate-/l* [=>]40.4

      \[ \sqrt{A \cdot \color{blue}{\frac{c0}{\frac{V \cdot \ell}{c0}}}} \]

      associate-/l* [=>]33.8

      \[ \sqrt{A \cdot \frac{c0}{\color{blue}{\frac{V}{\frac{c0}{\ell}}}}} \]
  3. Recombined 4 regimes into one program.
  4. Final simplification5.9

    \[\leadsto \begin{array}{l} \mathbf{if}\;V \cdot \ell \leq -5 \cdot 10^{-231}:\\ \;\;\;\;\frac{\sqrt{-A}}{\sqrt{\ell} \cdot \sqrt{-V}} \cdot c0\\ \mathbf{elif}\;V \cdot \ell \leq 5 \cdot 10^{-320}:\\ \;\;\;\;\frac{c0}{\frac{\sqrt{\ell}}{\sqrt{\frac{A}{V}}}}\\ \mathbf{elif}\;V \cdot \ell \leq 10^{+299}:\\ \;\;\;\;\frac{c0}{\frac{\sqrt{V \cdot \ell}}{\sqrt{A}}}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{A \cdot \frac{c0}{\frac{V}{\frac{c0}{\ell}}}}\\ \end{array} \]

Alternatives

Alternative 1
Error13.9
Cost34640
\[\begin{array}{l} t_0 := c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\ \mathbf{if}\;t_0 \leq -2 \cdot 10^{+259}:\\ \;\;\;\;\frac{c0}{\sqrt{\ell \cdot \frac{V}{A}}}\\ \mathbf{elif}\;t_0 \leq -1 \cdot 10^{-318}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;t_0 \leq 0:\\ \;\;\;\;\sqrt{\frac{\frac{A \cdot c0}{\frac{V}{c0}}}{\ell}}\\ \mathbf{elif}\;t_0 \leq 5 \cdot 10^{+306}:\\ \;\;\;\;\frac{c0}{\sqrt{\frac{V \cdot \ell}{A}}}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{A \cdot \frac{c0}{\frac{V}{\frac{c0}{\ell}}}}\\ \end{array} \]
Alternative 2
Error11.7
Cost14288
\[\begin{array}{l} \mathbf{if}\;V \cdot \ell \leq -\infty:\\ \;\;\;\;c0 \cdot \sqrt{\frac{A}{\ell} \cdot \frac{1}{V}}\\ \mathbf{elif}\;V \cdot \ell \leq -1 \cdot 10^{-124}:\\ \;\;\;\;c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\ \mathbf{elif}\;V \cdot \ell \leq 5 \cdot 10^{-320}:\\ \;\;\;\;\frac{c0}{\sqrt{\ell \cdot \frac{V}{A}}}\\ \mathbf{elif}\;V \cdot \ell \leq 10^{+299}:\\ \;\;\;\;c0 \cdot \frac{\sqrt{A}}{\sqrt{V \cdot \ell}}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{A \cdot \frac{c0}{\frac{V}{\frac{c0}{\ell}}}}\\ \end{array} \]
Alternative 3
Error8.6
Cost14288
\[\begin{array}{l} t_0 := c0 \cdot \frac{\sqrt{\frac{A}{V}}}{\sqrt{\ell}}\\ \mathbf{if}\;V \cdot \ell \leq -5 \cdot 10^{+120}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;V \cdot \ell \leq -5 \cdot 10^{-117}:\\ \;\;\;\;c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\ \mathbf{elif}\;V \cdot \ell \leq 5 \cdot 10^{-320}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;V \cdot \ell \leq 10^{+299}:\\ \;\;\;\;c0 \cdot \frac{\sqrt{A}}{\sqrt{V \cdot \ell}}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{A \cdot \frac{c0}{\frac{V}{\frac{c0}{\ell}}}}\\ \end{array} \]
Alternative 4
Error8.6
Cost14288
\[\begin{array}{l} t_0 := \frac{c0}{\frac{\sqrt{\ell}}{\sqrt{\frac{A}{V}}}}\\ \mathbf{if}\;V \cdot \ell \leq -5 \cdot 10^{+120}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;V \cdot \ell \leq -2 \cdot 10^{-165}:\\ \;\;\;\;c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\ \mathbf{elif}\;V \cdot \ell \leq 5 \cdot 10^{-320}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;V \cdot \ell \leq 10^{+299}:\\ \;\;\;\;c0 \cdot \frac{\sqrt{A}}{\sqrt{V \cdot \ell}}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{A \cdot \frac{c0}{\frac{V}{\frac{c0}{\ell}}}}\\ \end{array} \]
Alternative 5
Error8.6
Cost14288
\[\begin{array}{l} t_0 := \frac{c0}{\frac{\sqrt{\ell}}{\sqrt{\frac{A}{V}}}}\\ \mathbf{if}\;V \cdot \ell \leq -5 \cdot 10^{+120}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;V \cdot \ell \leq -2 \cdot 10^{-165}:\\ \;\;\;\;c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\ \mathbf{elif}\;V \cdot \ell \leq 5 \cdot 10^{-320}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;V \cdot \ell \leq 10^{+299}:\\ \;\;\;\;\frac{c0}{\frac{\sqrt{V \cdot \ell}}{\sqrt{A}}}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{A \cdot \frac{c0}{\frac{V}{\frac{c0}{\ell}}}}\\ \end{array} \]
Alternative 6
Error7.2
Cost14288
\[\begin{array}{l} \mathbf{if}\;V \cdot \ell \leq -\infty:\\ \;\;\;\;\frac{\frac{c0}{\sqrt{\ell}}}{\sqrt{\frac{V}{A}}}\\ \mathbf{elif}\;V \cdot \ell \leq -5 \cdot 10^{-231}:\\ \;\;\;\;\sqrt{-A} \cdot \frac{c0}{\sqrt{V \cdot \left(-\ell\right)}}\\ \mathbf{elif}\;V \cdot \ell \leq 5 \cdot 10^{-320}:\\ \;\;\;\;\frac{c0}{\frac{\sqrt{\ell}}{\sqrt{\frac{A}{V}}}}\\ \mathbf{elif}\;V \cdot \ell \leq 10^{+299}:\\ \;\;\;\;\frac{c0}{\frac{\sqrt{V \cdot \ell}}{\sqrt{A}}}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{A \cdot \frac{c0}{\frac{V}{\frac{c0}{\ell}}}}\\ \end{array} \]
Alternative 7
Error6.4
Cost14288
\[\begin{array}{l} \mathbf{if}\;V \cdot \ell \leq -2 \cdot 10^{+294}:\\ \;\;\;\;\frac{\frac{c0}{\sqrt{\ell}}}{\sqrt{\frac{V}{A}}}\\ \mathbf{elif}\;V \cdot \ell \leq -5 \cdot 10^{-231}:\\ \;\;\;\;c0 \cdot \frac{\sqrt{-A}}{\sqrt{V \cdot \left(-\ell\right)}}\\ \mathbf{elif}\;V \cdot \ell \leq 5 \cdot 10^{-320}:\\ \;\;\;\;\frac{c0}{\frac{\sqrt{\ell}}{\sqrt{\frac{A}{V}}}}\\ \mathbf{elif}\;V \cdot \ell \leq 10^{+299}:\\ \;\;\;\;\frac{c0}{\frac{\sqrt{V \cdot \ell}}{\sqrt{A}}}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{A \cdot \frac{c0}{\frac{V}{\frac{c0}{\ell}}}}\\ \end{array} \]
Alternative 8
Error6.3
Cost14288
\[\begin{array}{l} \mathbf{if}\;V \cdot \ell \leq -\infty:\\ \;\;\;\;c0 \cdot \left({\left(\frac{-\ell}{A}\right)}^{-0.5} \cdot {\left(\frac{-1}{V}\right)}^{0.5}\right)\\ \mathbf{elif}\;V \cdot \ell \leq -5 \cdot 10^{-231}:\\ \;\;\;\;c0 \cdot \frac{\sqrt{-A}}{\sqrt{V \cdot \left(-\ell\right)}}\\ \mathbf{elif}\;V \cdot \ell \leq 5 \cdot 10^{-320}:\\ \;\;\;\;\frac{c0}{\frac{\sqrt{\ell}}{\sqrt{\frac{A}{V}}}}\\ \mathbf{elif}\;V \cdot \ell \leq 10^{+299}:\\ \;\;\;\;\frac{c0}{\frac{\sqrt{V \cdot \ell}}{\sqrt{A}}}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{A \cdot \frac{c0}{\frac{V}{\frac{c0}{\ell}}}}\\ \end{array} \]
Alternative 9
Error15.6
Cost8016
\[\begin{array}{l} \mathbf{if}\;V \cdot \ell \leq -\infty:\\ \;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{V}}{\ell}}\\ \mathbf{elif}\;V \cdot \ell \leq -1 \cdot 10^{-124}:\\ \;\;\;\;c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\ \mathbf{elif}\;V \cdot \ell \leq 4 \cdot 10^{-129}:\\ \;\;\;\;\frac{c0}{\sqrt{\ell \cdot \frac{V}{A}}}\\ \mathbf{elif}\;V \cdot \ell \leq 10^{+299}:\\ \;\;\;\;\frac{c0}{\sqrt{\frac{V \cdot \ell}{A}}}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{A \cdot \frac{c0}{\frac{V}{\frac{c0}{\ell}}}}\\ \end{array} \]
Alternative 10
Error14.7
Cost7890
\[\begin{array}{l} \mathbf{if}\;V \cdot \ell \leq -\infty \lor \neg \left(V \cdot \ell \leq -1 \cdot 10^{-173}\right) \land \left(V \cdot \ell \leq 2 \cdot 10^{-160} \lor \neg \left(V \cdot \ell \leq 2 \cdot 10^{+164}\right)\right):\\ \;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{V}}{\ell}}\\ \mathbf{else}:\\ \;\;\;\;c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\ \end{array} \]
Alternative 11
Error14.8
Cost7889
\[\begin{array}{l} \mathbf{if}\;V \cdot \ell \leq -\infty:\\ \;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{V}}{\ell}}\\ \mathbf{elif}\;V \cdot \ell \leq -1 \cdot 10^{-124} \lor \neg \left(V \cdot \ell \leq 2 \cdot 10^{-160}\right) \land V \cdot \ell \leq 10^{+170}:\\ \;\;\;\;c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\ \mathbf{else}:\\ \;\;\;\;\frac{c0}{\sqrt{\ell \cdot \frac{V}{A}}}\\ \end{array} \]
Alternative 12
Error15.0
Cost7889
\[\begin{array}{l} \mathbf{if}\;V \cdot \ell \leq -\infty:\\ \;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{V}}{\ell}}\\ \mathbf{elif}\;V \cdot \ell \leq -1 \cdot 10^{-124}:\\ \;\;\;\;c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\ \mathbf{elif}\;V \cdot \ell \leq 4 \cdot 10^{-129} \lor \neg \left(V \cdot \ell \leq 2 \cdot 10^{+164}\right):\\ \;\;\;\;\frac{c0}{\sqrt{\ell \cdot \frac{V}{A}}}\\ \mathbf{else}:\\ \;\;\;\;\frac{c0}{\sqrt{\frac{V \cdot \ell}{A}}}\\ \end{array} \]
Alternative 13
Error19.2
Cost6848
\[c0 \cdot \sqrt{\frac{A}{V \cdot \ell}} \]

Error

Reproduce?

herbie shell --seed 2023066 
(FPCore (c0 A V l)
  :name "Henrywood and Agarwal, Equation (3)"
  :precision binary64
  (* c0 (sqrt (/ A (* V l)))))