Newton's method to find square root

Source: Internet
Author: User

There are many ways to find the square root, here is the Newton method to find the square root.

The method is this: if you have a guess Y for the value of the square root of x, then you can get a better guess by doing a simple operation: only the average value of Y and X/y is required (he is closer to the actual square root)

Code implementation:

float sqrt (float  x) {    float guess = x;      while 0.0001 )    {        2;    }     return guess;}

Note: This square root algorithm is actually a special case of Newton's method, and Newton's method is a general technique for finding the root of the equation.

Newton's method to find square root

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.