Pi Approximation in Scheme


/ Published in: Scheme
Save to your folder(s)

Based on the pi approximation (100 - ((2125^3 + 214^3 + 30^3 + 37^2)/(82^5)))^(1/4), referenced in equation 57 at the referenced URL.


Copy this code and paste it in your HTML
  1. (expt (- 100 (/ (+ (expt 2125 3) (expt 214 3) (expt 30 3) (expt 37 2)) (expt 82 5))) .25)

URL: http://mathworld.wolfram.com/PiApproximations.html

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.