Created
January 23, 2024 07:01
-
-
Save EDDYMENS/ffa548c4d5ba6c3fcd55e270769a05af to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from decimal import Decimal | |
number = 2 | |
x = (number/2) | |
for _ in range(10000): | |
x = Decimal( x - ( ((x**2)-2) / (2*x) ) ) | |
print(x) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment