Solving using R

We can use the base R functions deriv to calculate the derivative, then evaluate this expression at \(h(t) = 30\) to ensure we did the math right

# function for height with volume as a param
v_exp <- (10 / (3 * sqrt(pi) * (v30^(2/3))))

# Call derivative to find dh/dt at h(t) = 30ft
dh_dV <- deriv(h ~v_exp, c("V","h"), func=TRUE)

# Call our derivative function with our volume value at h=30 as a param
dh_dV(v30)[1] == dhdV
## [1] TRUE