Question: USE PYTHON CODE PLEASE! Using your Newton interpolation code (or some other method), write a function which guesses the next few numbers in a sequence
USE PYTHON CODE PLEASE!
Using your Newton interpolation code (or some other method), write a function which guesses the next few numbers in a sequence of numbers using polynomial interpolation. For instance, if you say guess(1,4,9,16) it should notice that you've given it the sequence of squares, and return [1,4,9,16,25,36,49] To make a python function that takes a variable number of arguments, use a star in the arguments definition, like this: def sum_plus_ten(*L): return sum(L)+10 sum_plus_ten(1,2,3,4,5,6,7)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
