Numerical methods for engineers and computer scientists:
Gespeichert in:
1. Verfasser: | |
---|---|
Format: | Buch |
Sprache: | English |
Veröffentlicht: |
Menlo Park [u.a.]
Benjamin, Cummings
1988
|
Schlagworte: | |
Online-Zugang: | Inhaltsverzeichnis |
Beschreibung: | XIII, 326 S. graph. Darst. |
ISBN: | 080534652X |
Internformat
MARC
LEADER | 00000nam a2200000 c 4500 | ||
---|---|---|---|
001 | BV002065647 | ||
003 | DE-604 | ||
005 | 20130128 | ||
007 | t | ||
008 | 890928s1988 d||| |||| 00||| eng d | ||
020 | |a 080534652X |9 0-8053-4652-X | ||
035 | |a (OCoLC)16833053 | ||
035 | |a (DE-599)BVBBV002065647 | ||
040 | |a DE-604 |b ger |e rakddb | ||
041 | 0 | |a eng | |
049 | |a DE-91 |a DE-91G |a DE-862 |a DE-29T |a DE-706 |a DE-83 |a DE-188 | ||
050 | 0 | |a QA297 | |
082 | 0 | |a 519.4 |2 19 | |
084 | |a SK 900 |0 (DE-625)143268: |2 rvk | ||
084 | |a MAT 650f |2 stub | ||
100 | 1 | |a Hultquist, Paul F. |e Verfasser |4 aut | |
245 | 1 | 0 | |a Numerical methods for engineers and computer scientists |c Paul F. Hultquist |
264 | 1 | |a Menlo Park [u.a.] |b Benjamin, Cummings |c 1988 | |
300 | |a XIII, 326 S. |b graph. Darst. | ||
336 | |b txt |2 rdacontent | ||
337 | |b n |2 rdamedia | ||
338 | |b nc |2 rdacarrier | ||
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 GBV Datenaustausch |q application/pdf |u http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=001350837&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |3 Inhaltsverzeichnis |
999 | |a oai:aleph.bib-bvb.de:BVB01-001350837 |
Datensatz im Suchindex
DE-BY-862_location | 2801 |
---|---|
DE-BY-FWS_call_number | 2801/1991:3400 |
DE-BY-FWS_katkey | 48611 |
DE-BY-FWS_media_number | 083100401937 |
_version_ | 1806195652975132672 |
adam_text | IMAGE 1
NUMERICAL METHODS
FOR ENGINEERS AND COMPUTER SCIENTISTS
PAUL F HULTQUIST UNIVERSITY OF COLORADO AT DENVER
S
THE BENJAMIN/CUMMINGS PUBLISHING COMPANY, INC. MENLO PARK, CALIFORNIA *
READING, MASSACHUSETTS DON MILLS, ONTARIO * WOKINGHAM, U.K. * AMSTERDAM
* SYDNEY SINGAPORE * TOKYO * MADRID * BOGOTA * SANTIAGO * SAN JUAN
IMAGE 2
CONTENTS
CHAPTER 1 NUMBERS AND THEIR REPRESENTATIONS 1.1
1.2
1.3 1.4 1.5 1.6
NUMBER BASES 1 1.1.1 CONVERSION AMONG BASES 2 1.1.2 DECIMAL, BINARY,
OCTAL, AND HEXADECIMAL 4 NUMBER REPRESENTATION 6
1.2.1 INTEGER REPRESENTATION 6 1.2.2 FLOATING-POINT REPRESENTATION 8
REPRESENTATION OF DATA 10 OPERATIONS IN FLOATING-POINT 10 DOUBLE
PRECISION MODE 12 COMPLEX MODE 13
EXERCISES, 14; PROBLEMS, 16
CHAPTER 2 ERRORS AND MISTAKES
2.1 DEFINITION OF ERROR 18 2.2 SOURCES OF ERROR IN NUMBERS 19 2.2.1
INAECURATE DATA 19 2.2.2 DATAENTRY 20
2.2.3 ARITHMETIC OPERATIONS 20 2.2.4 FORMULA ERRORS 20
18
IMAGE 3
X CONTENTS
2.3 ROUND-OFF ERRORS 20
2.4 SIGNIFICANT DIGITS 21
2.5 COMPUTATION WITH DATA 23 2.6 TRUNCATION ERRORS AND ERRORS IN
FORMULAS 26 2.7 TESTING FOR EQUALITY 28
2.8 HOW TO SOLVE A QUADRATIC EQUATION 29 EXERCISES, 30
CHAPTER 3 SOFTWARE
3.1 HIGH-LEVEL LANGUAGES 33 3.2 EFFICIENCY VERSUS READABILITY 35 3.3
WRITING GOOD PROGRAMS 36 3.3.1 PROGRAMMING STYLE 36
3.3.2 DOCUMENTATION 37
3.3.3 TESTING 38
3.3.4 SPECIAL CASES 39
3.4 USE OF LIBRARIES 40
3.4.1 IMSL 41
3.4.2 LINPACK 41 3.4.3 OTHER LIBRARIES 41 PROBLEMS, 42
CHAPTER 4 SYSTEMS OF LINEAR ALGEBRAIC EQUATIONS
4.1 INTRODUCTION 44
4.2 REVIEW OF MATRIX ALGEBRA 47
4.2.1 UNARY OPERATIONS 47
4.2.2 BINARY OPERATIONS 48 4.2.3 INVERSE OF A MATRIX 50 4.2.4 VECTOR AND
MATRIX NOR MS 50 4.3 GAUSS ELIMINATION 51
4.4 GAUSS-TPRDAN METHOD AND OPERATIONS COUNT 53 4.5 SOURCES OF TROUBLE
55 4.6 EQUILIBRATION 56
4.7 CONDITION 57
IMAGE 4
CONTENTS
4.8 ESTIMATING K(A) 62
4.9 ITERATIVE IMPROVEMENT 62 4.10 PROCEDURES GAUSS AND SOLVE 63
4.11 PROCEDURES TRIDIAG AND PENTDIAG 64 4.12 SOME IMSL SUBROUTINES 68
4.13 LINPACK PROGRAMS 69 4.14 ITERATIVE METHODS 71 EXERCISES, 73;
PROBLEMS, 74; LISTINGS, 77
CHAPTER 5 SOLUTIONS OF NONLINEAR EQUATIONS
5.1 ITERATION 87
5.2 INTERVAL HALVING 88
5.3 METHOD OF SUCCESSIVE SUBSTITUTION 91
5.4 RATE OF CONVERGENCE 94 5.5 TERMINATING THE ITERATIVE PROCESS 94
5.6 NEWTON S METHOD 96 5.7 TWO-POINT FORMULAS 100 5.8 ACCELERATING
CONVERGENCE 101 5.9 PRACTICAL CONSIDERATIONS 102
5.10 POLYNOMIAL EQUATIONS 104 5.10.1 TWO-DIMENSIONAL NEWTON S METHOD 105
5.10.2 OTHER METHODS FOR POLYNOMIALS 106 5.10.3 STABILITY OF
ROOT-FINDING PROCESSES 106
5.11 FUNCTION ZEROIN 107 5.12 BAIRSTOW S METHOD 108
5.13 IMSL ROUTINE ZBRENT 109 5.14 IMSL ROUTINE ZRPOLY 110 EXERCISES,
111; PROBLEMS, 114; LISTINGS, 120
86
CHAPTER 6 FITTING CURVES TO DATA
6.1 PRELIMINARIES 130 6.2 FUNCTIONS AND CONTINUITY 131
6.3 INTERPOLATION 131 6.3.1 LAGRANGE INTERPOLATION POLYNOMIALS 133
128
IMAGE 5
XII CONTENTS
6.3.2 DIFFERENCE METHODS 135
6.4 SPLINES 144
6.4.1 NATURAL SPLINE 145 6.4.2 OTHER SPLINES 148 6.4.3 PROCEDURE
CUBIC-SPLINE AND FUNCTION SPLEVAL 148 6.5 LEAST SQUARES 149
6.5.1 LINEAR REGRESSION 149
6.5.2 MULTIPLE REGRESSION 153 6.5.3 NONLINEAR REGRESSION 155 6.5.4
ORTHOGONAL POLYNOMIALS 157 6.5.5 ORTHOGONAL POLYNOMIAL ROUTINES 159
6.5.6 OTHER KINDS OF EQUATIONS 164 EXERCISES, 167; PROBLEMS, 172;
LISTINGS, 177
CHAPTER 7 NUMERICAL EVALUATION OF INTEGRALS
7.1 INTRODUCTION 189 7.2 THE DEFINITE INTEGRAL 191 7.3 NEWTON-COTES
CLOSED FORMULAS 192 7.4 NEWTON-COTES OPEN FORMULAS 196
7.5 STEP SIZE AND ACCURACY 197 7.5.1 SIMPLE INTEGRATOR WITH ERROR
ESTIMATE 200 7.6 ROMBERG INTEGRATION 202
7.7 GAUSS QUADRATURE 204 7.7.1 GAUSS-LEGENDRE QUADRATURE 205 7.7.2
GAUSS-CHEBYSHEV QUADRATURE 210 7.7.3 GAUSS-LAGUERRE QUADRATURE 211
7.7.4 GAUSS-HERMITE QUADRATURE 213
7.7.5 ERROR TERMS 214
7.8 ADAPTIVE QUADRATURE 215 7.9 DEALING WITH SINGULARITIES 218 7.10 IMSL
FUNCTION DCADRE 220 EXERCISES, 221; PROBLEMS, 224; LISTINGS, 228
CHAPTER 8 NUMERICAL SOLUTION OF DIFFERENTIAL EQUATIONS
8.1 DIFFERENTIAL EQUATIONS AND SYSTEMS 238 8.2 METHODS OF SOLUTION 241
IMAGE 6
CONTENTS XIII
8.2.1 MORE SOPHISTICATED METHODS: MULTISTEP 245
8.2.2 MULTISTEP METHODS: ERROR ESTIMATION AND STEP SIZE CONTROL 247
8.3 RUNGE-KUTTA METHODS 248 8.4 COMPARISON OF METHODS 252
8.5 SOLVING SYSTEMS OF DIFFERENTIAL EQUATIONS NUMERICALLY 252 8.6
STABILITY 255
8.7 STIFF DIFFERENTIAL EQUATIONS 257
8.8 BOUNDARY VALUE PROBLEMS 259 8.8.1 THE SHOOTING METHOD 259 8.8.2
FINITE DIFFERENCE METHOD 260
8.9 PROCEDURE RKF45 261 8.10 IMSL SUBROUTINE DVERK 263 EXERCISES, 265;
PROBLEMS, 267; LISTINGS, 273
CHAPTER 9 MATHEMATICAL FUNCTIONS 283
9.1 INTRODUCTION 283 9.1.1 STANDARD FUNCTIONS 284 9.1.2 POLYNOMIAL
APPROXIMATIONS 284
9.2 LEAST-SQUARES APPROXIMATION OF FUNCTIONS 286 9.3 CHEBYSHEV
ECONOMIZATION 288 9.4 MINIMAX APPROXIMATION: REMES ALGORITHMS 294
9.5 PROCEDURE MINIMAX 298 9.6 IMSL SUBROUTINE IRATCU 299 EXERCISES, 300;
PROBLEMS, 301; LISTINGS, 302
ANSWERS TO SELECTED EXERCISES 311 REFERENCES 315 BIBLIOGRAPHY 317
INDEX 321
|
any_adam_object | 1 |
author | Hultquist, Paul F. |
author_facet | Hultquist, Paul F. |
author_role | aut |
author_sort | Hultquist, Paul F. |
author_variant | p f h pf pfh |
building | Verbundindex |
bvnumber | BV002065647 |
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 |
classification_tum | MAT 650f |
ctrlnum | (OCoLC)16833053 (DE-599)BVBBV002065647 |
dewey-full | 519.4 |
dewey-hundreds | 500 - Natural sciences and mathematics |
dewey-ones | 519 - Probabilities and applied mathematics |
dewey-raw | 519.4 |
dewey-search | 519.4 |
dewey-sort | 3519.4 |
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>01317nam a2200349 c 4500</leader><controlfield tag="001">BV002065647</controlfield><controlfield tag="003">DE-604</controlfield><controlfield tag="005">20130128 </controlfield><controlfield tag="007">t</controlfield><controlfield tag="008">890928s1988 d||| |||| 00||| eng d</controlfield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">080534652X</subfield><subfield code="9">0-8053-4652-X</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)16833053</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(DE-599)BVBBV002065647</subfield></datafield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">DE-604</subfield><subfield code="b">ger</subfield><subfield code="e">rakddb</subfield></datafield><datafield tag="041" ind1="0" ind2=" "><subfield code="a">eng</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-91</subfield><subfield code="a">DE-91G</subfield><subfield code="a">DE-862</subfield><subfield code="a">DE-29T</subfield><subfield code="a">DE-706</subfield><subfield code="a">DE-83</subfield><subfield code="a">DE-188</subfield></datafield><datafield tag="050" ind1=" " ind2="0"><subfield code="a">QA297</subfield></datafield><datafield tag="082" ind1="0" ind2=" "><subfield code="a">519.4</subfield><subfield code="2">19</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="084" ind1=" " ind2=" "><subfield code="a">MAT 650f</subfield><subfield code="2">stub</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Hultquist, Paul F.</subfield><subfield code="e">Verfasser</subfield><subfield code="4">aut</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">Numerical methods for engineers and computer scientists</subfield><subfield code="c">Paul F. Hultquist</subfield></datafield><datafield tag="264" ind1=" " ind2="1"><subfield code="a">Menlo Park [u.a.]</subfield><subfield code="b">Benjamin, Cummings</subfield><subfield code="c">1988</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">XIII, 326 S.</subfield><subfield code="b">graph. Darst.</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="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">GBV Datenaustausch</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=001350837&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA</subfield><subfield code="3">Inhaltsverzeichnis</subfield></datafield><datafield tag="999" ind1=" " ind2=" "><subfield code="a">oai:aleph.bib-bvb.de:BVB01-001350837</subfield></datafield></record></collection> |
id | DE-604.BV002065647 |
illustrated | Illustrated |
indexdate | 2024-08-01T16:26:42Z |
institution | BVB |
isbn | 080534652X |
language | English |
oai_aleph_id | oai:aleph.bib-bvb.de:BVB01-001350837 |
oclc_num | 16833053 |
open_access_boolean | |
owner | DE-91 DE-BY-TUM DE-91G DE-BY-TUM DE-862 DE-BY-FWS DE-29T DE-706 DE-83 DE-188 |
owner_facet | DE-91 DE-BY-TUM DE-91G DE-BY-TUM DE-862 DE-BY-FWS DE-29T DE-706 DE-83 DE-188 |
physical | XIII, 326 S. graph. Darst. |
publishDate | 1988 |
publishDateSearch | 1988 |
publishDateSort | 1988 |
publisher | Benjamin, Cummings |
record_format | marc |
spellingShingle | Hultquist, Paul F. Numerical methods for engineers and computer scientists Numerische Mathematik (DE-588)4042805-9 gnd |
subject_GND | (DE-588)4042805-9 |
title | Numerical methods for engineers and computer scientists |
title_auth | Numerical methods for engineers and computer scientists |
title_exact_search | Numerical methods for engineers and computer scientists |
title_full | Numerical methods for engineers and computer scientists Paul F. Hultquist |
title_fullStr | Numerical methods for engineers and computer scientists Paul F. Hultquist |
title_full_unstemmed | Numerical methods for engineers and computer scientists Paul F. Hultquist |
title_short | Numerical methods for engineers and computer scientists |
title_sort | numerical methods for engineers and computer scientists |
topic | Numerische Mathematik (DE-588)4042805-9 gnd |
topic_facet | Numerische Mathematik |
url | http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=001350837&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |
work_keys_str_mv | AT hultquistpaulf numericalmethodsforengineersandcomputerscientists |
Inhaltsverzeichnis
Schweinfurt Magazin
Signatur: |
2801 1991:3400 |
---|---|
Exemplar 1 | ausleihbar Verfügbar Bestellen |