Roman C. answered 08/27/15
Tutor
5.0
(853)
Masters of Education Graduate with Mathematics Expertise
If a sequence {an} is generated by a polynomial of degree n, then the differences of consecutive terms {bn = an+1 - an} (called the first differences) form a sequence generated by a polynomial of degree n-1. The n-th differences sequence is constant
-1 2 7 14 23 ← Your sequence
3 5 7 9 ← First differences
2 2 2 ← Second differences
So your function is quadratic f(x) = ax2 + bx + c
f(1)=-1, f(2)=2, and f(3) = 7 gives a system
(1) a +b +c = -1
(2) 4a+2b+c = 2
(3) 9a+3b+c = 7
Let's solve the system.
(4)=(2)-(1) 3a + b = 3
(5)=(3)-(2) 5a + b = 5
(6)=(5)-(4) 2a = 2
a = 1
b = 3 - 3a = 3-3·1 = 0
c = -1 - a - b = -1 - 1 - 0 = -2
So y = x2 - 2
When x=13, y=132-2 = 167.
When x=15, y=152-2 = 223.