Posted by Abigail on Wednesday, November 2, 2011 at 6:32pm.
These appear to be susceptible to solution using Newton's Divided Difference method.
For the first one,
n: 1 2 3 4 5
f(n): 6 28 64 114 178
d1(n)=f(n+1)-f(n): 22 36 50 64
d2(n)=[d1(n+1)-d1(n)]/2: 7 7 7 7
The second differences are constant. So, the final function has coefficients from the first entry in each row:
f(n) = 6 + 22(n-1) + 7(n-1)(n-2)
f(n) = 7x^2 + x - 2
This is the polynomial of lowest degree which fits all the given data points.
Read up on the method, and you can do the others easily. A web search on "divided difference interpolation formula" reveals lots of articles, and even a calculator at the ucla site.
pattern rule for
2,3, ___, 7, 11, 13, 17, ___
Related Questions
Algebra - i am stuck on this one math problem. The question is to write a rule ...
math patterning - Look over the following sequence of numbers. What are the next...
algebra 2 - Renee belongs to a bowling club. She scores 50, 52, 55, and 59 on ...
algebra - Renee belongs to a bowling club. She scores 50, 52, 55, and 59 on her ...
Math Grade 5 - A number pattern with the rule 6n, where n represents the ...
Algebra - Find a pattern where all the y's are 2. I have to make an x-y ...
math - 90,40,15. What is the next number in the pattern and what is the rule for...
4th grade - (math) find a rule. writhe the rule as an equasion. use the equasion...
MATH PATTERNS - USE THE RULE 1 LESS THAN 3 TIMES THE NUMBER TO MAKE A PATTERN ...
math - find the pattern... 28,300,10 There is no single pattern. Post more ...
For Further Reading