Given two functions $f(x)=e^{6x}$ and $g(x)=ax^2$ where $a>0$. The objective is to find a condition for $a$ such that there are exactly 2 lines, each is tangent to both of the given functions.
My attempt
Let $L$ be one of the tangent lines. Also let $(\alpha,f(\alpha))$ and $(\beta,g(\beta))$ be the tangent points of $L$ to $f$ and $g$, respectively.
Based on the constraints given above, we have the following simultaneous equations.
\begin{align} g(\beta)-f(\alpha) &= f'(\alpha)(\beta-\alpha)\\ f(\alpha)-g(\beta) &= g'(\beta)(\alpha-\beta) \end{align}
With some manipulations, I obtain
$$ a=\frac{9e^{6\alpha}}{6\alpha-1} $$
And with calculus, the minimal positive value of $a$ is $9e^2$. Thus the final answer is $a>9e^2$.
I wonder how this way leads me to the conclusion there are 2 tangent lines?
Edit: I also have a relation $6\alpha = 3\beta +1$ but it seems "useless".