>백엔드 개발 >파이썬 튜토리얼 >Bisection Method를 사용하여 제곱근을 구합니다.

Bisection Method를 사용하여 제곱근을 구합니다.

高洛峰
高洛峰원래의
2016-10-19 13:40:273567검색

이분법을 사용하여 제곱근을 구합니다.

def sqrtBI(x, epsilon):
    assert x>0, 'X must be non-nagtive, not ' + str(x)
    assert epsilon > 0, 'epsilon must be postive, not ' + str(epsilon)
  
    low = 0
    high = x
    guess = (low + high)/2.0
    counter = 1
    while (abs(guess ** 2 - x) > epsilon) and (counter <= 100):
        if guess ** 2 < x:
            low = guess
        else :
            high = guess
        guess = (low + high)/2.0
        counter += 1
    return guess

확인하세요.

>>> sqrtBI(2,0.000001)

>>> 1.41421365738

위 방법은 X

>>> sqrtBI(0.25,0.000001)

>>> 0.25

그럼 0.25의 제곱근은 어떻게 구할까요?

위 코드를 살짝만 바꿔보세요. 코드의 6행과 7행을 참고하세요.

def sqrtBI(x, epsilon):
    assert x>0, &#39;X must be non-nagtive, not &#39; + str(x)
    assert epsilon > 0, &#39;epsilon must be postive, not &#39; + str(epsilon)
  
    low = 0
    high = max(x, 1.0)
    ## high = x
    guess = (low + high)/2.0
    counter = 1
    while (abs(guess ** 2 - x) > epsilon) and (counter <= 100):
        if guess ** 2 < x:
            low = guess
        else :
            high = guess
        guess = (low + high)/2.0
        counter += 1
    return guess

확인:

>>> sqrtBI(0.25,0.000001)

>>> 0.5


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
이전 기사:Python의 객체 복사다음 기사:Python의 객체 복사