Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In the below code of Python implementation of Regula Falsi Method, the equation in return variable should be taken as input. The code should work

In the below code of Python implementation of Regula Falsi Method, the equation in return variable should be taken as input. The code should work for any type of equation as here we could just update in return variable so it should be taken as user input. Kindly update the code.

Code:

import math def f(x): return 2*x*math.cos(2*x)-(x+1)*(x+1) def RegularFalsi(x0,x1,e): Iteration = 1 condition = True while condition: x2 = x0 - (x1-x0) * f(x0)/( f(x1) - f(x0) ) print('Iteration-%d' % (Iteration)) print('x2 = %0.6f and f(x2) = %0.6f'% (x2, f(x2))) if f(x0) * f(x2) < 0: x1 = x2 else: x0 = x2 Iteration = Iteration + 1 condition = abs(f(x2)) > e print(' Required root is: %0.8f' % x2) x0 = input('Enter Value of a: ') x1 = input('Enter Value of b: ') e = input('Tolerable Error: ') x0 = float(x0) x1 = float(x1) e = float(e) if f(x0) * f(x1) > 0.0: print('Given guess values do not bracket the root.') print('Try Again with different guess values.') else: RegularFalsi(x0,x1,e)

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

Recommended Textbook for

Introduction to Wireless and Mobile Systems

Authors: Dharma P. Agrawal, Qing An Zeng

4th edition

1305087135, 978-1305087132, 9781305259621, 1305259629, 9781305537910 , 978-130508713

More Books

Students also viewed these Programming questions