I have a cubic Bezier curve and I approximate it with a line segment defined by first and last control point. I then have a way of evaluating how good or bad I approximate the original curve, call it an error, deviation or "flatness".
If I split the curve into two halves by De Casteljau's algorithm at $t = 0.5$, by how much does the error improves?
If I recursively split the curve into halves, what is the asymptotic rate the approximation improves?