Question

In: Advanced Math

Given the series of numbers: {1.,0.612547,0.466856,0.375214,0.311459,0.264691,0.229088,0.201197,0.17884,0.160573,0.145406,0.132639,0.121764,0.112404,0.104273,0.0971538,0.0908741,0.0852989,0.08032,0.0758497,0.0718166,0.0681615,0.0648355,0.0617975,0.0590128

Given the series of numbers:
{1.,0.612547,0.466856,0.375214,0.311459,0.264691,0.229088,0.201197,0.17884,0.160573,0.145406,0.132639,0.121764,0.112404,0.104273,0.0971538,0.0908741,0.0852989,0.08032,0.0758497,0.0718166,0.0681615,0.0648355,0.0617975,0.0590128,0.056452,0.05409,0.0519052,0.0498791,0.0479955,0.0462403,0.0446012,0.0430675,0.0416295,0.0402789,0.0390081,0.0378105,0.0366801,0.0356115,0.0346001,0.0336414,0.0327315}

What is the 100th term to 12-decimal places? How is this sequence made?

Solutions

Expert Solution

Solution:

%plot of the given data and fitted curve in matlab

close all
clear all


y=[1,0.612547,0.466856,0.375214,0.311459,0.264691,0.229088,...
0.201197,0.17884,0.160573,0.145406,0.132639,0.121764,0.112404,...
0.104273,0.0971538,0.0908741,0.0852989,0.08032,0.0758497,0.0718166,0.0681615,0.0648355,0.0617975,0.0590128,0.056452,0.05409,...
0.0519052,0.0498791,0.0479955,0.0462403,0.0446012,0.0430675,...
0.0416295,0.0402789,0.0390081,0.0378105,0.0366801,0.0356115,...
0.0346001,0.0336414,0.0327315];
x=1:length(y);
p = polyfit(x,y,5) %polynomial of degree 5 fit of the data
y1 = polyval(p,x);
figure
plot(x,y,'o')
hold on
plot(x,y1)
hold off

%output

p =

 Columns 1 through 5:

  -0.00000019943   0.00002447160  -0.00113191903   0.02452586379  -0.25205830228

 Column 6:

   1.10494242333

hence the general term of the given sequence

substituing n =100 to get 100th term of the sequence is given by

 -457.9455002640371

Related Solutions

The Fibonacci series of numbers is a favorite of mathematicians, and goes as follows: 1, 1,...
The Fibonacci series of numbers is a favorite of mathematicians, and goes as follows: 1, 1, 2, 3, 5, 8, 13, 21, . . . That is, the first two numbers are 1, and every subsequent number is the sum of the previous two. The mathematical definition as a recursive function is the following. ∀n = 0, 1, 2, . . . F(n) = { 1 if n <=1 F(n-1) + F(n-2) if n > 1 The closed form of...
Assignment: Enter a linear series of numbers 1, 2, 3, . . . . . 100...
Assignment: Enter a linear series of numbers 1, 2, 3, . . . . . 100 in column A from A1 to A100. Enter a second series of numbers 20, 22, 24, . . . . . 218 in Column “B” from B1 to B100. Plot Column “B” as a function of column “A”. Use a linear trend-line and find the equation of the line. Specify the slope and the y-intercept of the line. Save your file and submit it...
Part 1: Write a program that finds the sum and average of a series of numbers...
Part 1: Write a program that finds the sum and average of a series of numbers entered by the user. The program will first ask the user how many numbers there are. It then prompts the user for each of the numbers in turn and prints out the sum, average, the list of number from the user. Note: the average should always be a float, even if the user inputs are all ints. Part 2: Same as part 1 except...
The Fibonacci sequence is the series of numbers 0, 1, 1, 2, 3, 5, 8,.... Formally,...
The Fibonacci sequence is the series of numbers 0, 1, 1, 2, 3, 5, 8,.... Formally, it can be expressed as: fib0 = 0 fib1 = 1 fibn = fibn-1 + fibn-2 Write a multithreaded C++ program that generates the Fibonacci series using the pthread library. This program should work as follows: The user will enter on the command line the number of Fibonacci numbers that the program will generate. The program will then create a separate thread that will...
Python: Using Jupyter Notebook 1. Write code to generate Fibonacci series. Fibonacci numbers – 1, 1,...
Python: Using Jupyter Notebook 1. Write code to generate Fibonacci series. Fibonacci numbers – 1, 1, 2, 3, 5, 8, … 2. Check if a number is an Armstrong number A positive integer is called an Armstrong number of order n if abcd... = a^n + b^n + c^n + d^n + ... In case of an Armstrong number of 3 digits, the sum of cubes of each digits is equal to the number itself. For example: 153 = 1*1*1...
1. Given the series: ∞∑k=1 2/k(k+2) does this series converge or diverge? converges diverges If the...
1. Given the series: ∞∑k=1 2/k(k+2) does this series converge or diverge? converges diverges If the series converges, find the sum of the series: ∞∑k=1 2/k(k+2)= 2. Given the series: 1+1/4+1/16+1/64+⋯ does this series converge or diverge? diverges converges If the series converges, find the sum of the series: 1+1/4+1/16+1/64+⋯=
1.write a small program using a loop to add a series of numbers 2.write a function...
1.write a small program using a loop to add a series of numbers 2.write a function called "main" that performs several given steps. Be sure to call the main() function so that its code executes In python and doesn't have to be long. just long enough to do what it says. Thank you.
Using Python: 1. Compute the difference of differences between consecutive numbers of a series: input ser...
Using Python: 1. Compute the difference of differences between consecutive numbers of a series: input ser = pd.Series([1, 3, 6, 10, 15, 21, 27, 35]) output: [nan, 2.0, 3.0, 4.0, 5.0, 6.0, 6.0, 8.0] [nan, nan, 1.0, 1.0, 1.0, 1.0, 0.0, 2.0] 2. Compute the euclidean distance between two series: Input: p = pd.Series([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]) q = pd.Series([10, 9, 8, 7, 6, 5, 4, 3, 2, 1]) Desired Output: 18.165
Letter Separated Numbers (C++) I've encountered a corrupted database that has a series of important numbers,...
Letter Separated Numbers (C++) I've encountered a corrupted database that has a series of important numbers, but instead of being separated by a space, the spaces have been randomly changed in alphabetic characters. Write a function named "my_numbers" that can take a string like "18y5638b-78" and return a vector of ints {18, 5638, -78}. Thanks!
1. Prove that given n + 1 natural numbers, there are always two of them such...
1. Prove that given n + 1 natural numbers, there are always two of them such that their difference is a multiple of n. 2. Prove that there is a natural number composed with the digits 0 and 5 and divisible by 2018. both questions can be solved using pigeonhole principle.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT