I have a curve defined by an equation: $y = f(x)$
In my case, the equation is a polynomial $y = ax^3 + bx^2 + cx + d$.
I also have $2$ boundary conditions. Point $A$ and Point $B$. I know the velocity and position of $A$ and $B$ and I know the time taken to travel from $A$ to $B$ along the curve. With some simple calculus I have been able to the determine the variables, $a$, $b$, $c$, $d$. This means I know $\dfrac{\dot{y}}{\dot{x}}= f'(x)$ and $y=f(x)$.
What I really want to know is position and velocity as a function on time: \begin{align*} \dot{x} &= v_x(t) \\ \dot{y} &= v_y(t) \\ x &= x(t) \\ y &= f(x(t)) \end{align*}
How would I determine this for either my polynomial or for an equation $y=f(x)$?