An Introduction to Numerical Computation
eBook - ePub

An Introduction to Numerical Computation

Wen Shen

Buch teilen
  1. 268 Seiten
  2. English
  3. ePUB (handyfreundlich)
  4. Über iOS und Android verfügbar
eBook - ePub

An Introduction to Numerical Computation

Wen Shen

Angaben zum Buch
Buchvorschau
Inhaltsverzeichnis
Quellenangaben

Über dieses Buch

Developed during ten years of teaching experience, this book serves as a set of lecture notes for an introductory course on numerical computation, at the senior undergraduate level. These notes contain the material that can be covered in a semester, together with a few optional sections for additional reading. Rather than surveying a large number of algorithms, the book presents the most important computational methods and emphasizes the underlying mathematical ideas. In most chapters, graphs and drawings are relied on, to build up intuition.

The notes are written in a rather colloquial style, presenting the subject matter in the same form as it can be explained in a classroom. For instructors, this will minimize the amount of effort required to prepare their blackboard presentations.

As prerequisites, the book only relies on standard calculus, an introductory course on matrices, and some basic computer programming skills. As a new feature, these notes are supplemented by two sets of videos from the author's Youtube channel. These videos contain a complete set of live lectures given in Spring 2015, together with a complete set of short tutorials, from 5 to 15 minutes each.

A set of homework problems is included at the end of each chapter. Homework projects cover a variety of applications, in connection with population dynamics, engineering, mechanics, image reconstruction, etc. A complete set of solutions is available for instructors, upon request.

Request Inspection Copy

Developed during ten years of teaching experience, this book serves as a set of lecture notes for an introductory course on numerical computation, at the senior undergraduate level. These notes contain the material that can be covered in a semester, together with a few optional sections for additional reading. Rather than surveying a large number of algorithms, the book presents the most important computational methods and emphasizes the underlying mathematical ideas. In most chapters, graphs and drawings are relied on, to build up intuition.

The notes are written in a rather colloquial style, presenting the subject matter in the same form as it can be explained in a classroom. For instructors, this will minimize the amount of effort required to prepare their blackboard presentations.

As prerequisites, the book only relies on standard calculus, an introductory course on matrices, and some basic computer programming skills. As a new feature, these notes are supplemented by two sets of videos from the author's Youtube channel. These videos contain a complete set of live lectures given in Spring 2015, together with a complete set of short tutorials, from 5 to 15 minutes each.

A set of homework problems is included at the end of each chapter. Homework projects cover a variety of applications, in connection with population dynamics, engineering, mechanics, image reconstruction, etc. A complete set of solutions is available for instructors, upon request.

Request Inspection Copy


Readership: Junior or senior undergraduate students interested in numerical computation and analysis, majoring in mathematics, computer science, physics, engineering, etc.
Key Features:

  • Matlab is integrated throughout the book
  • The book assumes minimum prior mathematical knowledge
  • The book was class-tested through 5 semesters at Penn State University, with top reviews from students
  • Supplementary videos offer an enrichment to these lecture notes

Häufig gestellte Fragen

Wie kann ich mein Abo kündigen?
Gehe einfach zum Kontobereich in den Einstellungen und klicke auf „Abo kündigen“ – ganz einfach. Nachdem du gekündigt hast, bleibt deine Mitgliedschaft für den verbleibenden Abozeitraum, den du bereits bezahlt hast, aktiv. Mehr Informationen hier.
(Wie) Kann ich Bücher herunterladen?
Derzeit stehen all unsere auf Mobilgeräte reagierenden ePub-Bücher zum Download über die App zur Verfügung. Die meisten unserer PDFs stehen ebenfalls zum Download bereit; wir arbeiten daran, auch die übrigen PDFs zum Download anzubieten, bei denen dies aktuell noch nicht möglich ist. Weitere Informationen hier.
Welcher Unterschied besteht bei den Preisen zwischen den Aboplänen?
Mit beiden Aboplänen erhältst du vollen Zugang zur Bibliothek und allen Funktionen von Perlego. Die einzigen Unterschiede bestehen im Preis und dem Abozeitraum: Mit dem Jahresabo sparst du auf 12 Monate gerechnet im Vergleich zum Monatsabo rund 30 %.
Was ist Perlego?
Wir sind ein Online-Abodienst für Lehrbücher, bei dem du für weniger als den Preis eines einzelnen Buches pro Monat Zugang zu einer ganzen Online-Bibliothek erhältst. Mit über 1 Million Büchern zu über 1.000 verschiedenen Themen haben wir bestimmt alles, was du brauchst! Weitere Informationen hier.
Unterstützt Perlego Text-zu-Sprache?
Achte auf das Symbol zum Vorlesen in deinem nächsten Buch, um zu sehen, ob du es dir auch anhören kannst. Bei diesem Tool wird dir Text laut vorgelesen, wobei der Text beim Vorlesen auch grafisch hervorgehoben wird. Du kannst das Vorlesen jederzeit anhalten, beschleunigen und verlangsamen. Weitere Informationen hier.
Ist An Introduction to Numerical Computation als Online-PDF/ePub verfügbar?
Ja, du hast Zugang zu An Introduction to Numerical Computation von Wen Shen im PDF- und/oder ePub-Format sowie zu anderen beliebten Büchern aus Mathematik & Mathematik Allgemein. Aus unserem Katalog stehen dir über 1 Million Bücher zur Verfügung.

Information

Verlag
WSPC
Jahr
2015
ISBN
9789814730099

Chapter 1

Computer Arithmetic

1.1Introduction

What are numerical methods? They are algorithms that compute approximate solutions to a number of problems for which exact solutions are not available. These include, but are not limited to:
evaluating functions,
computing the derivative of a function,
computing the integral of a function,
solving a nonlinear equation,
solving a system of linear equations,
finding solutions to an ODE (ordinary differential equation),
finding solutions to a PDE (partial differential equation).
Such algorithms can be implemented (programmed) on a computer.
The following diagram shows how various aspects are related.
Keep in mind that a course on numerical methods is NOT about numbers. It is about mathematical ideas and insights.
We shall study some basic issues:
development of algorithms;
implementation;
a little bit of analysis, including error-estimates, convergence, stability etc.
Throughout the course we shall use Matlab for programming purposes.

1.2Representation of Numbers in Different Bases

Historically, there have been several bases for representing numbers, used by different civilizations. These include:
10: decimal, which has become standard nowadays;
2: binary, computer use;
8: octal;
16: hexadecimal, used in ancient China;
20: vigesimal, used in ancient France (numbers 70 to 79 are counted as 60+10 to 60+19 in French, and 80 is 4 × 20);
60: sexagesimal, used by the Babylonians.
Image
Fig. 1.1The big picture
In principle, one can use any integer β as the base. The value of a number in base β is then written as
Image
Taking β = 10, we obtain the standard decimal representation.
The above formula allows us to convert a number in any base β into decimal base.
In principle, one can convert the numbers between different bases. Here are some examples.
Example 1.1. Conversion of octal → decimal:
(45.12)8 = 4 × 81 + 5 × 80 + 1 × 8−1 + 2 × 8−2 = (37.15625)10
Example 1.2. Conversion of octal ↔ binary:
Observe that, since 8 = 23, we have
Image
Then, the conversion between these two bases become much simpler. To convert from octal to binary, we can convert each digit in the octal base, and write it into binary base, using 3 digits in binary for each digit in octal. For example:
Image
To convert a binary number to an octal one, we can group the binary digit in groups of 3, and write out the octal base value for each group. For example:
Image
Example 1.3. Conversion of decimal → binary: write (12.45)10 in binary base.
This example is of particular interest. Since the computer uses binary base, how would the number (12.45)10 look like in binary base? How does a computer store this number in its memory? The conversion takes two steps.
First, we treat the integer part. The procedure is to keep dividing by 2, and store the remainders of each step, until one cannot divide anymore. Then, collect the remainder terms in the rev...

Inhaltsverzeichnis