Python implementations of numerical methods to find the square root of an input floating point number to an arbitrary precision. Includes a GUI dialog box to enter the input number and precision. The ...
start with an arbitray guess (ex: 1) square the guess and take the absolute value of the difference from N if this difference is close enough within some tolerance value (ex: 0.0001), then return the ...