A Concise Introduction to Numerical Analysis
eBook - ePub

A Concise Introduction to Numerical Analysis

A. C. Faul

Share book
  1. 292 pages
  2. English
  3. ePUB (mobile friendly)
  4. Available on iOS & Android
eBook - ePub

A Concise Introduction to Numerical Analysis

A. C. Faul

Book details
Book preview
Table of contents
Citations

About This Book

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.

Frequently asked questions

How do I cancel my subscription?
Simply head over to the account section in settings and click on “Cancel Subscription” - it’s as simple as that. After you cancel, your membership will stay active for the remainder of the time you’ve paid for. Learn more here.
Can/how do I download books?
At the moment all of our mobile-responsive ePub books are available to download via the app. Most of our PDFs are also available to download and we're working on making the final remaining ones downloadable now. Learn more here.
What is the difference between the pricing plans?
Both plans give you full access to the library and all of Perlego’s features. The only differences are the price and subscription period: With the annual plan you’ll save around 30% compared to 12 months on the monthly plan.
What is Perlego?
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, we’ve got you covered! Learn more here.
Do you support text-to-speech?
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Is A Concise Introduction to Numerical Analysis an online PDF/ePUB?
Yes, you can access A Concise Introduction to Numerical Analysis by A. C. Faul in PDF and/or ePUB format, as well as other popular books in Matematica & Matematica generale. We have over one million books available in our catalogue for you to explore.

Information

Year
2018
ISBN
9781498712217
Edition
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.d1dp − 1 × βe, where d0.d1dp − 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.d1dp − 1 × βe is the number
±(d0+d1β1+d2β2++dp1β(p1))βe,0di<β.
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×β(p1)×βe=βep+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+)*213.14159200003.
If we omit the last digit we arrive at
1.100100100001111110101111110010001×213.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 of contents