Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

python program: answer all questions and use comments to explain code (Demonstrate cancellation errors) A cancellation error occurs when you are manipulating a very large

python program: answer all questions and use comments to explain code image text in transcribed
image text in transcribed
(Demonstrate cancellation errors) A cancellation error occurs when you are manipulating a very large number with a very small number. The large number may cancel out the smaller number. For example, the result of 100000000.0+0.000000001 is equal to 100000000.0. To avoid cancellation errors and obtain more accurate results, carefully select the order of computation. For example, in computing the following series, you will obtain more accurate results by computing from right to left rather than from left to right: 1+21+31++n1 Write a program that compares the results of the summation of the preceding series, computing both from left to right and from right to left with n=50000. Ideally, your program should use one or more functions. QUESTION 4 Functions and Lists (Sequences) Here is the definition of a sequence: - The first, second, and third terms are 1. - The nth term is the (n1) th +(n2) th term +(n3) th term. So the 4th tem is the sum of the 1th2nd, and 3rd tems, and the 5th term is the sum of 2nd,3rd, and 4th terms etc. Thus the sequence looks like this: 1,1,1,3,5,9,17,31, ... Write a function call sequence( n ) that takes in an integer n and returns a list containing all of the terms in this sequence from 1 up to the ntit term. You will need to also write a short program to call and test this function

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions