Introduction to Numerical Methods and Error Analysis

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/29

flashcard set

Earn XP

Description and Tags

Flashcards covering the fundamental concepts of numerical methods, types of errors, accuracy and precision, specific error measurements, and algorithmic stability.

Last updated 8:23 AM on 7/30/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

30 Terms

1
New cards

Numerical Methods

Algorithms and techniques used to solve mathematical problems numerically using arithmetic operations (++, -, ×\times, ÷\div) rather than symbolically using exact formulas.

2
New cards

Analytical Solution

An exact solution expressed as a closed-form formula, such as solving x25x+6=0x^2 - 5x + 6 = 0 to find x=2,3x = 2, 3.

3
New cards

Numerical Solution

An approximate solution obtained via iteration when no exact formula exists, such as finding x0.739085x \approx 0.739085 for the equation x=cos(x)x = \cos(x).

4
New cards

Abel–Ruffini theorem

A theorem stating that a general polynomial of degree 5\ge 5 has no closed-form solution by radicals, making numerical root-finding the only general option.

5
New cards

Modeling Errors

Errors introduced when mathematical equations are used to represent a physical system, such as neglecting air resistance in a projectile model.

6
New cards

Blunders

Human errors that occur at any stage of the modeling process; they can be avoided by sound knowledge of fundamental principles and proper care.

7
New cards

Mistakes

Errors in the modeling process specifically due to programming errors.

8
New cards

Inherent Errors

Errors that preexist in the problem statement itself, such as uncertain measurements or empirical constants from handbooks.

9
New cards

Round-off Errors

Errors that are inevitable when using finite-precision floating-point arithmetic on computers or calculators, occurring through rounding or chopping.

10
New cards

Truncation Errors

Also known as mathematical approximation errors, these arise when an infinite process is approximated by a finite one, such as keeping only finitely many terms of a Taylor series.

11
New cards

Accuracy

How closely a computed or measured value agrees with the true value.

12
New cards

Precision

How closely individual computed or measured values agree with each other.

13
New cards

Inaccuracy

Also known as bias, this refers to a systematic deviation from the truth.

14
New cards

Imprecision

Also known as uncertainty, this refers to the magnitude of the scatter in measurements.

15
New cards

Absolute Error (EaE_a)

The absolute value of the difference between the exact value (XEX_E) and the approximate value (XAX_A), defined as XEXA|X_E - X_A|.

16
New cards

Relative Error (ErE_r)

The ratio of the absolute error to the exact value, defined as XEXAXE\left| \frac{X_E - X_A}{X_E} \right| provided XE0X_E \ne 0.

17
New cards

Percentage Relative Error (EpE_p)

The relative error expressed as a percentage, calculated as 100×Er100 \times E_r.

18
New cards

Approximate Relative Error (εa\varepsilon_a)

Used in iterative methods where the true value is unknown, defined as current approximationprevious approximationcurrent approximation×100%\left| \frac{\text{current approximation} - \text{previous approximation}}{\text{current approximation}} \right| \times 100\%.

19
New cards

Stopping Criterion (Scarborough)

An iterative rule to stop when εa<εs=(0.5×102n)%\varepsilon_a < \varepsilon_s = (0.5 \times 10^{2-n})\%, which guarantees the result is correct to at least nn significant figures.

20
New cards

Significant Digits

The digits in a numerical value that can be used with confidence and represent how many digits are meaningful and reliable.

21
New cards

Machine Epsilon (εmach\varepsilon_{mach})

The smallest number such that 1+εmach11 + \varepsilon_{mach} \ne 1; for double precision (64-bit), it is approximately 2.22×10162.22 \times 10^{-16}.

22
New cards

Chopping

The process of dropping extra digits in a number to fit a finite representation, which always creates a biased error in one direction.

23
New cards

Rounding

Adjusting the last kept digit of a number; the error is at most half a unit in the last place, and errors tend to cancel out.

24
New cards

Subtractive Cancellation

A phenomenon where subtracting two nearly equal numbers destroys significant digits, representing the most dangerous effect of round-off error.

25
New cards

Taylor Series

A series expansion used to analyze truncation error, formulated as f(xi+1)=f(xi)+f(xi)h+f(xi)2!h2++Rnf(x_{i+1}) = f(x_i) + f'(x_i)h + \frac{f''(x_i)}{2!}h^2 + \dots + R_n.

26
New cards

Error Propagation

The study of how uncertainties in input variables affect the uncertainty of a function’s output calculation.

27
New cards

Conditioning

A property of a mathematical problem describing how sensitive the exact answer is to small changes in the input data.

28
New cards

Stability

A property of a numerical algorithm describing whether the method amplifies small errors (round-off or truncation) made during the process.

29
New cards

Condition Number

The relative error magnification factor, calculated for a function f(x)f(x) at point aa as af(a)f(a)\frac{af'(a)}{f(a)}.

30
New cards

Ill-conditioned Problem

A problem where the condition number is much greater than 1 (1\gg 1), meaning input uncertainties are significantly magnified in the result.