RosettaCodeData/Task/Arithmetic-geometric-mean/PicoLisp/arithmetic-geometric-mean.l

11 lines
157 B
Text
Raw Permalink Normal View History

2013-04-10 14:58:50 -07:00
(scl 80)
(de agm (A G)
(do 7
(prog1 (/ (+ A G) 2)
2014-01-17 05:32:22 +00:00
(setq G (sqrt A G) A @) ) ) )
2013-04-10 14:58:50 -07:00
(round
2014-01-17 05:32:22 +00:00
(agm 1.0 (*/ 1.0 1.0 (sqrt 2.0 1.0)))
2013-04-10 14:58:50 -07:00
70 )