Algebra – How to Write an Equation That Matches Any Sequence

algebra-precalculus

One thing I have been wondering about lately is how to write an equation that describes a pattern of numbers. What I mean is:

x   0    1    2 
y   1    5    9

If I have this, I can tell that an equation that describes this would be $y=4x+1$. In fact, I don't even need the third pair of numbers. It's very easy when the equation is a straight line. But when the equation is a parabola, its not always that easy. For example:

x   0    1    2 
y   1    2    5  

I can tell this is $ y=x^2+1$, because I recognize the pattern. But I can't always tell just by looking at the numbers what the right equation should be. Is there some way to always know the right equation? I know that if you get the $x=0$ term you can get the $c$ in $y=ax^2+bx+c$, but that's not enough to let me solve it like I can when the equation is just a line.

For example, can someone show me how you would do it for

x    0     1     2
y    5     4     7

It's not a homework question, I promise!

Best Answer

If you know your relationship is going to be a polynomial, then there are some pretty (conceptually) simple ways you can do this.

If you know what degree your polynomial is (line, parabola, cubic, etc.) then your job will be much easier. But if not, then you simply need to look at the number of points you have.

  • If you are given one point, the best you can do is of degree 0 ( y = k )
  • If you are given two points, the best you can do is of degree 1 ( y = A x + B )
  • If you are given three points, the best you can do is of degree 2 ( y = A x2 + B x + C )
  • If you are given four points, the best you can do is of degree 3 ( y = A x3 + B x2 + C x + D )
  • etc.

When I say "the best you can do", what I mean is -- if you have a parabola, but are only given two points, then you really can't identify the parabola. But you can say that it's a simple line.

Let's assume you have three points. The "best you can do" is assume that it is degree 2. If it is actually of degree one, your answer will magically turn into a line ( your x^2 coefficient will be 0 )

The basic idea of solving relationships/equations is:

If you have n unknowns, you need n equations/points.

Notice how, in the form of the Parabola ( y = A x2 + B x + C ), you have three unknowns? And also three equations! (points)

Let's pick three arbitrary points

x   1    2    4
y   6    7    3

You would set up three equations:

6 = 12 * A + 1 * B + C

7 = 22 * A + 2 * B + C

3 = 42 * A + 4 * B + C

Three equations, three unknowns. You should be able to solve this with a combination of most system-of-equation-solving rules.

In our case, we find:

A = -1
B = 4
C = 3

So our equation is y = -x2 + 4 x + 3

Note that, if your original three points formed a line, your $A$ would $= 0$


However, if your equation is NOT a polynomial, then you are left with little more than guess and check, plugging in various coefficients and trials (exponential? trigonometric?)

The beauty of the polynomial approach is that a polynomial of high enough degree will always fit any list of points. (provided that the points form a function)