I am a programming student and I am analysing an algorithm efficiency, this algorithm efficiency is so bad that we are expecting it to have a quadratic graph.
After many hours programming and outing everything in the correct place, I got my final graph, but without a function I can't really know if it's quadratic or not.
How can I know ? And does it look quadratic to you math experts ?
Here is the image:

This graph is NOT quadratic. To prove, let us assume it to be quadratic.:
Since the graph passes through origin, and it's derivative seems to be $0$ there, it must be of the form $\dfrac{y}{10^7}=ax^2$.
Since the graph passes through the point : $(\approx 3000,10^7)$ Plugging it to equation
$$1=a \cdot (3000)^2 \implies a \approx \frac{1}{3000^2}$$
Now check at $x=9000$, , first from our equation :
$$\frac{y}{10^7}=\frac{1}{3000^2} \cdot (9000)^2 \implies y \approx 27 \times 10^7$$
But in the graph provided, at $x=9000$, $y \approx 8 \times 10^7$.