Numerical Modeling Lecture 1-12

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

1/66

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 11:57 PM on 3/22/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

67 Terms

1
New cards

Coefficient matrix

Square array containing the coefficients of the unknowns in a system of linear equations

2
New cards

Runge phenomenon

Oscillatory behavior that occurs when high-degree polynomial interpolation is applied over equally spaced points

3
New cards

NaN (Not a Number)

Special floating-point value indicating an undefined or unrepresentable result, such as 0/0

4
New cards

Simpson’s Rule

An integration technique that fits quadratic polynomials to subintervals to improve accuracy over the trapezoidal rule

5
New cards

Iterative refinement

A technique that repeatedly improves an approximate solution by correcting residual errors

6
New cards

Polynomial Interpolation

Construction of a polynomial that passes exactly through a given set of data points

7
New cards

Error bound for Taylor polynomial

Expression that limits the remainder term using the next derivative evaluated at a intermediate point

8
New cards

Stability of an algorithm

Property describing how errors are amplified or damped as the algorithm progresses

9
New cards

Precision loss due to scaling

Reduction in significant digits when a value is multiplied or divided by a large factor before computation

10
New cards

Mantissa (significand)

23-bit fraction that, together with the exponent, determines the magnitude of the value

11
New cards

Determinant

Scalar value computed from a square matrix that indicates whether the matrix is invertible

12
New cards

Scaling for numerical stability

Adjusting the magnitude of inputs or intermediate results to avoid loss of significance during subtraction of similar numbers

13
New cards

Error propagation analysis

Method for estimating how uncertainties in inputs affect the uncertainty of the final output

14
New cards

Floating-point representation of zero

All bits zero for +0 and sign bit set with all other bits zero for -0, both considered equal in magnitude

15
New cards

3×3 matrix

Square array with three rows and three columns, often used to represent three simultaneous linear equations

16
New cards

Numerical solution

Approximate result obtained by applying computational algorithms to discretized equations

17
New cards

Natural logarithm Taylor series

Series: ln(1+x) = x − x²/2 + x³/3
Valid for |x| < 1

18
New cards

Bit precision

Number of binary digits used to store a value, directly affecting the smallest distinguishable change

19
New cards

Floating-point rounding modes

Options such as round-to-nearest, round-toward-zero, round-up, and round-down that dictate how results are truncated

20
New cards

IEEE 754

A standard that defines binary floating-point formats, rounding, rules, and special values for computers

21
New cards

Argument reduction

A technique that maps a large input to an equivalent value within a primary interval to improve computational accuracy

22
New cards

Linear system

Set of equations in which each terms is either a constant or a product of a constant and a single variable

23
New cards

Normalization of scientific notation

Adjusting a number so that its leading digit is non-zero, analogous to the implicit leading 1 in binary floating-point

24
New cards

Pivoting in Gaussian elimination

Reordering rows or columns to place larger elements on the diagonal, reducing round-off error

25
New cards

Floating-point overflow handling

A procedure that substitutes infinity or the largest representable value when a computation exceeds the upper limits

26
New cards

LU (lower-upper) decomposition

Factorization of a matrix into a lower-triangular and an upper-triangular matrix to simplify solving linear systems

27
New cards

Cosine Taylor series

Series cos x = 1 − x²/2! + x^4/4! − …
that converges for all x

28
New cards

Subtracting nearly equal numbers

Operation that can cause catastrophic cancellation, dramatically reducing the number of accurate digits

29
New cards

Exponent field

8-bit section that stores a biased exponent to scale the mantissa

30
New cards

Relative error

Ratio of the absolute error to the true value, often expressed as a percentage

31
New cards

Known vector

Column vector representing the constant terms on the right-hand side of a linear system

32
New cards

Rounding error

Difference between the exact mathematical result and its rounded floating-point representation

33
New cards

Newton-Raphson method

Iterative root-finding technique that use4s the function and its derivative to converge quadratically to a zero

34
New cards

Adaptive step size

Strategy that varies the interval size during integration to maintain a desired error tolerance

35
New cards

Binary exponent bias for 32-bit format

Constant value 127 added to the actual exponent to encode it as an unsigned 8-bit field

36
New cards

Machine epsilon

The smallest number that, when added to 1.0, yields a distinguishable result in the given floating-point format

37
New cards

Underflow

Condition where a number is too small to be represented in normalized form, causing it to become zero

38
New cards

Floating-point exponent bias

Constant added to the actual exponent to allow representation of both positive and negative exponents

39
New cards

Denormalized number

Floating-point value with a leading mantissa bit of 0, used to represent numbers closer to zero than the smallest normalized value

40
New cards

Cramer’s Rule

Method for solving a linear system by expressing each variable as a ratio of two determinants

41
New cards

Euler (historical contribution)

Pioneered numerical integration formulas and series expansions for differential equations

42
New cards

Space matrix

Matrix in which most elements are zero, allowing specialized storage and faster operations

43
New cards

Convergence testing

Procedure that checks whether successive refinements of a computation approach a stable result

44
New cards

Analytical solution

Exact expression derived from mathematical theory that gives a closed-form result

45
New cards

Floating-point underflow handling

Procedure that substitutes zero or a denormalized value when a computation falls below the smallest normalized magnitude

46
New cards

Trapezoidal rule

Numerical integration method that approximates the area under a curve by summing areas of trapezoids

47
New cards

Unknown vector

Column vector that holds the variables to be solved in a linear system

48
New cards

Condition number

A metric that quantifies the sensitivity of a system’s solution to small changes in the input data

49
New cards

Small-angle approximation

Simplification where sinθ ≈ θ and tanθ ≈ θ when θ is measured in radians and is near zero

50
New cards

Convergence rate

Speed at which an iterative method approaches the exact solution as the step size or iteration count increases

51
New cards

Jacobian matrix

Matrix of first-order partial derivatives that describes how a vector-valued function changes near a point

52
New cards

Laplace expansion

Recursive formula for determinant calculation that expands along a chosen row or column using minors and cofactors

53
New cards

Discrete Fourier Transform (DFT)

Algorithm that converts a finite sequence of equally spaced samples into frequency components

54
New cards

Lagrange form of interpolation polynomial

Explicit formula that combines basis polynomials weighted by the funciton values at the nodes

55
New cards

Normalized mantissa implicit bit

Assumed leading 1 in the mantissa of a normalized floating-point number, which is not stored explicitly

56
New cards

Arbitrary precision arithmetic

Software technique that allows calculations with a user-defined number of digits beyond hardware limits

57
New cards

Sign bit

Single binary digit that indicates whether the store number is positive (0) or negative (1)

58
New cards

Gauss (historical contribution)

Introduced systematic elimination methods and contributed to the theory of least squares

59
New cards

Absolute error

Magnitude of the difference between an approximate value and the exact mathematical value

60
New cards

32-bit floating-point format

Binary representation using 1 sign bit, 8 exponent bits, and 23 mantissa bits

61
New cards

Unit scaling

Choosing measurement units that keep numerical values within the optimal range of the floating-point format

62
New cards

Normalized number

Floating-point value whose leading mantissa bit is implicitly 1, providing maximum precision

63
New cards

Round-to-nearest even

Tie-breaking rule that rounds a value to the nearest representable number; if exactly halfway, selects the one with an even least-significant bit

64
New cards

Finite difference approximation

Method that estimates derivatives by using function values at discrete points

65
New cards

Taylor series

Infinite sum of derivatives evaluated at a point, used to approximate smooth function locally

66
New cards

Overflow

Condition where a number exceeds the largest representable magnitude, resulting in infinity

67
New cards

Newton (historical contribution)

Developed early numerical techniques such as the Newton-Raphson method for root finding

Explore top notes

note
Chapter 10: Mass and Moles
Updated 1065d ago
0.0(0)
note
Exam 2 Study Guide (1)
Updated 519d ago
0.0(0)
note
La Familia Level 1
Updated 1159d ago
0.0(0)
note
Allotropes of Carbon
Updated 1218d ago
0.0(0)
note
Chapter 16: Cytoskeleton
Updated 986d ago
0.0(0)
note
1.1 Intro to Business
Updated 1227d ago
0.0(0)
note
Chapter 10: Mass and Moles
Updated 1065d ago
0.0(0)
note
Exam 2 Study Guide (1)
Updated 519d ago
0.0(0)
note
La Familia Level 1
Updated 1159d ago
0.0(0)
note
Allotropes of Carbon
Updated 1218d ago
0.0(0)
note
Chapter 16: Cytoskeleton
Updated 986d ago
0.0(0)
note
1.1 Intro to Business
Updated 1227d ago
0.0(0)

Explore top flashcards

flashcards
Appendicular skeleton
89
Updated 907d ago
0.0(0)
flashcards
Endocrine System
49
Updated 1190d ago
0.0(0)
flashcards
Do now vocab (47)
47
Updated 466d ago
0.0(0)
flashcards
APUSH Period 4 Vocabulary
46
Updated 1168d ago
0.0(0)
flashcards
EXPH0300
108
Updated 1047d ago
0.0(0)
flashcards
gov final yay
64
Updated 431d ago
0.0(0)
flashcards
Appendicular skeleton
89
Updated 907d ago
0.0(0)
flashcards
Endocrine System
49
Updated 1190d ago
0.0(0)
flashcards
Do now vocab (47)
47
Updated 466d ago
0.0(0)
flashcards
APUSH Period 4 Vocabulary
46
Updated 1168d ago
0.0(0)
flashcards
EXPH0300
108
Updated 1047d ago
0.0(0)
flashcards
gov final yay
64
Updated 431d ago
0.0(0)