Exercise 1.8. Newton's method for cube roots is based on the fact that if y is an approximation to
the cube root of x, then a better approximation is given by the value
(x/y2+2y)/3
Use this formula to implement a cube-root procedure analogous to the square-root procedure. (In
section 1.3.4 we will see how to implement Newton's method in general as an abstraction of these
square-root and cube-root procedures.)
(define (cube x)
(* x x x))
(define (square x)
(* x x ))
(define (result x y)
(/ (+ (/ x (square y)) (* 2 y)) 3))
(define (improve x guess)
(result x guess))
(define (good-enough? x guess)
(< (abs (- (* guess guess guess ) x))0.001))
(define (sqrt-iter x guess)
(if (good-enough? x guess)
guess
(sqrt-iter x (improve x guess)
)))
分享到:
相关推荐
On a search problem related to branch-and-bound procedures.pdfOn a search problem related to branch-and-bound procedures.pdfOn a search problem related to branch-and-bound procedures.pdfOn a search ...
It is shown that any recognition problem solved by a polynomial time-bounded nondeterministic Turing...measuring the complexity of proof procedures for the predicate calculus is introduced and discussed.
GMW 14729-2020 Procedures for High Humidity Test.pdf
GMW 14357-2012 Procedures of Test for Cellular and Related Materials.pdf
ISO 2859-1标准,也称为“Statistical sampling procedures for acceptance by attributes - Part 1: Single sampling schemes with one or more inspections”(统计抽样检验程序,用于验收属性 - 第1部分:一次或...
从给定文件的内容中,我们可以提取关于ACSN-13: Tape-and-Reel Procedures Introduction的知识点。这个文件似乎是关于Aptina公司所遵循的电子工业协会(EIA)标准481-C的磁带卷轴包装规格的介绍。 首先,文件提到了...
本文档主要围绕“Dell EMC Unity-Misc Procedures- Service Commands-3.pdf”这一资料展开,该文档详细介绍了Dell EMC Unity平台中的各种服务命令和服务密码变更等操作流程。 ### 一、概述 Dell EMC Unity是一款高...
VVV SunSpec-CSIP-Conformance-Test-Procedures-Results-Reporting-Specification-1.1 SunSpec-CSIP 测结果报告参考 2030.5规约通信相关资料 更多敬请阅读专栏
《ISO 3951-1_5 Series - Sampling procedures for inspection by variables》是一套国际标准化组织(ISO)制定的质量检验标准,旨在提供基于变量的抽样检验程序。这一系列标准详细阐述了如何通过定量数据对产品或...
【标题】"wintelent 的程序源码-wintelent procedures FOSS" 描述了一款名为 wintelent 的软件,它是基于自由与开放源代码软件(FOSS)原则开发的。wintelent 可能是一个实现了 Telnet 协议的客户端或服务器端程序,...
在Windows开发环境中,多进程(Multi-Process)是一种编程模型,它允许同时运行多个独立的程序实例,每个实例都有自己的内存空间和系统资源。在本文中,我们将深入探讨多进程的概念,以及如何在Visual C++(简称VC)...
美国大学生数学建模竞赛(Mathematical Contest in Modeling,简称MCM)是美国每年举办的一项备受推崇的大学生竞赛。MCM旨在汇集来自不同学科背景的优秀大学生,共同解决现实世界中的数学建模问题。...
"Multi-threaded-HTTP-procedures.rar" 提供了一个多线程HTTP断点续传程序的实例,旨在帮助开发者理解和实现这一功能,提高文件下载的效率和用户体验。 首先,我们来理解一下“多线程”和“HTTP断点续传”的概念。...
安装软件包安装与作曲家一起通过添加以下对composer.json的依赖关系来要求此软件包"mrblackus/laravel-storedprocedures" : "0.1.*" 然后使用composer update或composer install composer update composer install ...
本篇将深入探讨“Third-party-chat-room-procedures.rar”这个压缩包文件中涉及到的知识点,主要涵盖VC++、MFC以及Socket编程,特别关注如何使用这些技术来实现一个第三方聊天室程序。 首先,我们来看VC++。VC++是...
标题中的“ISO 2859-1_5 Series”是指国际标准化组织(ISO)发布的一系列关于属性抽样检验的规范,其中“ISO 2859-1”是核心部分,通常被称为“统计质量控制 - 属性抽样程序”。这个系列标准是质量管理领域的重要...
【标题】"complete-set-procedures.rar_runway_智能车光电组" 涉及的关键知识点主要围绕飞思卡尔智能车竞赛中的光电传感器组别以及如何实现有效的程序控制,以达到在2.5米或更远距离上的稳定运行。在这个项目中,...
ISO 3951-1_5 Series 是一套国际标准化组织(ISO)发布的关于变量检验抽样程序的标准文档。这套标准文件主要关注在质量控制和质量保证过程中如何使用统计抽样方法来评估产品或服务的特性。以下是这些标准的具体内容...
本文将详细介绍标题为“Smoke-sensor-related-procedures.rar”的压缩包文件中,作者调试通过的烟雾传感器C程序实现。 一、烟雾传感器原理 烟雾传感器是利用特定的物理或化学原理,对环境中烟雾浓度进行检测的装置...