A concise introduction to numerical analysis:
Saved in:
Main Author: | |
---|---|
Format: | Book |
Language: | English |
Published: |
Boca Raton ; London ; New York
CRC Press, Taylor & Francis Group
[2016]
|
Series: | A Chapman & Hall book
|
Subjects: | |
Online Access: | Inhaltsverzeichnis Klappentext |
Item Description: | Includes bibliographical references and index |
Physical Description: | xv, 292 pages Illustrationen, Diagramme |
ISBN: | 9781498712187 1498712185 |
Staff View
MARC
LEADER | 00000nam a2200000 c 4500 | ||
---|---|---|---|
001 | BV043638242 | ||
003 | DE-604 | ||
005 | 20230414 | ||
007 | t | ||
008 | 160623s2016 xxua||| |||| 00||| eng d | ||
010 | |a 015041395 | ||
020 | |a 9781498712187 |c hardback |9 978-1-4987-1218-7 | ||
020 | |a 1498712185 |c hardback |9 1-4987-1218-5 | ||
035 | |a (OCoLC)946104361 | ||
035 | |a (DE-599)BVBBV043638242 | ||
040 | |a DE-604 |b ger |e rda | ||
041 | 0 | |a eng | |
044 | |a xxu |c US | ||
049 | |a DE-703 |a DE-19 | ||
050 | 0 | |a QA297 | |
082 | 0 | |a 518 |2 23 | |
084 | |a SK 900 |0 (DE-625)143268: |2 rvk | ||
100 | 1 | |a Faul, Anita |e Verfasser |0 (DE-588)1150897651 |4 aut | |
245 | 1 | 0 | |a A concise introduction to numerical analysis |c A.C. Faul, University of Cambridge, UK |
264 | 1 | |a Boca Raton ; London ; New York |b CRC Press, Taylor & Francis Group |c [2016] | |
264 | 4 | |c © 2016 | |
300 | |a xv, 292 pages |b Illustrationen, Diagramme | ||
336 | |b txt |2 rdacontent | ||
337 | |b n |2 rdamedia | ||
338 | |b nc |2 rdacarrier | ||
490 | 0 | |a A Chapman & Hall book | |
500 | |a Includes bibliographical references and index | ||
650 | 4 | |a Numerical analysis |v Textbooks | |
650 | 0 | 7 | |a Numerische Mathematik |0 (DE-588)4042805-9 |2 gnd |9 rswk-swf |
689 | 0 | 0 | |a Numerische Mathematik |0 (DE-588)4042805-9 |D s |
689 | 0 | |5 DE-604 | |
856 | 4 | 2 | |m Digitalisierung UB Bayreuth - ADAM Catalogue Enrichment |q application/pdf |u http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=029052124&sequence=000003&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |3 Inhaltsverzeichnis |
856 | 4 | 2 | |m Digitalisierung UB Bayreuth - ADAM Catalogue Enrichment |q application/pdf |u http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=029052124&sequence=000004&line_number=0002&func_code=DB_RECORDS&service_type=MEDIA |3 Klappentext |
999 | |a oai:aleph.bib-bvb.de:BVB01-029052124 |
Record in the Search Index
_version_ | 1804176376963530752 |
---|---|
adam_text | Contents
List of Figures xi
Preface xiii
Acknowledgments XV
Chapter 1 ■ Fundamentals 1
1.1 Floating Point Arithmetic 1
1.2 Overflow and Underflow 3
1.3 Absolute, Relative Error, Machine Epsilon 4
1.4 Forward and Backward Error Analysis 6
1.5 Loss of Significance 8
1.6 Robustness 11
1.7 Error Testing and Order of Convergence 12
1.8 Computational Complexity 14
1.9 Condition 15
1.10 Revision Exercises 19
Chapter 2 ■ Linear Systems 23
2.1 Simultaneous Linear Equations 23
2.2 Gaussian Elimination and Pivoting 25
2.3 LU Factorization 27
2.4 Cholesky Factorization 32
2.5 QR Factorization 34
2.6 The Gram---Schmidt Algorithm 36
2.7 Givens Rotations 38
2.8 Householder Reflections 41
2.9 Linear Least Squares 42
2.10 Singular Value Decomposition 43
2.11 Iterative Schemes and Splitting 46
2.12 Jacobi and Gauss-Seidel Iterations 48
vii
viii ■ Contents
2.13 Relaxation 51
2.14 Steepest Descent Method 52
2.15 Conjugate Gradients 56
2.16 Krylov Subspaces and Pre-Conditioning 59
2.17 Eigenvalues and Eigenvectors 63
2.18 The Power Method 63
2.19 Inverse Iteration 67
2.20 Deflation 69
2.21 Revision Exercises 72
Chapter 3 ■ Interpolation and Approximation Theory________________79
3.1 Lagrange Form of Polynomial Interpolation 79
3.2 Newton Form of Polynomial Interpolation 84
3.3 Polynomial Best Approximations 90
3.4 Orthogonal polynomials 91
3.5 Least-Squares Polynomial Fitting 94
3.6 The Peano Kernel Theorem 95
3.7 Splines 98
3.8 B-Spline 105
3.9 Revision Exercises 110
Chapter 4 ■ Non-Linear Systems____________________________________113
4.1 Bisection, Régula Falsi, and Secant Method 113
4.2 Newton’s Method 116
4.3 Broyden’s Method 119
4.4 Householder Methods 121
4.5 Müller’s Method 122
4.6 Inverse Quadratic Interpolation 123
4.7 Fixed Point Iteration Theory 124
4.8 Mixed Methods 126
4.9 Revision Exercises 127
Chapter 5 ■ Numerical Integration_________________________________131
5.1 Mid-Point and Trapezium Rule 131
5.2 The Peano Kernel Theorem 133
5.3 Simpson’s Rule 135
Contents ■ ix
5.4 Newton-Cotes Rules 137
5.5 Gaussian Quadrature 138
5.6 Composite Rules 145
5.7 Multi-Dimensional Integration 150
5.8 Monte Carlo Methods 152
5.9 Revision Exercises 153
Chapter 6 ■ ODEs_________________________________________________157
6.1 One-Step Methods 157
6.2 Multistep Methods, Order, and Consistency 159
6.3 Order Conditions 162
6.4 Stiffness and A-Stability 164
6.5 Adams Methods 169
6.6 Backward Differentiation Formulae 172
6.7 The Milne and Zadunaisky Device 174
6.8 Rational Methods 177
6.9 Runge-Kutta Methods 179
6.10 Revision Exercises 201
Chapter 7 ■ Numerical Differentiation____________________________205
7.1 Finite Differences 206
7.2 Differentiation of Incomplete or Inexact Data 209
Chapter 8 ■ PDEs________________________________________________211
8.1 Classification of PDEs 211
8.2 Parabolic PDEs 213
8.2.1 Finite Differences 214
8.2.2 Stability and Its Eigenvalue Analysis 217
8.2.3 Cauchy Problems and the Fourier Analysis
of Stability 222
8.3 Elliptic PDEs 227
8.3.1 Computational Stencils 228
8.3.2 Sparse Algebraic Systems Arising from
Computational Stencils 233
8.3.3 Hockney Algorithm 235
8.3.4 Multigrid Methods 238
8.4 Parabolic PDEs in Two Dimensions 243
x ■ Contents
8.4.1 Splitting 246
8.5 Hyperbolic PDEs 253
8.5.1 Advection Equation 253
8.5.2 The Wave Equation 256
8.6 Spectral Methods 258
8.6.1 Spectral Solution to the Poisson Equation 267
8.7 Finite Element Method 269
8.8 Revision Exercises 277
Bibliography 285
Index
287
Numerical Analysis Mathematical Computation
This textbook provides an accessible and concise introduction to nu-
merical analysis for upper undergraduate and beginning graduate stu-
dents from various backgrounds. It was developed from the lecture
notes of four successful courses on numerical analysis taught within
the MPhil of Scientific Computing at the University of Cambridge. The
book is easily accessible, even to those with limited knowledge of
mathematics. 1
Students will get a concise, but thorough introduction to numerical
analysis. In addition the algorithmic principles are emphasized to en-
courage a deeper understanding of why an algorithm is suitable, and
sometimes unsuitable, for a particular problem.
A Concise Introduction to Numerical Analysis strikes a balance be-
tween being mathematically comprehensive, but not overwhelming
with mathematical detail. In some places where further detail was felt
to be out of scope of the book, the reader is referred to further reading.
The book uses MATLAB® implementations to demonstrate the work-
ings of the method and thus MATLAB’s own implementations are
avoided, unless they are used as building blocks of an algorithm. In
some cases the listings are printed in the book, but all are available
online on the book’s page at www.crcpress.com.
Most implementations are in the form of functions returning the out-
come of the algorithm. Also, examples for the use of the functions are
given. Exercises are included in line with the text where appropriate,
and each chapter ends with a selection of revision exercises. Solutions
to odd-numbered exercises are also provided on the book’s page at
www.crcpress.com.
This textbook is also an ideal resource for graduate students coming
from other subjects who will use numerical techniques extensively in
their graduate studies.
ISBN: B70-l-4eIS?-iaia-7
|
any_adam_object | 1 |
author | Faul, Anita |
author_GND | (DE-588)1150897651 |
author_facet | Faul, Anita |
author_role | aut |
author_sort | Faul, Anita |
author_variant | a f af |
building | Verbundindex |
bvnumber | BV043638242 |
callnumber-first | Q - Science |
callnumber-label | QA297 |
callnumber-raw | QA297 |
callnumber-search | QA297 |
callnumber-sort | QA 3297 |
callnumber-subject | QA - Mathematics |
classification_rvk | SK 900 |
ctrlnum | (OCoLC)946104361 (DE-599)BVBBV043638242 |
dewey-full | 518 |
dewey-hundreds | 500 - Natural sciences and mathematics |
dewey-ones | 518 - Numerical analysis |
dewey-raw | 518 |
dewey-search | 518 |
dewey-sort | 3518 |
dewey-tens | 510 - Mathematics |
discipline | Mathematik |
format | Book |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>01918nam a2200433 c 4500</leader><controlfield tag="001">BV043638242</controlfield><controlfield tag="003">DE-604</controlfield><controlfield tag="005">20230414 </controlfield><controlfield tag="007">t</controlfield><controlfield tag="008">160623s2016 xxua||| |||| 00||| eng d</controlfield><datafield tag="010" ind1=" " ind2=" "><subfield code="a">015041395</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9781498712187</subfield><subfield code="c">hardback</subfield><subfield code="9">978-1-4987-1218-7</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">1498712185</subfield><subfield code="c">hardback</subfield><subfield code="9">1-4987-1218-5</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)946104361</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(DE-599)BVBBV043638242</subfield></datafield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">DE-604</subfield><subfield code="b">ger</subfield><subfield code="e">rda</subfield></datafield><datafield tag="041" ind1="0" ind2=" "><subfield code="a">eng</subfield></datafield><datafield tag="044" ind1=" " ind2=" "><subfield code="a">xxu</subfield><subfield code="c">US</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-703</subfield><subfield code="a">DE-19</subfield></datafield><datafield tag="050" ind1=" " ind2="0"><subfield code="a">QA297</subfield></datafield><datafield tag="082" ind1="0" ind2=" "><subfield code="a">518</subfield><subfield code="2">23</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">SK 900</subfield><subfield code="0">(DE-625)143268:</subfield><subfield code="2">rvk</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Faul, Anita</subfield><subfield code="e">Verfasser</subfield><subfield code="0">(DE-588)1150897651</subfield><subfield code="4">aut</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">A concise introduction to numerical analysis</subfield><subfield code="c">A.C. Faul, University of Cambridge, UK</subfield></datafield><datafield tag="264" ind1=" " ind2="1"><subfield code="a">Boca Raton ; London ; New York</subfield><subfield code="b">CRC Press, Taylor & Francis Group</subfield><subfield code="c">[2016]</subfield></datafield><datafield tag="264" ind1=" " ind2="4"><subfield code="c">© 2016</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">xv, 292 pages</subfield><subfield code="b">Illustrationen, Diagramme</subfield></datafield><datafield tag="336" ind1=" " ind2=" "><subfield code="b">txt</subfield><subfield code="2">rdacontent</subfield></datafield><datafield tag="337" ind1=" " ind2=" "><subfield code="b">n</subfield><subfield code="2">rdamedia</subfield></datafield><datafield tag="338" ind1=" " ind2=" "><subfield code="b">nc</subfield><subfield code="2">rdacarrier</subfield></datafield><datafield tag="490" ind1="0" ind2=" "><subfield code="a">A Chapman & Hall book</subfield></datafield><datafield tag="500" ind1=" " ind2=" "><subfield code="a">Includes bibliographical references and index</subfield></datafield><datafield tag="650" ind1=" " ind2="4"><subfield code="a">Numerical analysis</subfield><subfield code="v">Textbooks</subfield></datafield><datafield tag="650" ind1="0" ind2="7"><subfield code="a">Numerische Mathematik</subfield><subfield code="0">(DE-588)4042805-9</subfield><subfield code="2">gnd</subfield><subfield code="9">rswk-swf</subfield></datafield><datafield tag="689" ind1="0" ind2="0"><subfield code="a">Numerische Mathematik</subfield><subfield code="0">(DE-588)4042805-9</subfield><subfield code="D">s</subfield></datafield><datafield tag="689" ind1="0" ind2=" "><subfield code="5">DE-604</subfield></datafield><datafield tag="856" ind1="4" ind2="2"><subfield code="m">Digitalisierung UB Bayreuth - ADAM Catalogue Enrichment</subfield><subfield code="q">application/pdf</subfield><subfield code="u">http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=029052124&sequence=000003&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA</subfield><subfield code="3">Inhaltsverzeichnis</subfield></datafield><datafield tag="856" ind1="4" ind2="2"><subfield code="m">Digitalisierung UB Bayreuth - ADAM Catalogue Enrichment</subfield><subfield code="q">application/pdf</subfield><subfield code="u">http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=029052124&sequence=000004&line_number=0002&func_code=DB_RECORDS&service_type=MEDIA</subfield><subfield code="3">Klappentext</subfield></datafield><datafield tag="999" ind1=" " ind2=" "><subfield code="a">oai:aleph.bib-bvb.de:BVB01-029052124</subfield></datafield></record></collection> |
id | DE-604.BV043638242 |
illustrated | Illustrated |
indexdate | 2024-07-10T07:31:12Z |
institution | BVB |
isbn | 9781498712187 1498712185 |
language | English |
lccn | 015041395 |
oai_aleph_id | oai:aleph.bib-bvb.de:BVB01-029052124 |
oclc_num | 946104361 |
open_access_boolean | |
owner | DE-703 DE-19 DE-BY-UBM |
owner_facet | DE-703 DE-19 DE-BY-UBM |
physical | xv, 292 pages Illustrationen, Diagramme |
publishDate | 2016 |
publishDateSearch | 2016 |
publishDateSort | 2016 |
publisher | CRC Press, Taylor & Francis Group |
record_format | marc |
series2 | A Chapman & Hall book |
spelling | Faul, Anita Verfasser (DE-588)1150897651 aut A concise introduction to numerical analysis A.C. Faul, University of Cambridge, UK Boca Raton ; London ; New York CRC Press, Taylor & Francis Group [2016] © 2016 xv, 292 pages Illustrationen, Diagramme txt rdacontent n rdamedia nc rdacarrier A Chapman & Hall book Includes bibliographical references and index Numerical analysis Textbooks Numerische Mathematik (DE-588)4042805-9 gnd rswk-swf Numerische Mathematik (DE-588)4042805-9 s DE-604 Digitalisierung UB Bayreuth - ADAM Catalogue Enrichment application/pdf http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=029052124&sequence=000003&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA Inhaltsverzeichnis Digitalisierung UB Bayreuth - ADAM Catalogue Enrichment application/pdf http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=029052124&sequence=000004&line_number=0002&func_code=DB_RECORDS&service_type=MEDIA Klappentext |
spellingShingle | Faul, Anita A concise introduction to numerical analysis Numerical analysis Textbooks Numerische Mathematik (DE-588)4042805-9 gnd |
subject_GND | (DE-588)4042805-9 |
title | A concise introduction to numerical analysis |
title_auth | A concise introduction to numerical analysis |
title_exact_search | A concise introduction to numerical analysis |
title_full | A concise introduction to numerical analysis A.C. Faul, University of Cambridge, UK |
title_fullStr | A concise introduction to numerical analysis A.C. Faul, University of Cambridge, UK |
title_full_unstemmed | A concise introduction to numerical analysis A.C. Faul, University of Cambridge, UK |
title_short | A concise introduction to numerical analysis |
title_sort | a concise introduction to numerical analysis |
topic | Numerical analysis Textbooks Numerische Mathematik (DE-588)4042805-9 gnd |
topic_facet | Numerical analysis Textbooks Numerische Mathematik |
url | http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=029052124&sequence=000003&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=029052124&sequence=000004&line_number=0002&func_code=DB_RECORDS&service_type=MEDIA |
work_keys_str_mv | AT faulanita aconciseintroductiontonumericalanalysis |