Python lookup function f (x) = 0 root solution

Source: Internet
Author: User
Tags mathematical functions
This article describes how to solve the problem of finding functions f (x) 0 using Python, and related skills related to solving mathematical functions using Python, for more information about how to find a function f (x) = 0 in Python, see the example in this article. Share it with you for your reference. The specific implementation method is as follows:

''' root = ridder(f,a,b,tol=1.0e-9).  Finds a root of f(x) = 0 with Ridder's method.  The root must be bracketed in (a,b).'''import errorfrom math import sqrtdef ridder(f,a,b,tol=1.0e-9):    fa = f(a)  if fa == 0.0: return a  fb = f(b)  if fb == 0.0: return b  if fa*fb > 0.0: error.err('Root is not bracketed')  for i in range(30):   # Compute the improved root x from Ridder's formula    c = 0.5*(a + b); fc = f(c)    s = sqrt(fc**2 - fa*fb)    if s == 0.0: return None    dx = (c - a)*fc/s    if (fa - fb) < 0.0: dx = -dx    x = c + dx; fx = f(x)   # Test for convergence    if i > 0:      if abs(x - xOld) < tol*max(abs(x),1.0): return x    xOld = x   # Re-bracket the root as tightly as possible    if fc*fx > 0.0:      if fa*fx < 0.0: b = x; fb = fx      else:      a = x; fa = fx    else:      a = c; b = x; fa = fc; fb = fx  return None  print 'Too many iterations'

I hope this article will help you with Python programming.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.