Is there a simple way to find the minimum distance between two parabolas?
For example, between y=-0.1(x-17)2 + 8.6 {7.726 < x < 19.134} and y=-0.12(x-17.5)2 + 6.2 {10.313 < x < 18.829}
See graph of the two parabolas here (the exponential function simply determines the restricted domain for the parabolas)
Context: I have to ensure that there is a minimum of 1.8 units between these two parabolas, to ensure the "path" is at least 1.8 metres wide always.
Attempt: I thought about trying to find the closest distance visually then finding the normal and subbing in for x and y at that specific point, but that doesn't seem very scientific and I'm a bit stuck.
Thanks in advance

Hint:
Minimize
$$(x'-x'')^2+((a'x^2+b'x+c')-(a''x''^2+b''x''+c''))^2.$$
The stationary points are given by
$$(x'-x'')+(2a'x'+b')((a'x'^2+b'x'+c')-(a''x''^2+b''x''+c''))=0,\\(x''-x')+(2a''x''+b'')((a'x'^2+b'x'+c')-(a''x''^2+b''x''+c''))=0.$$
By adding the two equations and as the parabolas do not intersect in the given domain, we have one linear equation
$$2a'x'+b'+2a''x''+b''=0.$$
We can eliminate $x''$ by drawing it from the latter and plugging it in one of the formers. This results in a cubic equation, having one or three real solutions.
But that's not all. As the curves are bounded, the minimum might occur at an endpoint. From the figure we can see that there are two candidate endpoints: the left endpoint of the lower parabola, and the right endpoint of the upper one.
Knowing $x'$ or $x''$, the stationarity equations are still cubic.