For some geometric problem that I am trying to solve, I am interested in characterizing the cross product between a Bezier curve and its second order derivative.
So, let's $\mathbf{c}(t)$ be a Bezier curve, and $\ddot{\mathbf{c}}(t)$ it's derivative.
Is $\mathbf{w}(t) = \mathbf{c}(t) \times \ddot{\mathbf{c}}(t)$ a Bezier curve?
If it is the case, is it also the case in general ?
Thanks a lot for your time and answers. Sincerely,
Steve
@Henning Makholm One can say a little more.
Let us recall that a Bézier curve with degree $n$ (particular cases $n=2$: quadratic, $n=3$ cubic) can be defined as any expression of the form:
$$\tag{1}\vec{OM}=\vec{u_0}+\vec{u_1}t+\vec{u_2}t^2+\vec{u_3}t^3+\cdots+\vec{u_{n-1}}t^{n-1}+\vec{u_n}t^n \ \ \text{with} \ \ \vec{u_n}\neq 0$$
(see example at the bottom of this text.)
(this well known result is due to the fact that every polynomial with degree $\leq n$ can be decomposed onto the Bernstein polynomials of order $n$ that constitute a basis of the vector space of polynomials with degree $\leq n$).
Proof: The second derivative of (1) is
$$\tag{2}\ddot{\vec{OM}}=2\vec{u_2}+6\vec{u_3}t+\cdots+(n-2)(n-1)\vec{u_{n-1}}t^{n-3}+n(n-1)\vec{u_n}t^{n-2}$$
Taking the cross product of (1) and (2), one gets, by distributivity:
$$\vec{u_0} \times 2\vec{u_2}+ \cdots + \vec{v}t^{n-3}+n(n-1)\underbrace{\vec{u_n}\times \vec{u_n}}_{\vec{0}}t^{2n-2}$$
with $\vec{v}:=2(n-1) \vec{u_{n-1}} \times \vec{u_{n-2}}$.
Two particular cases:
(A) A quadratic Bézier curve is transformed into a straight line ($n=2 \to 2n-3=1$).
(B) A cubic Bézier curve is transformed into a cubic Bézier curve ($n=3 \to 2n-3=3$).
Example of a quadratic Bézier curve :
$$\vec{OM}=(1-t)^2\vec{OA}+2t(1-t)\vec{OB}+t^2\vec{OC}=\vec{OA}+2t\vec{AB}+t^2(\vec{BA}+\vec{BC}).$$