sicp-solutions/chapter-1/ex-1.15.txt

5 lines
212 B
Text

Every time we call sine we end up calling
(p (sine angle/3)), which becomes
(p (p (sine angle/3/3))), etc.
So we end up calling it once each time until angle reaches 0.1/
In other words ceil(log3(12.15/0.1)) = 5