I've got some data points (X/Y coordinates) that were apparently created using a certain formula that I want to reconstruct now. I've only got those points, and I can plot them (e.g. like in this).
I know how to measure maxima, minima, slopes etc, and could solve an equation to compute the values for parameters in a formula so that it closely approximates/interpolates my data points, but which formula should I use?
I somehow need to find a parametric formula that matches the shape of the (parts of the) graph(s). What are the steps to identify such shapes, and to what formula (parts) do they correspond?
A step function is rather easy to identify, but I'm having problems with curves. Are they polynomials, of what degree? Are they trigonometric functions, like a sinus, squared, cubed? Do they contain a fraction, an exponentiation, something else? Or is it even something completely different, like a bezier curve?
I'm not looking for a solution to a specific problem, but a generic guide, hoping that this is not too broad.
I do not know if I understood you correctly, but even if you want to find from a finite sequence of points (that have coordinates with a finite number of decimal places) in the plane whether the curve that goes through those points is polynomial or some non-polynomial continuous function it seems to me that it cannot be done because of the Stone–Weierstrass theorem which, roughly, says that you can uniformly approximate continuous function with polynomials to any degree of accuracy.
If it is the case that you have some finite set of points and you want to draw/find some, let us say, polynomial that goes through those points, then you have interpolation methods, see this one for example.