I've searched for quite a while, but google has very little on what I actually need.
I have a series of points that form a power function.
How do I calculate the what the power function is?
I can calculate as many x and y pairs as needed.
EDIT: I have not taken either calculus or statistics, so please provide an example that you put through the steps and a basic explanation.
You want a function of the form $y = a\cdot x^b$, I suppose. First and foremost: to some extent this can be done online. Go to wolframalpha.com, write
power fitand your data in brackets{,}, and hit enter. An examplepower fit {{1.0, 12.}, {1.9, 10.}, {2.6, 8.2}, {3.4, 6.9}, {5.0, 5.9}}is calculated here. However, the length of the input is restricted (at least for free users).
For a more detailed solution, we will have to use logarithms and exponential, so for the time being I assume you can do that (sorry if it sounds offensive, but you wanted basic explanation).
Some theory: Let's take the (natural, base $e$) logarithm of the equality (I denote it here "$\log$", some use "$\ln$" or "$\log_e$"): \begin{align} y&= a x^b \qquad /\log(\cdot)\\ \log(y) &= \log(a x^b) = \log(a) + b\log(x)\\ \log(y) &= A + b\log(x) \qquad\text{with } A= \log(a) \end{align} That is, $\log(y)$ is depends linearly on $\log(x)$. To get the relationship for $(x,y)$, just exponentialize: \begin{align} e^{\log(y)} &= e^{(A + b\log(x))} = e^A \cdot x^b\\ y &= e^A \cdot x^b = a \cdot x^b \end{align}
What you actually have to do:
Remarks:
$a$ and $b$.