Cusps on quadratic Bezier curve

bezier-curve

A quadratic Bezier curve is given in parametric form by:
$$C(t) = (1-t)^2P_0 + 2(1-t)tP_1 + t^2P_2.$$

My points are: $(1,1)$, $(2,2)$ and $(3,3)$. How do I show that this curve has cusps?

Best regards,
Sergey

Best Answer

Compute curvature with standard parametric form. Zero radius of curvature gives a cusp.

Primed with respect to $t$,

$$\kappa= \dfrac{(x'y''-y'x'')}{ (x'^2+y'^2)^{\frac32} }\to \infty $$

At a cusp slope $\dfrac{y'}{ x'} $ remains stationary or maximum/minimum.

enter image description here