I'm a hobby coder and I have a pissload of data coordinates that I know. About 4000. I was wondering if instead of storing the datapoints, maybe I could store the equation that would represent that data. Problem is, I'm not very good at math, and I was wondering if all (non rule violating) nonlinear graphs had equations, and where I could read up on how to find them.
2026-03-30 13:17:48.1774876668
Do All Nonlinear Graphs Have Equations?
79 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
Assuming that your data is a set of (x,y) coordinates in the plane.
In terms of the intuitions you'd have as a code cutter, it's as if you're trying to take a black & white bitmap and convert it up into a vector graphic. A vector graphic is (effectively) a set of equations that can tell whether any given pixel needs to be turned on or off. Hence it is easy to go from a vector graphic to a bitmap.
Your situation may actually somewhat worse, as bitmaps are typically set up as pixels in a regular grid.
Equally, your question can be thought of in terms of data compression. You're trying to take 4,000 points and compress them into smaller storage. To do this, you're seeking to exploit redundancy in the data -- namely that the points are merely the manifestation of a small number of equations, plotted at selected x.
Hence the questions to ask about the data are:
What do I know about the equations that could be used? For example, are there reasons to believe that the data originated from line segments, or sections of circle? That is, is there an underlaying model to the data?
In going from data to representatation-as-equations, what lossiness is acceptable?
This kind of thinking will likely take you into the literature of feature extraction. An example of feature extraction in two dimensions is the Hough Transform, for inferring that data arises from lines.