So if you are given two different numbers to determine a growth rate, do you use to largest number compared to the value when x=0. For example the problem I am working on is: Your grandfather purchased a house for $45,000 in 1952 and it has increased in value according to a function y = v(x), where x is the number of years owned. These questions probe the future value of the house under various mathematical models.
Suppose the value of the house is $60,000 in 1962 and $140,000 in 1967. Assume v(x) is a quadratic function. Find a formula for v(x). If I take (60000/45000)^1/10 I get a growth rate of 1.03 If I take (140000/45000)^1/15 I get a growth rate of 1.08 And if I take (140000/60000)^1/5 I get a growth rate of 1.18 Which of these am I supposed to use?
Assuming the function you are looking for is quadratic (as you suppose), then $v(x)=ax^2+bx+c$ satisfies $v(0)=45000$ (we take as year $0$ the year $1952$), $v(10)=60000$ and $v(15)=140000.$
You have to solve the system
$$\left\{ \begin{array}{ccccccc} a \cdot 0^2 & + & b \cdot 0 & + & c & = & 45000\\ a \cdot 10^2 & + & b \cdot 10 & + & c & = & 60000 \\ a \cdot 15^2 & + & b \cdot 15 & + & c & = & 140000 \end{array} \right.$$
which solution is $a=2900/3, b=-24500/3, c=45000.$ That is,
$$v(x)=\displaystyle \frac{2900}{3}x^2-\frac{24500}{3}x+45000.$$
You are not supposed to use any specifically ratio change, if you assume quadratically behaviour, because the ratio change varies. You have to evaluate at the convenient $x$ (always assuming quadratic behaviour).