I am working on an application of CV, in which a way to calculate the derivative of rotation matrix is involved.
$$R$$ is the rotation matrix and $$R \in SO(3)$$ Also, $R$ is changing with $t$ giving $R(t)$.
$R(t)R(t)^\mathrm{T} = I$ is known. We calculate the derivative of $R(t)R(t)^\mathrm{T} $ which gives us a skew symmetric matrix $\dot{R}(t)R(t)^\mathrm{T} = -R(t)\dot{R}{}^\mathrm{T}(t) =: \phi(t)$, where $$\phi (t) = \left[ \begin{matrix} 0 & -\phi_3 & \phi_2 \\ \phi_3 & 0 & -\phi_1\\ -\phi_2 & \phi_1 & 0 \end{matrix} \right]. $$
The derivative of $R(t)$ is then given by $$ \dot{R}(t) = \phi (t) R(t).$$
To derive the Lie algebra, later, it gives the 1st order expansion of $R(t)$ $$ R(t) \approx R(t_0) + \dot{R}(t_0)\ (t-t_0) = I + t\ \phi (t_0) ,$$ where $t_0 = 0$ and $R(t_0) = I$. By given an assumption that $\phi (t_0) = \phi_0$ around $t_0$, it gets $$ \dot{R}(t) = \phi (t_0) R(t) = \phi_0 R(t).$$ This is the one I cannot get, i.e. the last equation is my question. Any suggestion would be appreciated.