Grade 12 STEM Mathematics: Numerical Methods

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

1/51

flashcard set

Earn XP

Description and Tags

Flashcards covering the essential vocabulary, error analysis types, linear algebra concepts, interpolation methods, numerical integration, and differential equation solutions from Grade 12 STEM Mathematics.

Last updated 2:48 AM on 5/9/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

52 Terms

1
New cards

Numerical Analysis

A discipline of mathematics that analyses the methods and algorithms used to solve a wide range of problems including mathematics, physics, engineering, medicine, and the social and life sciences.

2
New cards

Scientific Notation

A notation where a real number kk is written in the form k=m×10nk = m \times 10^n, where 1m101 \le m \le 10 and the exponent nn is an integer.

3
New cards

Numerical Error

The difference between the exact solution xx and its approximate solution xx^*, expressed as e=xxe = x - x^*.

4
New cards

Blunders (Gross Errors)

Human errors caused by mistakes and oversight during scientific investigations.

5
New cards

Modelling Errors

Also known as formulation errors, these arise during the modelling process when factors are ignored to simplify the problem.

6
New cards

Data Uncertainty

Also known as data errors, these are due to the uncertainty of the physical problem data.

7
New cards

Discretization Errors

Errors resulting from approximating and replacing complex continuous problems with discrete representations.

8
New cards

Absolute Error

The absolute value of the error ee, defined as e^=xx\hat{e} = |x - x^*|.

9
New cards

Relative Error

The ratio between the absolute error e^\hat{e} and the absolute value of the exact solution xx, defined as e~=xxx\tilde{e} = \frac{|x - x^*|}{|x|} for x0x \neq 0.

10
New cards

Round-off Error

The error caused by replacing a number by its closest machine number due to computers representing numbers with a finite number of digits.

11
New cards

Truncation Errors (Chopping Errors)

Errors occur when chopping an infinite number and replacing it by a finite number, or by truncating a series after a finite number of terms.

12
New cards

Taylor Series

An infinite series representation of an infinitely-differentiable function f(x)f(x) at point aa, defined as f(x)=n=0f(n)(a)n!(xa)nf(x) = \sum_{n=0}^{\infty} \frac{f^{(n)}(a)}{n!}(x - a)^n.

13
New cards

Maclaurin Series

A Taylor series expansion specifically for the case where the point of expansion a=0a = 0.

14
New cards

Numerical Stability

A property of a numerical algorithm where the final result is relatively unaffected by perturbations during the computation process.

15
New cards

Conditioning

Also called sensitivity, it is a measure of how sensitive the output is to small changes in the input data.

16
New cards

Condition Number of a Function

If f(x)f(x) is differentiable at xx, the condition number is Cond(f(x))=xf(x)f(x)Cond(f(x)) = \frac{|x f'(x)|}{|f(x)|} for f(x)0f(x) \ne 0.

17
New cards

Accuracy

A measure of the closeness of the approximate solution to the exact solution.

18
New cards

Precision

A measure of the closeness of two or more measurements to each other.

19
New cards

Matrix

A rectangular array of numbers or functions enclosed in brackets; the items are called elements.

20
New cards

Square Matrix

A matrix that has an equal number of rows and columns.

21
New cards

Main Diagonal

The diagonal in a square matrix containing the entries a11,a22,,anna_{11}, a_{22}, \dots, a_{nn}.

22
New cards

Vector

A matrix having just a single row (row vector) or a single column (column vector).

23
New cards

Scalar Multiplication

The product of an m×nm \times n matrix A=[ajk]A = [a_{jk}] and a scalar cc, resulting in a matrix where every entry is multiplied by cc.

24
New cards

Zero Matrix

A matrix of size m×nm \times n where all elements are zero.

25
New cards

Identity Matrix

A diagonal matrix, denoted by II, whose diagonal elements are all 1s1\text{s}, satisfying IA=AI=AIA = AI = A for any square matrix AA.

26
New cards

Inverse Matrix

For a given matrix AA, a matrix BB (denoted A1A^{-1}) such that AB=BA=IAB = BA = I.

27
New cards

Singular Matrix

A matrix that does not have an inverse, also referred to as non-invertible; this occurs when the determinant is zero.

28
New cards

Augmented Matrix

A matrix representing a system of equations containing the coefficient entries and the constants separated by a vertical line.

29
New cards

Minor (MijM_{ij})

The determinant of the submatrix obtained by deleting the i-thi\text{-th} row and j-thj\text{-th} column of a matrix.

30
New cards

Co-factor (AijA_{ij})

The value associated with a minor, defined as Aij=(1)i+jMijA_{ij} = (-1)^{i+j} M_{ij}.

31
New cards

Gaussian Elimination

A direct method for solving systems of equations by using legal row operations to convert the coefficient matrix into an upper triangular matrix.

32
New cards

Gauss-Jordan Method

A direct method that converts the coefficient matrix into an identity matrix using legal row operations.

33
New cards

Jacobi Iterative Method

A technique for solving linear systems where the components for the current iteration are generated solely from the components of the previous iteration.

34
New cards

Gauss-Seidel Iterative Method

An iterative technique where the most recently calculated components of the current iteration are used to compute subsequent components.

35
New cards

Successive Over-Relaxation (SOR) Method

An iterative method particularly useful for solving linear systems occurring in numerical solutions of partial-differential equations, often using a factor w>1w > 1.

36
New cards

Interpolation

The focus of providing a credible projection or fitting a function to given data, such as population census figures.

37
New cards

Lagrange Interpolating Polynomial

The unique polynomial of degree at most nn that agrees with a function ff at n+1n+1 distinct numbers.

38
New cards

Neville's Method

A recursive process used to find the nthn\text{th} Lagrange interpolating polynomial for a set of points.

39
New cards

Divided Difference

A recursive formula (e.g., f[xi,xi+1]f[x_i, x_{i+1}]) used in Newton's interpolation methods to represent function values across distinct nodes.

40
New cards

Hermite Interpolation

The unique polynomial of least degree that agrees with both function values ff and their derivatives ff' at a given set of nodes.

41
New cards

Cubic Spline Interpolation

A piecewise-polynomial approximation employing cubic polynomials between succeeding pairs of nodes to ensure continuous differentiability and continuous second derivatives.

42
New cards

Midpoint Rule

A numerical integration technique that estimates an integral by summing the values of the function evaluated at the midpoints of sub-intervals.

43
New cards

Trapezoidal Rule

A numerical integration method that approximates the value of a definite integral by dividing the interval into sub-intervals and treating the segments as trapezoids.

44
New cards

Simpson's Rule

A numerical integration technique that uses piecewise quadratic functions to approximate the curve of a function.

45
New cards

Gaussian Quadrature

A method to approximate the integral of f(x)f(x) between 1-1 and 11 using the sum i=1ncif(xi)\sum_{i=1}^{n} c_i f(x_i) that is exact for polynomials of degree at most 2n12n - 1.

46
New cards

Euler's Method

A first-order numerical technique for solving initial value problems based on the Taylor's Series.

47
New cards

Heun's Method

A numerical method for solving initial value problems that provides an improved approximation over the simple Euler's method.

48
New cards

Runge-Kutta Order Four Method

A highly popular and accurate numerical method used to solve initial value problems for ordinary differential equations.

49
New cards

Eigenvector

A nonzero vector that changes at most by a scalar factor (the eigenvalue) when a linear transformation is applied to it.

50
New cards

Eigenvalue (\lambda)

The scalar factor by which an eigenvector is scaled during a linear transformation.

51
New cards

Characteristic Polynomial

The polynomial defined as p(λ)=det(AλI)p(\lambda) = \det(A - \lambda I), used to find eigenvalues.

52
New cards

Characteristic Equation

The equation obtained by setting the characteristic polynomial to zero: p(λ)=0p(\lambda) = 0.