Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,7 @@
|
|||
#lang racket
|
||||
(define (agm a g [ε 1e-15])
|
||||
(if (<= (- a g) ε)
|
||||
a
|
||||
(agm (/ (+ a g) 2) (sqrt (* a g)) ε)))
|
||||
|
||||
(agm 1 (/ 1 (sqrt 2)))
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
#lang racket
|
||||
(require math/bigfloat)
|
||||
(bf-precision 200)
|
||||
(bfagm 1.bf (bf/ (bfsqrt 2.bf)))
|
||||
Loading…
Add table
Add a link
Reference in a new issue