Skip to main content
Engineering LibreTexts

20.5: Square Roots

  • Page ID
    15394
  • \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \) \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}} \)\(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\) \(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\)\(\newcommand{\AA}{\unicode[.8,0]{x212B}}\)

    Loops are often used in programs that compute numerical results by starting with an approximate answer and iteratively improving it.

    For example, one way of computing square roots is Newton’s method. Suppose that you want to know the square root of a. If you start with almost any estimate, x, you can compute a better estimate with the following formula:

    \[ y = \dfrac{x + a/x}{2} \nonumber \]

    For example, if a is 4 and x is 3:

    >>> a = 4.0
    >>> x = 3.0
    >>> y = (x + a/x) / 2
    >>> print y
    2.16666666667
    

    Which is closer to the correct answer \( (\sqrt{4} = 2) \). If we repeat the process with the new estimate, it gets even closer:

    >>> x = y
    >>> y = (x + a/x) / 2
    >>> print y
    2.00641025641
    

    After a few more updates, the estimate is almost exact:

    >>> x = y
    >>> y = (x + a/x) / 2
    >>> print y
    2.00001024003
    >>> x = y
    >>> y = (x + a/x) / 2
    >>> print y
    2.00000000003
    

    In general we don’t know ahead of time how many steps it takes to get to the right answer, but we know when we get there because the estimate stops changing:

    >>> x = y
    >>> y = (x + a/x) / 2
    >>> print y
    2.0
    >>> x = y
    >>> y = (x + a/x) / 2
    >>> print y
    2.0
    

    When y == x, we can stop. Here is a loop that starts with an initial estimate, x, and improves it until it stops changing:

    while True:
        print x
        y = (x + a/x) / 2
        if y == x:
            break
        x = y
    

    For most values of a this works fine, but in general it is dangerous to test float equality. Floating-point values are only approximately right: most rational numbers, like 1/3, and irrational numbers, like \( \sqrt{2} \), can’t be represented exactly with a float.

    Rather than checking whether x and y are exactly equal, it is safer to use the built-in function abs to compute the absolute value, or magnitude, of the difference between them:

        if abs(y-x) < epsilon:
            break
    

    Where epsilon has a value like 0.0000001 that determines how close is close enough.

    Exercise \(\PageIndex{1}\)

    Encapsulate this loop in a function called square_root that takes a as a parameter, chooses a reasonable value of x, and returns an estimate of the square root of a.


    This page titled 20.5: Square Roots is shared under a CC BY-NC-SA 3.0 license and was authored, remixed, and/or curated by Allen B. Downey (Green Tea Press) .

    • Was this article helpful?