A Concise Introduction to Numerical Analysis
eBook - ePub

A Concise Introduction to Numerical Analysis

A. C. Faul

Partager le livre
  1. 292 pages
  2. English
  3. ePUB (adapté aux mobiles)
  4. Disponible sur iOS et Android
eBook - ePub

A Concise Introduction to Numerical Analysis

A. C. Faul

DĂ©tails du livre
Aperçu du livre
Table des matiĂšres
Citations

À propos de ce livre

This textbook provides an accessible and concise introduction to numerical analysis for upper undergraduate and beginning graduate students 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.Students will get a concise, but thorough introduction to numerical analysis. In addition the algorithmic principles are emphasized to encourage 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 between 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 workings 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 outcome 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.

Foire aux questions

Comment puis-je résilier mon abonnement ?
Il vous suffit de vous rendre dans la section compte dans paramĂštres et de cliquer sur « RĂ©silier l’abonnement ». C’est aussi simple que cela ! Une fois que vous aurez rĂ©siliĂ© votre abonnement, il restera actif pour le reste de la pĂ©riode pour laquelle vous avez payĂ©. DĂ©couvrez-en plus ici.
Puis-je / comment puis-je télécharger des livres ?
Pour le moment, tous nos livres en format ePub adaptĂ©s aux mobiles peuvent ĂȘtre tĂ©lĂ©chargĂ©s via l’application. La plupart de nos PDF sont Ă©galement disponibles en tĂ©lĂ©chargement et les autres seront tĂ©lĂ©chargeables trĂšs prochainement. DĂ©couvrez-en plus ici.
Quelle est la différence entre les formules tarifaires ?
Les deux abonnements vous donnent un accĂšs complet Ă  la bibliothĂšque et Ă  toutes les fonctionnalitĂ©s de Perlego. Les seules diffĂ©rences sont les tarifs ainsi que la pĂ©riode d’abonnement : avec l’abonnement annuel, vous Ă©conomiserez environ 30 % par rapport Ă  12 mois d’abonnement mensuel.
Qu’est-ce que Perlego ?
Nous sommes un service d’abonnement Ă  des ouvrages universitaires en ligne, oĂč vous pouvez accĂ©der Ă  toute une bibliothĂšque pour un prix infĂ©rieur Ă  celui d’un seul livre par mois. Avec plus d’un million de livres sur plus de 1 000 sujets, nous avons ce qu’il vous faut ! DĂ©couvrez-en plus ici.
Prenez-vous en charge la synthÚse vocale ?
Recherchez le symbole Écouter sur votre prochain livre pour voir si vous pouvez l’écouter. L’outil Écouter lit le texte Ă  haute voix pour vous, en surlignant le passage qui est en cours de lecture. Vous pouvez le mettre sur pause, l’accĂ©lĂ©rer ou le ralentir. DĂ©couvrez-en plus ici.
Est-ce que A Concise Introduction to Numerical Analysis est un PDF/ePUB en ligne ?
Oui, vous pouvez accĂ©der Ă  A Concise Introduction to Numerical Analysis par A. C. Faul en format PDF et/ou ePUB ainsi qu’à d’autres livres populaires dans Matematica et Matematica generale. Nous disposons de plus d’un million d’ouvrages Ă  dĂ©couvrir dans notre catalogue.

Informations

Année
2018
ISBN
9781498712217
Édition
1
CHAPTER 1
Fundamentals
1.1 Floating Point Arithmetic
We live in a continuous world with infinitely many real numbers. However, a computer has only a finite number of bits. This requires an approximate representation. In the past, several different representations of real numbers have been suggested, but now the most widely used by far is the floating point representation. Each floating point representations has a base ÎČ (which is always assumed to be even) which is typically 2 (binary), 8 (octal), 10 (decimal), or 16 (hexadecimal), and a precision p which is the number of digits (of base ÎČ) held in a floating point number. For example, if ÎČ = 10 and p = 5, the number 0.1 is represented as 1.0000 × 10−1. On the other hand, if ÎČ = 2 and p = 20, the decimal number 0.1 cannot be represented exactly but is approximately 1.1001100110011001100 × 2−4. We can write the representation as ±d0.d1 ⋯ dp − 1 × ÎČe, where d0.d1 ⋯ dp − 1 is called the significand (or mantissa) and has p digits and e is the exponent. If the leading digit d0 is non-zero, the number is said to be normalized. More precisely ±d0.d1 ⋯ dp − 1 × ÎČe is the number
±(d0+d1ÎČ−1+d2ÎČ−2+⋯+dp−1ÎČ−(p−1))ÎČe,0≀di<ÎČ.
If the exponents of two floating point numbers are the same, they are said to be of the same magnitude. Let’s look at two floating point numbers of the same magnitude which also have the same digits apart from the digit in position p, which has index p − 1. We assume that they only differ by one in that digit. These floating point numbers are neighbours in the representation and differ by
1×ÎČ−(p−1)×ÎČe=ÎČe−p+1.
Thus, if the exponent is large the difference between neighbouring floating point numbers is large, while if the exponent is small the difference between neighbouring floating point numbers is small. This means floating point numbers are more dense around zero.
As an example consider the decimal number 3.141592, the first seven digits of π. Converting this into binary, we could approximate it by
1.1001001000011111101011111100100011×21=(1+1*12+0*14+0*18+1*116+0*132+0*164+
)*21≈3.14159200003.
If we omit the last digit we arrive at
1.100100100001111110101111110010001×21≈3.14159199991.
Looking at the conversion to a hexadecimal representation, we get the approximation
3.243F5F92=3+2*116+4*1162+3*1163+15*1164+5*1165+
≈3.14159200001.
Omi...

Table des matiĂšres