「SICP勉強会 #3」向け復習経過1

;;1.1.3 Evaluating Combination

Gauche本18章

;;1.1.5 The Substitution Model for Procedure Application;手続き適用における置き換えモデル


 一先ず、読むの2回目だからなんとなく分かりますね。
Gauche本11章の評価モデル辺りの話っぽいが、英語読むのめんどくさいよね。


lisp applicative-order
:作用順序(evaluate the arguments and then apply)

scheme normal-order
:正規順序(full expand and then reduce)


思いっきり、逆でした。恥ずかしい>w<

sheme applicative-order
:作用順序(evaluate the arguments and then apply)

lisp normal-order
:正規順序(full expand and then reduce)



;;1.1.7 Example: Square Roots by Newton's Method
;ニュートン法による平方根

;exercise1.7
ほにゃららを説明?
;exercise1.8
三乗根導出


;;1.1.8 Peocedures a Black-Box Abstractions