Per our PM exchanges last night, my understanding is that you want to combine two quad bezier curves into a single quad bezier curve. This is effectively reducing the order/flexibility of the curves. I know of no analytical/closed form way of doing this.
Other Forum members might.
If least squares is a suitable approach for your situation (it may not be if computational efficiency is important), then the approach depends on a couple of important factors:
1. Whether the final curve needs to exactly go through the beginning and end points. In general, this isn't true with least squares, but in the case of quad bezier, the analysis is easier if the curve is forced to go through the end points.
2. Whether [itex]p_{1x}[/itex] of the final curve needs to be iteratively determined or not. The example you provided looks symmetric, which means the optimal value of [itex]p_{1x}[/itex] would be half way between the [itex]p_{1x}[/itex]'s of the two curves to consolidate. Even if [itex]p_{1x}[/itex] needs to be determined, the situation boils down to a univariate optimization problem that can be solved using a variety of techniques (e.g. bisection, Newton Raphson, Brent's method, Simplex, etc.)
Assuming the most simplistic situation (i.e. the curve goes through the end points, meaning [itex]p_{0y}[/itex] and [itex]p_{2y}[/itex] are known, and [itex]p_{1x}[/itex] is known, perhaps due to symmetry), then only 1 variable is to be determined using least squares, and that is [itex]p_{1y}[/itex]. With these assumption, here is a method that will work:
a. Calculate x,y for an aribtrary number (n) points for each of the original curves. I picked n = 10 for an example I did. The result is 20 x,y values that will be fit with a single quad bezier.
b. Make an initial guess for all six control points of the final quad bezier curve. Using the assumptions from #2 above, this really means just picking an initial value for [itex]p_{1y}[/itex].
c. For each x from step a, find the corresponding value of t that will produce the same x using the control points from step b. This means solving 2n-1 quadratic equations.
d. Once you know t for each x, calculate corresponding y values using the control points from step b. This allows you to readily calculate the sum-of-squares residual.
e. Calculate 2t(1-t) for each value of t from step c. This is used for performing least squares analysis to find the optimal [itex]p_{1y}[/itex]. Effectively:
[tex]2t(1-t) = \frac{\partial p_{1y}}{\partial y}[/tex]
f. Take each value of 2t(1-t) from step e, square and sum. Call this number z. Thus:
[tex]z = \sum (2t(1-t))^2 = \sum (2t - 2t^2)^2[/tex]
g. Calculate the difference between y calculated in step d and y from step a. This is an array that we will call f-y.
h. For each element of f-y, multiply by the corresponding element from step e and sum. Thus:
[tex]\sum (f-y)2t(1-t) = \sum (f-y)(2t-2t^2)[/tex]
i. The optimal value of [itex]p_{1y}[/itex] is simply the original guess minus the quantity from step h divided by z from step f. In other words:
[tex](p_{1y})_f = p_{1y} - \frac{\sum (f-y)(2t-2t^2)}{\sum (2t-2t^2)^2}= p_{1y} - \frac{\sum (p_{0y}(1-t)^2+2p_{1y}t(1-t)+p_{2y}t^2-y)(2t-2t^2)}{\sum (2t-2t^2)^2}[/tex]
Example using the above:
http://www.hostdump.com/uploads/83d023211c.jpg
