Advertisement
Geometrian

Square Root Series

Feb 10th, 2015
480
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. >>> #http://math.stackexchange.com/questions/1140503/nested-radicals-of-1000-square-roots
  2. >>> x = 0.5 * (9.0 - 17**0.5)
  3. >>> a0 = x ** 0.5
  4. >>> a1 = (x+a0)**0.5
  5. >>> x, a0, a1
  6. (2.4384471871911697, 1.5615528128088303, 2.0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement