Average Error: 19.0 → 6.0
Time: 15.1s
Precision: binary64
Cost: 20168
\[ \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 0:\\ \;\;\;\;\frac{c0}{\frac{\sqrt{-V} \cdot \sqrt{\ell}}{\sqrt{-A}}}\\ \mathbf{elif}\;V \cdot \ell \leq 2 \cdot 10^{+301}:\\ \;\;\;\;c0 \cdot \left(\frac{1}{\sqrt{V \cdot \ell}} \cdot \sqrt{A}\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{\sqrt{A}}{\sqrt{V}} \cdot \frac{c0}{\sqrt{\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) 0.0)
   (/ c0 (/ (* (sqrt (- V)) (sqrt l)) (sqrt (- A))))
   (if (<= (* V l) 2e+301)
     (* c0 (* (/ 1.0 (sqrt (* V l))) (sqrt A)))
     (* (/ (sqrt A) (sqrt V)) (/ c0 (sqrt 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) <= 0.0) {
		tmp = c0 / ((sqrt(-V) * sqrt(l)) / sqrt(-A));
	} else if ((V * l) <= 2e+301) {
		tmp = c0 * ((1.0 / sqrt((V * l))) * sqrt(A));
	} else {
		tmp = (sqrt(A) / sqrt(V)) * (c0 / sqrt(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) <= 0.0d0) then
        tmp = c0 / ((sqrt(-v) * sqrt(l)) / sqrt(-a))
    else if ((v * l) <= 2d+301) then
        tmp = c0 * ((1.0d0 / sqrt((v * l))) * sqrt(a))
    else
        tmp = (sqrt(a) / sqrt(v)) * (c0 / sqrt(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) <= 0.0) {
		tmp = c0 / ((Math.sqrt(-V) * Math.sqrt(l)) / Math.sqrt(-A));
	} else if ((V * l) <= 2e+301) {
		tmp = c0 * ((1.0 / Math.sqrt((V * l))) * Math.sqrt(A));
	} else {
		tmp = (Math.sqrt(A) / Math.sqrt(V)) * (c0 / Math.sqrt(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) <= 0.0:
		tmp = c0 / ((math.sqrt(-V) * math.sqrt(l)) / math.sqrt(-A))
	elif (V * l) <= 2e+301:
		tmp = c0 * ((1.0 / math.sqrt((V * l))) * math.sqrt(A))
	else:
		tmp = (math.sqrt(A) / math.sqrt(V)) * (c0 / math.sqrt(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) <= 0.0)
		tmp = Float64(c0 / Float64(Float64(sqrt(Float64(-V)) * sqrt(l)) / sqrt(Float64(-A))));
	elseif (Float64(V * l) <= 2e+301)
		tmp = Float64(c0 * Float64(Float64(1.0 / sqrt(Float64(V * l))) * sqrt(A)));
	else
		tmp = Float64(Float64(sqrt(A) / sqrt(V)) * Float64(c0 / sqrt(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) <= 0.0)
		tmp = c0 / ((sqrt(-V) * sqrt(l)) / sqrt(-A));
	elseif ((V * l) <= 2e+301)
		tmp = c0 * ((1.0 / sqrt((V * l))) * sqrt(A));
	else
		tmp = (sqrt(A) / sqrt(V)) * (c0 / sqrt(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], 0.0], N[(c0 / N[(N[(N[Sqrt[(-V)], $MachinePrecision] * N[Sqrt[l], $MachinePrecision]), $MachinePrecision] / N[Sqrt[(-A)], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[N[(V * l), $MachinePrecision], 2e+301], N[(c0 * N[(N[(1.0 / N[Sqrt[N[(V * l), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[Sqrt[A], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(N[Sqrt[A], $MachinePrecision] / N[Sqrt[V], $MachinePrecision]), $MachinePrecision] * N[(c0 / N[Sqrt[l], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]
c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}
\begin{array}{l}
\mathbf{if}\;V \cdot \ell \leq 0:\\
\;\;\;\;\frac{c0}{\frac{\sqrt{-V} \cdot \sqrt{\ell}}{\sqrt{-A}}}\\

\mathbf{elif}\;V \cdot \ell \leq 2 \cdot 10^{+301}:\\
\;\;\;\;c0 \cdot \left(\frac{1}{\sqrt{V \cdot \ell}} \cdot \sqrt{A}\right)\\

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


\end{array}

Error

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation

  1. Split input into 3 regimes
  2. if (*.f64 V l) < -0.0

    1. Initial program 22.1

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

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

      \[\leadsto \color{blue}{\frac{c0}{\sqrt{\frac{V}{A} \cdot \ell}}} \]
      Proof
      (/.f64 c0 (sqrt.f64 (*.f64 (/.f64 V A) l))): 0 points increase in error, 0 points decrease in error
      (/.f64 c0 (sqrt.f64 (Rewrite<= associate-/r/_binary64 (/.f64 V (/.f64 A l))))): 0 points increase in error, 0 points decrease in error
    4. Applied egg-rr6.3

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

    if -0.0 < (*.f64 V l) < 2.00000000000000011e301

    1. Initial program 10.8

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

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

    if 2.00000000000000011e301 < (*.f64 V l)

    1. Initial program 39.5

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

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

      \[\leadsto \color{blue}{\frac{\sqrt{A}}{\sqrt{V}} \cdot \frac{c0}{\sqrt{\ell}}} \]
      Proof
      (/.f64 c0 (sqrt.f64 (*.f64 (/.f64 V A) l))): 0 points increase in error, 0 points decrease in error
      (/.f64 c0 (sqrt.f64 (Rewrite<= associate-/r/_binary64 (/.f64 V (/.f64 A l))))): 0 points increase in error, 0 points decrease in error
  3. Recombined 3 regimes into one program.
  4. Final simplification6.0

    \[\leadsto \begin{array}{l} \mathbf{if}\;V \cdot \ell \leq 0:\\ \;\;\;\;\frac{c0}{\frac{\sqrt{-V} \cdot \sqrt{\ell}}{\sqrt{-A}}}\\ \mathbf{elif}\;V \cdot \ell \leq 2 \cdot 10^{+301}:\\ \;\;\;\;c0 \cdot \left(\frac{1}{\sqrt{V \cdot \ell}} \cdot \sqrt{A}\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{\sqrt{A}}{\sqrt{V}} \cdot \frac{c0}{\sqrt{\ell}}\\ \end{array} \]

Alternatives

Alternative 1
Error14.5
Cost34768
\[\begin{array}{l} t_0 := c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\ \mathbf{if}\;t_0 \leq -\infty:\\ \;\;\;\;\frac{c0}{\sqrt{\frac{V}{\frac{A}{\ell}}}}\\ \mathbf{elif}\;t_0 \leq -1 \cdot 10^{-307}:\\ \;\;\;\;c0 \cdot \sqrt{A \cdot \frac{1}{V \cdot \ell}}\\ \mathbf{elif}\;t_0 \leq 0:\\ \;\;\;\;\sqrt{c0 \cdot \left(\frac{A}{V} \cdot \frac{c0}{\ell}\right)}\\ \mathbf{elif}\;t_0 \leq 2 \cdot 10^{+285}:\\ \;\;\;\;t_0\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{\sqrt{\frac{\ell}{c0 \cdot A} \cdot \frac{V}{c0}}}\\ \end{array} \]
Alternative 2
Error15.0
Cost34640
\[\begin{array}{l} t_0 := c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\ \mathbf{if}\;t_0 \leq -1 \cdot 10^{+306}:\\ \;\;\;\;\frac{c0}{\sqrt{\frac{V}{\frac{A}{\ell}}}}\\ \mathbf{elif}\;t_0 \leq -1 \cdot 10^{-307}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;t_0 \leq 0:\\ \;\;\;\;\sqrt{c0 \cdot \left(\frac{A}{V} \cdot \frac{c0}{\ell}\right)}\\ \mathbf{elif}\;t_0 \leq 2 \cdot 10^{+285}:\\ \;\;\;\;t_0\\ \mathbf{else}:\\ \;\;\;\;\sqrt{A \cdot \frac{c0 \cdot \frac{c0}{\ell}}{V}}\\ \end{array} \]
Alternative 3
Error15.1
Cost34640
\[\begin{array}{l} t_0 := c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\ \mathbf{if}\;t_0 \leq -\infty:\\ \;\;\;\;\frac{c0}{\sqrt{\frac{V}{\frac{A}{\ell}}}}\\ \mathbf{elif}\;t_0 \leq -1 \cdot 10^{-307}:\\ \;\;\;\;c0 \cdot \sqrt{A \cdot \frac{1}{V \cdot \ell}}\\ \mathbf{elif}\;t_0 \leq 0:\\ \;\;\;\;\sqrt{c0 \cdot \left(\frac{A}{V} \cdot \frac{c0}{\ell}\right)}\\ \mathbf{elif}\;t_0 \leq 2 \cdot 10^{+285}:\\ \;\;\;\;t_0\\ \mathbf{else}:\\ \;\;\;\;\sqrt{A \cdot \frac{c0 \cdot \frac{c0}{\ell}}{V}}\\ \end{array} \]
Alternative 4
Error15.9
Cost34514
\[\begin{array}{l} t_0 := c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\ \mathbf{if}\;t_0 \leq -1 \cdot 10^{+306} \lor \neg \left(t_0 \leq -1 \cdot 10^{-206} \lor \neg \left(t_0 \leq 0\right) \land t_0 \leq 2 \cdot 10^{+50}\right):\\ \;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{V}}{\ell}}\\ \mathbf{else}:\\ \;\;\;\;t_0\\ \end{array} \]
Alternative 5
Error15.7
Cost34512
\[\begin{array}{l} t_0 := c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\ t_1 := c0 \cdot \sqrt{\frac{\frac{A}{V}}{\ell}}\\ \mathbf{if}\;t_0 \leq -1 \cdot 10^{+306}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t_0 \leq -1 \cdot 10^{-206}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;t_0 \leq 0:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t_0 \leq 2 \cdot 10^{+50}:\\ \;\;\;\;t_0\\ \mathbf{else}:\\ \;\;\;\;\frac{c0}{\sqrt{\ell \cdot \frac{V}{A}}}\\ \end{array} \]
Alternative 6
Error16.2
Cost34512
\[\begin{array}{l} t_0 := c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\ \mathbf{if}\;t_0 \leq -1 \cdot 10^{+306}:\\ \;\;\;\;\frac{c0}{\sqrt{\frac{V}{\frac{A}{\ell}}}}\\ \mathbf{elif}\;t_0 \leq -1 \cdot 10^{-307}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;t_0 \leq 0:\\ \;\;\;\;\sqrt{c0 \cdot \left(\frac{A}{V} \cdot \frac{c0}{\ell}\right)}\\ \mathbf{elif}\;t_0 \leq 2 \cdot 10^{+50}:\\ \;\;\;\;t_0\\ \mathbf{else}:\\ \;\;\;\;\frac{c0}{\sqrt{\frac{\ell}{\frac{A}{V}}}}\\ \end{array} \]
Alternative 7
Error6.9
Cost20688
\[\begin{array}{l} \mathbf{if}\;V \cdot \ell \leq -\infty:\\ \;\;\;\;{\ell}^{-0.5} \cdot \left(c0 \cdot \sqrt{\frac{A}{V}}\right)\\ \mathbf{elif}\;V \cdot \ell \leq -2 \cdot 10^{-272}:\\ \;\;\;\;\frac{\sqrt{-A}}{\frac{\sqrt{V \cdot \left(-\ell\right)}}{c0}}\\ \mathbf{elif}\;V \cdot \ell \leq 0:\\ \;\;\;\;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 2 \cdot 10^{+301}:\\ \;\;\;\;c0 \cdot \left(\frac{1}{\sqrt{V \cdot \ell}} \cdot \sqrt{A}\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{\sqrt{A}}{\sqrt{V}} \cdot \frac{c0}{\sqrt{\ell}}\\ \end{array} \]
Alternative 8
Error7.5
Cost14348
\[\begin{array}{l} \mathbf{if}\;V \cdot \ell \leq -\infty:\\ \;\;\;\;{\ell}^{-0.5} \cdot \left(c0 \cdot \sqrt{\frac{A}{V}}\right)\\ \mathbf{elif}\;V \cdot \ell \leq -2 \cdot 10^{-272}:\\ \;\;\;\;\frac{\sqrt{-A}}{\frac{\sqrt{V \cdot \left(-\ell\right)}}{c0}}\\ \mathbf{elif}\;V \cdot \ell \leq 0:\\ \;\;\;\;c0 \cdot \left({\left(-\frac{\ell}{A}\right)}^{-0.5} \cdot {\left(\frac{-1}{V}\right)}^{0.5}\right)\\ \mathbf{else}:\\ \;\;\;\;c0 \cdot \left(\frac{1}{\sqrt{V \cdot \ell}} \cdot \sqrt{A}\right)\\ \end{array} \]
Alternative 9
Error8.8
Cost14156
\[\begin{array}{l} \mathbf{if}\;V \cdot \ell \leq -1 \cdot 10^{+141}:\\ \;\;\;\;\frac{c0}{\frac{\sqrt{\ell}}{\sqrt{\frac{A}{V}}}}\\ \mathbf{elif}\;V \cdot \ell \leq -5 \cdot 10^{-129}:\\ \;\;\;\;c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\ \mathbf{elif}\;V \cdot \ell \leq 0:\\ \;\;\;\;\frac{c0}{\sqrt{\ell} \cdot \sqrt{\frac{V}{A}}}\\ \mathbf{else}:\\ \;\;\;\;c0 \cdot \left(\frac{1}{\sqrt{V \cdot \ell}} \cdot \sqrt{A}\right)\\ \end{array} \]
Alternative 10
Error7.6
Cost14156
\[\begin{array}{l} \mathbf{if}\;V \cdot \ell \leq -\infty:\\ \;\;\;\;{\ell}^{-0.5} \cdot \left(c0 \cdot \sqrt{\frac{A}{V}}\right)\\ \mathbf{elif}\;V \cdot \ell \leq -2 \cdot 10^{-184}:\\ \;\;\;\;\sqrt{-A} \cdot \frac{c0}{\sqrt{V \cdot \left(-\ell\right)}}\\ \mathbf{elif}\;V \cdot \ell \leq 0:\\ \;\;\;\;\frac{c0}{\sqrt{\ell} \cdot \sqrt{\frac{V}{A}}}\\ \mathbf{else}:\\ \;\;\;\;c0 \cdot \left(\frac{1}{\sqrt{V \cdot \ell}} \cdot \sqrt{A}\right)\\ \end{array} \]
Alternative 11
Error7.4
Cost14156
\[\begin{array}{l} \mathbf{if}\;V \cdot \ell \leq -\infty:\\ \;\;\;\;{\ell}^{-0.5} \cdot \left(c0 \cdot \sqrt{\frac{A}{V}}\right)\\ \mathbf{elif}\;V \cdot \ell \leq -2 \cdot 10^{-272}:\\ \;\;\;\;\frac{\sqrt{-A}}{\frac{\sqrt{V \cdot \left(-\ell\right)}}{c0}}\\ \mathbf{elif}\;V \cdot \ell \leq 0:\\ \;\;\;\;\frac{c0}{\sqrt{\ell} \cdot \sqrt{\frac{V}{A}}}\\ \mathbf{else}:\\ \;\;\;\;c0 \cdot \left(\frac{1}{\sqrt{V \cdot \ell}} \cdot \sqrt{A}\right)\\ \end{array} \]
Alternative 12
Error13.5
Cost14028
\[\begin{array}{l} \mathbf{if}\;V \cdot \ell \leq -5 \cdot 10^{+243}:\\ \;\;\;\;\frac{1}{\sqrt{\frac{\ell}{c0 \cdot A} \cdot \frac{V}{c0}}}\\ \mathbf{elif}\;V \cdot \ell \leq -5 \cdot 10^{-51}:\\ \;\;\;\;c0 \cdot \sqrt{A \cdot \frac{1}{V \cdot \ell}}\\ \mathbf{elif}\;V \cdot \ell \leq 0:\\ \;\;\;\;\frac{c0}{\sqrt{\frac{V}{\frac{A}{\ell}}}}\\ \mathbf{else}:\\ \;\;\;\;c0 \cdot \frac{\sqrt{A}}{\sqrt{V \cdot \ell}}\\ \end{array} \]
Alternative 13
Error8.9
Cost14028
\[\begin{array}{l} t_0 := c0 \cdot \frac{\sqrt{\frac{A}{V}}}{\sqrt{\ell}}\\ \mathbf{if}\;V \cdot \ell \leq -1 \cdot 10^{+141}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;V \cdot \ell \leq -5 \cdot 10^{-129}:\\ \;\;\;\;c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\ \mathbf{elif}\;V \cdot \ell \leq 0:\\ \;\;\;\;t_0\\ \mathbf{else}:\\ \;\;\;\;c0 \cdot \frac{\sqrt{A}}{\sqrt{V \cdot \ell}}\\ \end{array} \]
Alternative 14
Error8.8
Cost14028
\[\begin{array}{l} \mathbf{if}\;V \cdot \ell \leq -1 \cdot 10^{+141}:\\ \;\;\;\;c0 \cdot \frac{\sqrt{\frac{A}{V}}}{\sqrt{\ell}}\\ \mathbf{elif}\;V \cdot \ell \leq -5 \cdot 10^{-129}:\\ \;\;\;\;c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\ \mathbf{elif}\;V \cdot \ell \leq 0:\\ \;\;\;\;\frac{c0}{\sqrt{\ell} \cdot \sqrt{\frac{V}{A}}}\\ \mathbf{else}:\\ \;\;\;\;c0 \cdot \frac{\sqrt{A}}{\sqrt{V \cdot \ell}}\\ \end{array} \]
Alternative 15
Error8.8
Cost14028
\[\begin{array}{l} \mathbf{if}\;V \cdot \ell \leq -1 \cdot 10^{+141}:\\ \;\;\;\;\frac{c0}{\frac{\sqrt{\ell}}{\sqrt{\frac{A}{V}}}}\\ \mathbf{elif}\;V \cdot \ell \leq -5 \cdot 10^{-129}:\\ \;\;\;\;c0 \cdot \sqrt{\frac{A}{V \cdot \ell}}\\ \mathbf{elif}\;V \cdot \ell \leq 0:\\ \;\;\;\;\frac{c0}{\sqrt{\ell} \cdot \sqrt{\frac{V}{A}}}\\ \mathbf{else}:\\ \;\;\;\;c0 \cdot \frac{\sqrt{A}}{\sqrt{V \cdot \ell}}\\ \end{array} \]
Alternative 16
Error14.3
Cost7624
\[\begin{array}{l} t_0 := \frac{A}{V \cdot \ell}\\ \mathbf{if}\;t_0 \leq 0:\\ \;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{V}}{\ell}}\\ \mathbf{elif}\;t_0 \leq 2 \cdot 10^{+303}:\\ \;\;\;\;c0 \cdot \sqrt{t_0}\\ \mathbf{else}:\\ \;\;\;\;\frac{c0}{\sqrt{\frac{V}{\frac{A}{\ell}}}}\\ \end{array} \]
Alternative 17
Error14.3
Cost7624
\[\begin{array}{l} t_0 := \frac{A}{V \cdot \ell}\\ \mathbf{if}\;t_0 \leq 0:\\ \;\;\;\;c0 \cdot \sqrt{\frac{\frac{A}{V}}{\ell}}\\ \mathbf{elif}\;t_0 \leq 2 \cdot 10^{+303}:\\ \;\;\;\;c0 \cdot \sqrt{t_0}\\ \mathbf{else}:\\ \;\;\;\;\frac{c0}{\sqrt{\frac{\ell}{\frac{A}{V}}}}\\ \end{array} \]
Alternative 18
Error19.0
Cost6848
\[c0 \cdot \sqrt{\frac{A}{V \cdot \ell}} \]

Error

Reproduce

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