From the NURBS book (pg 48 B-spline basis functions), given that we have a Bezier curve $C_1(u)$, the following condition holds:
$\frac{1}{u_1 - u_0} C'_1(v = 1) = C'_1 (u_1)$ for $u_0<u<u_1$...(1)
Where:
$v = \frac{u - u_0}{u_1 - u_0}$ for $0<v<1$
Given that we know the derivative of the endpoint of the Bezier curve of degree n is (which does not depend on the parametric variable but purely on the control points):
$C'_1(v=1) = n(P_n - P_{n-1})$
How does one obtain the expression (1)? I tried the following:
$C'_1(v=1) = C'_1(\frac{u_1-u_0}{u_1-u_0})=n(P_n - P_{n-1})$
$\implies C_1'(u_1-u_0)=n(u_1-u_0)(P_n-P_{n-1})$
$\implies C_1'(u_1)=u_0 +n(u_1-u_0)(P_n-P_{n-1})$
$\implies C_1'(u_1)=u_0+(u_1-u_0)C_1'(v=1)$