! Copyright © 2008 Reginald Keith Ford II ! Newton's Method of approximating roots USING: kernel math math.derivatives derivatives ; IN: newtons-method : newton-method ( guess function -- x ) newton-precision [ [ newton-step ] keep ] times drop ;