let $d_{ij}$ the distance between 2 points in space $p_i$ and $p_j$. These 2 points are moving over time so it is more correct to write them as $p_i(t)$ and $p_j(t)$.
$p_i$ and $p_j$ are, at every time, vectors in 3D to identify a point in 3D space.
So $d_{ij}$ is :
$d_{ij}=|| p_j - p_i ||$
I would like to know why, if it is correct, that:
$\dot{d_{ij}}=\beta_{ij}^T(\dot{p_j}-\dot{p_i})$
where $\beta_{ij}$ is the bearing vector between point $i$ and point $j$. Which is defined as
$\beta_{ij} = \frac{p_j-p_i}{d_{ij}}$
The $\beta_{ij}$ it is a unit vector which gives the direction between point $i$ and point $j$.
I am working to understand this but until now I didn't succeded.
Can someone help me please?
Thanks a lot.
It's not quite right as stated, as will be clarified below:
The following binds as long as $p_i(t) \ne p_j(t)$, an asuumption we shall henceforeward make.
Writing
$d_{ij} = \Vert p_j - p_i \Vert$ $= ((p_j - p_i) \cdot (p_j - p_i))^{1/2}, \tag{1}$
we have
$\dot d_{ij} = \dfrac{1}{2}((p_j - p_i) \cdot (p_j - p_i))^{-1/2}\dfrac{d}{dt}((p_j - p_i) \cdot (p_j - p_i)); \tag{2}$
(2) follows from (1) by an easy application of the chain rule. We further have
$\dfrac{d}{dt}((p_j - p_i) \cdot (p_j - p_i)) = 2(p_j - p_i) \cdot (\dot p_j - \dot p_i); \tag{3}$
substituting (3) into (2) yields
$\dot d_{ij} = ((p_j - p_i) \cdot (p_j - p_i))^{-1/2}(p_j - p_i) \cdot (\dot p_j - \dot p_i)$ $= \dfrac{p_j - p_i}{d_{ij}} \cdot (\dot p_j - \dot p_i) = \beta_{ji} \cdot (\dot p_j - \dot p_i)$ $= \beta^T_{ji}(\dot p_j - \dot p_i), \tag{4}$
the correct version of the OP's hypothesized formula.
Careful examination of mathcounterexample.net's answer reveals agreement 'twixt that one and mine. Furthermore, our OP's definition,
$\beta_{ij} = \dfrac{p_i - p_j}{d_{ij}}, \tag{5}$
implies that
$\beta_{ji} = -\beta_{ij}, \tag{6}$
since $d_{ij} = d_{ji}; \tag{7}$
thus OP's formula is merely off by a sign.