24小时热门版块排行榜    

Znn3bq.jpeg
查看: 2558  |  回复: 66
【奖励】 本帖被评价58次,作者pkusiyuan增加金币 45.6

pkusiyuan

银虫 (正式写手)


[资源] Numerical Methods (Cengage 2010)(with maple)

Contents
Preface . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ix
1 Mathematical Preliminaries and Error Analysis 1
1.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.2 Review of Calculus . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.3 Round-off Error and Computer Arithmetic . . . . . . . . . . . . . . 17
1.4 Errors in Scientific Computation . . . . . . . . . . . . . . . . . . . . 25
1.5 Computer Software . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34
2 Solutions of Equations of One Variable 39
2.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39
2.2 The Bisection Method . . . . . . . . . . . . . . . . . . . . . . . . . . 39
2.3 The Secant Method . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47
2.4 Newton’s Method . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
2.5 Error Analysis and Accelerating Convergence . . . . . . . . . . . . . 64
2.6 M¨uller’sMethod . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 70
2.7 Survey ofMethods and Software . . . . . . . . . . . . . . . . . . . . 77
3 Interpolation and Polynomial Approximation 79
3.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79
3.2 Lagrange Polynomials . . . . . . . . . . . . . . . . . . . . . . . . . . 81
3.3 Divided Differences . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95
3.4 Hermite Interpolation . . . . . . . . . . . . . . . . . . . . . . . . . . 104
3.5 Spline Interpolation . . . . . . . . . . . . . . . . . . . . . . . . . . . 111
3.6 Parametric Curves . . . . . . . . . . . . . . . . . . . . . . . . . . . . 124
3.7 Survey ofMethods and Software . . . . . . . . . . . . . . . . . . . . 131
4 Numerical Integration and Differentiation 133
4.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 133
4.2 Basic Quadrature Rules . . . . . . . . . . . . . . . . . . . . . . . . . 134
4.3 Composite Quadrature Rules . . . . . . . . . . . . . . . . . . . . . . 144
4.4 Romberg Integration . . . . . . . . . . . . . . . . . . . . . . . . . . . 155
4.5 Gaussian Quadrature . . . . . . . . . . . . . . . . . . . . . . . . . . . 164
4.6 Adaptive Quadrature . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
i
ii CONTENTS
4.7 Multiple Integrals . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 178
4.8 Improper Integrals . . . . . . . . . . . . . . . . . . . . . . . . . . . . 191
4.9 Numerical Differentiation . . . . . . . . . . . . . . . . . . . . . . . . 198
4.10 Survey of Methods and Software . . . . . . . . . . . . . . . . . . . . 210
5 Numerical Solution of Initial-Value Problems 213
5.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 213
5.2 TaylorMethods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 216
5.3 Runge-Kutta Methods . . . . . . . . . . . . . . . . . . . . . . . . . . 229
5.4 Predictor-CorrectorMethods . . . . . . . . . . . . . . . . . . . . . . 239
5.5 Extrapolation Methods . . . . . . . . . . . . . . . . . . . . . . . . . . 248
5.6 Adaptive Techniques . . . . . . . . . . . . . . . . . . . . . . . . . . . 255
5.7 Methods for Systems of Equations . . . . . . . . . . . . . . . . . . . 265
5.8 Stiff Differential Equations . . . . . . . . . . . . . . . . . . . . . . . . 277
5.9 Survey ofMethods and Software . . . . . . . . . . . . . . . . . . . . 283
6 Direct Methods for Solving Linear Systems 285
6.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 285
6.2 Gaussian Elimination . . . . . . . . . . . . . . . . . . . . . . . . . . . 285
6.3 Pivoting Strategies . . . . . . . . . . . . . . . . . . . . . . . . . . . . 298
6.4 Linear Algebra andMatrix Inversion . . . . . . . . . . . . . . . . . . 307
6.5 Matrix Factorization . . . . . . . . . . . . . . . . . . . . . . . . . . . 320
6.6 Techniques for SpecialMatrices . . . . . . . . . . . . . . . . . . . . . 327
6.7 Survey ofMethods and Software . . . . . . . . . . . . . . . . . . . . 337
7 Iterative Methods for Solving Linear Systems 339
7.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 339
7.2 Convergence of Vectors . . . . . . . . . . . . . . . . . . . . . . . . . . 340
7.3 Eigenvalues and Eigenvectors . . . . . . . . . . . . . . . . . . . . . . 350
7.4 The Jacobi and Gauss-Seidel Methods . . . . . . . . . . . . . . . . . 358
7.5 The SORMethod . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 365
7.6 Error Bounds and Iterative Refinement . . . . . . . . . . . . . . . . . 371
7.7 The Conjugate Gradient Method . . . . . . . . . . . . . . . . . . . . 379
7.8 Survey ofMethods and Software . . . . . . . . . . . . . . . . . . . . 394
8 Approximation Theory 397
8.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 397
8.2 Discrete Least Squares Approximation . . . . . . . . . . . . . . . . . 397
8.3 Continuous Least Squares Approximation . . . . . . . . . . . . . . . 408
8.4 Chebyshev Polynomials . . . . . . . . . . . . . . . . . . . . . . . . . 417
8.5 Rational Function Approximation . . . . . . . . . . . . . . . . . . . . 424
8.6 Trigonometric Polynomial Approximation . . . . . . . . . . . . . . . 431
8.7 Fast Fourier Transforms . . . . . . . . . . . . . . . . . . . . . . . . . 438
8.8 Survey ofMethods and Software . . . . . . . . . . . . . . . . . . . . 444
CONTENTS iii
9 Approximating Eigenvalues 445
9.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 445
9.2 Isolating Eigenvalues . . . . . . . . . . . . . . . . . . . . . . . . . . . 445
9.3 The PowerMethod . . . . . . . . . . . . . . . . . . . . . . . . . . . . 453
9.4 Householder’sMethod . . . . . . . . . . . . . . . . . . . . . . . . . . 467
9.5 The QRMethod . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 473
9.6 Survey ofMethods and Software . . . . . . . . . . . . . . . . . . . . 481
10 Solutions of Systems of Nonlinear Equations 483
10.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 483
10.2 Newton’s Method for Systems . . . . . . . . . . . . . . . . . . . . . . 486
10.3 Quasi-Newton Methods . . . . . . . . . . . . . . . . . . . . . . . . . 497
10.4 The Steepest Descent Method . . . . . . . . . . . . . . . . . . . . . . 505
10.5 Homotopy and Continuation Methods . . . . . . . . . . . . . . . . . 512
10.6 Survey of Methods and Software . . . . . . . . . . . . . . . . . . . . 521
11 Boundary-Value Problems for Ordinary Differential Equations 523
11.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 523
11.2 The Linear Shooting Method . . . . . . . . . . . . . . . . . . . . . . 524
11.3 Linear Finite Difference Methods . . . . . . . . . . . . . . . . . . . . 531
11.4 The Nonlinear Shooting Method . . . . . . . . . . . . . . . . . . . . 540
11.5 Nonlinear Finite-Difference Methods . . . . . . . . . . . . . . . . . . 547
11.6 Variational Techniques . . . . . . . . . . . . . . . . . . . . . . . . . . 552
11.7 Survey of Methods and Software . . . . . . . . . . . . . . . . . . . . 568
12 Numerical Methods for Partial-Differential Equations 571
12.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 571
12.2 Finite-Difference Methods for Elliptic Problems . . . . . . . . . . . . 573
12.3 Finite-Difference Methods for Parabolic Problems . . . . . . . . . . . 583
12.4 Finite-Difference Methods for Hyperbolic Problems . . . . . . . . . . 598
12.5 Introduction to the Finite-Element Method . . . . . . . . . . . . . . 607
12.6 Survey of Methods and Software . . . . . . . . . . . . . . . . . . . . 623
Bibliography . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 627
Answers for NumericalMethods . . . . . . . . . . . . . . . . . . . . . 633
Index . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 755
回复此楼

» 本帖附件资源列表

  • 欢迎监督和反馈:小木虫仅提供交流平台,不对该内容负责。
    本内容由用户自主发布,如果其内容涉及到知识产权问题,其责任在于用户本人,如对版权有异议,请联系邮箱:xiaomuchong@tal.com
  • 附件 1 : Numerical_Methods_(Cengage_2010)(with_maple).pdf
  • 2015-03-23 20:00:41, 7.65 M

» 收录本帖的淘帖专辑推荐

计算数学 uicorn3 2015重要

» 猜你喜欢

» 本主题相关价值贴推荐,对您同样有帮助:

已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
回帖支持 ( 显示支持度最高的前 50 名 )

人走茶不凉

银虫 (职业作家)


★★★ 三星级,支持鼓励

看看老外的数值方法跟国内教材有啥不同哈
19楼2015-03-26 08:23:03
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
简单回复
toroid2楼
2015-03-24 07:25   回复  
五星好评  顶一下,感谢分享!
askuyue3楼
2015-03-24 12:33   回复  
五星好评  顶一下,感谢分享!
askuyue4楼
2015-03-24 12:37   回复  
顶一下,感谢分享!
2015-03-24 15:33   回复  
五星好评  顶一下,感谢分享!
tonyhi6楼
2015-03-25 00:16   回复  
五星好评  顶一下,感谢分享!
m06z5117楼
2015-03-25 09:09   回复  
五星好评  顶一下,感谢分享!
wxq28288楼
2015-03-25 10:17   回复  
五星好评  顶一下,感谢分享!
laoguigui9楼
2015-03-25 10:43   回复  
五星好评  顶一下,感谢分享!
supervb10楼
2015-03-25 12:00   回复  
五星好评  顶一下,感谢分享!
2015-03-25 14:04   回复  
五星好评  顶一下,感谢分享!
zhangttqq12楼
2015-03-25 14:14   回复  
五星好评  顶一下,感谢分享!
xyxyyzs13楼
2015-03-25 15:43   回复  
五星好评  顶一下,感谢分享!
2015-03-25 18:55   回复  
五星好评  顶一下,感谢分享!
feiyuzhen15楼
2015-03-25 19:56   回复  
五星好评  顶一下,感谢分享!
joezhu195816楼
2015-03-26 05:10   回复  
五星好评  顶一下,感谢分享!
吠陀17楼
2015-03-26 07:03   回复  
五星好评  顶一下,感谢分享!
Sugar_cane18楼
2015-03-26 08:04   回复  
五星好评  顶一下,感谢分享!
zym100320楼
2015-03-26 08:37   回复  
五星好评  顶一下,感谢分享!
2015-03-26 09:52   回复  
五星好评  顶一下,感谢分享!
jianzhou22楼
2015-03-26 12:20   回复  
五星好评  顶一下,感谢分享!
shaohuiqdu23楼
2015-03-26 14:15   回复  
五星好评  顶一下,感谢分享!
1093124楼
2015-03-26 17:14   回复  
五星好评  顶一下,感谢分享!
wpfhuge25楼
2015-03-26 19:39   回复  
五星好评  顶一下,感谢分享!
qjhawk26楼
2015-03-26 21:39   回复  
五星好评  顶一下,感谢分享!
susufairy27楼
2015-03-26 22:02   回复  
五星好评  顶一下,感谢分享!
wangdarui28楼
2015-03-26 22:57   回复  
五星好评  顶一下,感谢分享!
forzaapis29楼
2015-03-26 23:24   回复  
五星好评  顶一下,感谢分享!
parkzhu30楼
2015-03-27 01:11   回复  
五星好评  顶一下,感谢分享!
yuanbing31楼
2015-03-27 10:09   回复  
五星好评  顶一下,感谢分享!
ybiao32楼
2015-03-27 19:25   回复  
五星好评  顶一下,感谢分享!
sandf33楼
2015-03-29 18:12   回复  
五星好评  顶一下,感谢分享!
2015-03-29 20:48   回复  
五星好评  顶一下,感谢分享!
zowe35楼
2015-03-29 20:52   回复  
五星好评  顶一下,感谢分享!
hshxs36楼
2015-03-30 07:10   回复  
顶一下,感谢分享!
2015-03-30 11:53   回复  
五星好评  顶一下,感谢分享!
cheersend38楼
2015-03-30 14:42   回复  
五星好评  顶一下,感谢分享!
ifmc123439楼
2015-03-30 15:53   回复  
五星好评  顶一下,感谢分享!
wangth092140楼
2015-03-31 18:22   回复  
五星好评  顶一下,感谢分享!
wsz1041楼
2015-04-02 06:49   回复  
五星好评  
yjlim880742楼
2015-04-11 20:17   回复  
五星好评  顶一下,感谢分享!
yuwei360143楼
2015-04-20 10:06   回复  
五星好评  顶一下,感谢分享!
Mr__Right44楼
2015-04-20 12:07   回复  
五星好评  顶一下,感谢分享!
imgeduo45楼
2015-05-26 19:41   回复  
五星好评  顶一下,感谢分享!
a658599846楼
2015-05-28 17:34   回复  
五星好评  顶一下,感谢分享!
zhmath0047楼
2015-07-19 12:40   回复  
五星好评  顶一下,感谢分享!
askuyue48楼
2015-08-05 19:09   回复  
顶一下,感谢分享!
Mr__Right49楼
2015-08-07 10:04   回复  
顶一下,感谢分享!
2015-09-26 08:13   回复  
三星好评  感谢分享 [ 发自手机版 http://muchong.com/3g ]
相关版块跳转 我要订阅楼主 pkusiyuan 的主题更新
☆ 无星级 ★ 一星级 ★★★ 三星级 ★★★★★ 五星级
普通表情 高级回复 (可上传附件)
最具人气热帖推荐 [查看全部] 作者 回/看 最后发表
[基金申请] 河北省自然科学基金 +5 Peterchao 2026-05-18 8/400 2026-05-24 11:58 by 晓晓爱翠翠
[基金申请] 西安交大新媒学院副院长用撤稿论文结题 +3 bjvtcliu 2026-05-24 5/250 2026-05-24 10:16 by kudofaye
[教师之家] 论文撤稿了 +3 bjvtcliu 2026-05-24 5/250 2026-05-24 10:06 by Equinoxhua
[教师之家] 某211大学教师把个人教师官方主页改成:我跑了我跑了我跑了!官宣跑路! +4 zju2000 2026-05-21 5/250 2026-05-24 09:35 by songwz
[考博] 26/27申博自荐 10+4 ZXW0202 2026-05-22 9/450 2026-05-24 08:47 by bjvtcliu
[硕博家园] 售SCI一区T0P文章,我:8.O.5.5.1.O.5.4,科目齐全,可+急 +3 hvkbtfonbv 2026-05-23 3/150 2026-05-24 08:01 by 9ps9vgkqva
[硕博家园] 售SCI一区T0P文章,我:8.O.5.5.1.O.5.4,科目齐全,可+急 +3 pmo95bazuy 2026-05-23 7/350 2026-05-24 06:35 by fpo5ljpv91
[基金申请] 揭秘青基评审内幕:几个A才能顺利中标 +3 国自然国社科中 2026-05-23 4/200 2026-05-23 15:37 by 2000zf36392
[基金申请] 青B发送上会通知了吗 +5 chemBioBro 2026-05-22 7/350 2026-05-23 12:35 by zhuifengzhy
[考博] 博士申请 +3 焦晓明 2026-05-21 3/150 2026-05-23 11:26 by mlc840311
[论文投稿] 投稿求助,期刊 +4 希冀,有书读 2026-05-20 8/400 2026-05-22 10:16 by 希冀,有书读
[基金申请] 面上本子正文33页,违规吗?会被低分嘛? +14 1234567wang 2026-05-17 16/800 2026-05-21 17:58 by 脆脆的饼干
[基金申请] 国自然评分 +4 无名者登山 2026-05-20 5/250 2026-05-21 16:35 by swuq
[基金申请] 国自然上会要求 +7 无名者登山 2026-05-18 11/550 2026-05-21 15:50 by draco1987
[基金申请] 提交了我也来说说感想 +9 fummck 2026-05-20 10/500 2026-05-21 14:17 by draco1987
[基金申请] 评审有感 +15 popular289 2026-05-18 26/1300 2026-05-21 10:35 by 西葫芦炒鸡蛋
[有机交流] 反应很差,大量原料没有反应 5+3 Mr.Zot 2026-05-19 8/400 2026-05-20 22:19 by Equinoxhua
[考博] 如果工作了想读博,可以边工作边读全日制嘛? 30+3 铁达火车 2026-05-18 5/250 2026-05-20 09:33 by tfang
[考博] 博士申请 +5 星…… 2026-05-18 6/300 2026-05-18 23:49 by 糊糊涂涂好
[硕博家园] 我在等一个没有答案的答案 +3 Love_MH 2026-05-17 3/150 2026-05-18 02:22 by 竹林孤影
信息提示
请填处理意见