I have the derivatives of two functions, $\frac{df(t)}{dt}$ and $\frac{dg(t)}{dt}$. I would like to calculate the derivative $\frac{df(t)}{dg(t)}$.
This is a reasonably simple problem:
\begin{equation} \frac{df(t)}{dg(t)} = \frac{\frac{df(t)}{dt}}{\frac{dg(t)}{dt}} \end{equation}
However, suppose I only have access to a variable $x$ which defines $t$:
$x = \cosh(t-0.5)$, $x\in\{0,1\}$
The inverse equation requires two branches to describe properly:
$t = \pm\cosh^{-1}(x)+0.5$, $t\in\{-0.5,0.5\}$
So now I would like to calculate:
\begin{equation} \frac{df(t(x))}{dg(t(x))} = \frac{\frac{df(t(x))}{dt(x)}}{\frac{dg(t(x))}{dt(x)}} \end{equation}
I will surely have two solutions, for which there will be degenerate solutions at each value of $x$: one solution for each domain in $t$.
I have never dealt with such a situation before.
Is my understanding correct, and if so, what is the correct way of rendering $\frac{df(t(x))}{dg(t(x))}$? Is what I am attempting even a valid thing to do?