Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

For the answer I tried a = 1 b = 5 n = 8 h = (b-a) / n List = [] for i in

image text in transcribed

For the answer I tried

a = 1 b = 5 n = 8 h = (b-a) / n List = [] for i in range(n+1): List.append(a+i*h) print (List) 

But this is what I get returned

[1] [1, 1] [1, 1, 1] [1, 1, 1, 1] [1, 1, 1, 1, 1] [1, 1, 1, 1, 1, 1] [1, 1, 1, 1, 1, 1, 1] [1, 1, 1, 1, 1, 1, 1, 1] [1, 1, 1, 1, 1, 1, 1, 1, 1]

3. generate equally spaced coordinates We want to generate n 1 equally spaced coordinates in la, b]. Store the coordinates in a list. Start with an empty list, use a for loop and append each coordinate to the list. With n intervals, corresponding to n+ 1 points, in [a, b], each interval has length h -a). The coordinates can then be generated by the formula Xi = a + ih, i = 0, .., n + 1

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