What is the easier way to find the circle given three points?
Given three points , and , if
then there will be a circle passing through them. The general form of the circle is
By substituting , there will be a system of equation in three variables, that is:
As there are a lot of things going around, the solution is prone to errors. Maybe this solution also has an error.
Is there a better way to solve for the equation of the circle?
Fitting a ballistic trajectory to noisy data where both spacial and temporal domains observations are noisy
Fitting a curve to noisy data is somewhat trivial. However it generally assumes that data abscissa is fixed, and the error is computed on the ordinate.
In my setup, I have 3D spacial observations of ballistic trajectories (that I model with a simple parabola), but the observations time are also noisy.
Therefore, I have to estimate the initial position and initial speed , based on 4D (noisy) observations , such that they fit the following model:
with t monotonically increasing with i.
I'm not sure how to formulate such optimization problem because I have 6 parameters to estimate, but also 4N variables with only 3N equations… My intuition tells me there's only one single parabola that minimizes the error (MSE for example), but I can't formulate the problem.