Point addition on elliptic curves allows us to determine a point R given two distinct points P and Q so that P + Q = R. There are various ways to calculate point addition depending on the type of curve. A brief explanation of point addition is given here.
My question looks at the opposite path. Given a point R(x,y) on a curve, find two distinct points P(x,y) and Q(x,y) so that (a) P(x,y) + Q(x,y) = R(x,y) and (b) the y value is the same for each point P, Q and R.
Is it possible? If not, why not?
The answer can be exemplified using the Secp256k1 curve to limit the scope.
Thanks.