
INTRODUCTION
Numerical Methods is the branch of mathematics that builds practical computational tools for solving problems that cannot be resolved by exact analytical means. Many engineering problems involve equations, integrals, or differential equations for which closed-form solutions either do not exist or are too complex to be useful. Numerical methods provide systematic algorithms that produce accurate approximate solutions, and the theory behind those algorithms: convergence, accuracy, stability, and error is what the engineering Mathematics board exam tests.
This topic appears across multiple engineering disciplines in the licensure examinations. Civil engineers use numerical methods to analyze indeterminate structures and solve boundary value problems. Electrical and electronics engineers apply them in circuit simulation, signal processing, and control system analysis. Mechanical engineers rely on them for heat transfer, fluid mechanics, and structural analysis problems that resist analytical treatment. The board exam mathematics section covers the foundational algorithms directly namely bisection method, Newton-Raphson, interpolation formulas, Simpson’s rule, and Runge-Kutta while the major subject examinations embed numerical reasoning in applied contexts.
This glossary covers 201 numerical methods terms drawn from the complete scope as taught in Philippine engineering programs and reviewed for the licensure examination. The entries span the core topic areas: error analysis, root-finding methods, systems of linear equations, interpolation and curve fitting, numerical differentiation, numerical integration, and numerical solutions to ordinary differential equations. Each definition is written to be technically precise and board exam relevant. Terms that carry their own formulas or computational procedures are described with enough specificity that you can reconstruct the method from the definition alone.
Approach this topic with a dual focus. First, understand what each method does and when to use it. Second, know the formulas well enough to apply them by hand to small problems, because that is exactly how they are tested on the board exam. The algorithms covered here are not complex to execute on small examples. The bisection, Newton-Raphson, trapezoidal rule, and Euler’s method can all be carried out in a few steps with a calculator. What trips reviewees up is not the arithmetic but the vocabulary and the selection logic. This glossary is designed to close that gap.
The 201 Numerical Methods Terms and Definitions
1. 3/8 Rule
See Simpson’s 3/8 Rule. The four-point Newton-Cotes formula using three subintervals with the pattern of weights 1, 3, 3, 1.
2. Absolute Error
The absolute value of the difference between the exact value and the approximate value: |exact − approximate|. Absolute error gives the magnitude of the error without regard to direction and is the most basic measure of accuracy. It is used when the scale of the quantity is known and relevant.
3. Acceleration of Convergence
A technique applied to a slowly converging sequence to produce a faster-converging sequence with the same limit. Aitken’s delta-squared process and Richardson extrapolation are common acceleration methods. Accelerating convergence reduces the number of iterations needed to reach a desired accuracy.
4. Adams-Bashforth Method
An explicit multi-step method for solving ordinary differential equations that uses previously computed solution values to predict the next step without solving an implicit equation. The two-step Adams-Bashforth formula is y_{n+1} = yₙ + h(3f(tₙ, yₙ) − f(t_{n−1}, y_{n−1}))/2. It requires a starting procedure to generate the first few values.
5. Adams-Moulton Method
An implicit multi-step method for solving ordinary differential equations that uses the function value at the new step in the update formula, requiring an iterative or predictor-corrector approach. It is more accurate than the corresponding Adams-Bashforth method of the same order and is often paired with it in a predictor-corrector scheme.
6. Adams Predictor-Corrector
The pairing of the Adams-Bashforth explicit formula as the predictor with the Adams-Moulton implicit formula as the corrector. This combination achieves high accuracy efficiently by avoiding the need to solve the implicit equation iteratively — instead, the explicit prediction is substituted directly into the corrector formula once.
7. Adaptive Integration
A numerical integration strategy that automatically adjusts the step size or number of subintervals based on the local behavior of the integrand, concentrating computational effort where the function varies rapidly. Adaptive methods achieve a specified accuracy more efficiently than fixed-step methods.
8. Adaptive Step Size
A strategy in numerical methods where the step size h is automatically adjusted during computation based on estimated local error. Smaller steps are used where the solution changes rapidly and larger steps where it is smooth. Runge-Kutta-Fehlberg is the standard example of an adaptive step size ODE solver.
9. Aitken’s Delta-Squared Process
An extrapolation technique for accelerating the convergence of a linearly converging sequence. Given three successive iterates x₀, x₁, x₂, the accelerated estimate is x̂ = x₀ − (x₁ − x₀)²/(x₂ − 2x₁ + x₀). It is particularly effective for sequences generated by fixed-point iteration.
10. Algorithm
A finite sequence of well-defined instructions for solving a computational problem or class of problems. In numerical methods, an algorithm specifies the exact steps: initialization, iteration, convergence check, and output needed to compute an approximate solution. The efficiency, accuracy, and stability of a numerical method are properties of its algorithm.
11. Approximate Solution
The output of any numerical method, representing a computed estimate of the exact mathematical solution. All numerical methods produce approximate solutions, and the goal of error analysis is to bound and control the difference between the approximate and exact values.
12. Approximation
A value or function that is close to but not exactly equal to the true value or function. All numerical methods produce approximations rather than exact answers. The quality of an approximation is measured by the error between the approximate and exact values.
13. Back Substitution
The process of solving a system of linear equations after it has been reduced to upper triangular form by Gaussian elimination. Starting from the last equation (which has one unknown), each variable is solved in sequence by substituting previously determined values upward through the system.
14. Backward Difference
A finite difference approximation that estimates derivatives using the current point and points to the left (earlier in the sequence). The first backward difference of f at xₙ is ∇f(xₙ) = f(xₙ) − f(xₙ₋₁). Backward differences are used in backward difference interpolation formulas and implicit ODE methods.
15. Backward Euler Method
An implicit first-order method for solving ordinary differential equations, defined by y_{n+1} = yₙ + h·f(t_{n+1}, y_{n+1}). Because y_{n+1} appears on both sides, the method requires solving an equation at each step, but it is unconditionally stable for stiff problems, making it preferred over the explicit forward Euler method in those cases.
16. Bairstow’s Method
A numerical method for finding all roots of a polynomial, including complex roots, by iteratively extracting quadratic factors using synthetic division. It avoids working with complex arithmetic directly and converges quadratically near the roots. It generalizes Newton’s method to polynomial root extraction.
17. Banded Matrix
A sparse matrix in which all non-zero entries are confined to a diagonal band around the main diagonal. Banded matrices arise naturally in finite difference and finite element methods. Specialized algorithms exploit the banded structure to solve linear systems much more efficiently than general methods.
18. Bisection Method
A root-finding method that repeatedly halves a bracketing interval [a, b] in which the function changes sign, guaranteeing the presence of a root. At each step, the midpoint c = (a + b)/2 is computed and the interval is replaced by whichever half still contains the sign change. It converges linearly and is the most reliable but slowest of the standard root-finding methods.
19. Boundary Condition
A condition that a solution must satisfy at the boundary of the domain. In ordinary differential equations, boundary conditions are specified at two or more distinct points. Boundary value problems are more complex to solve numerically than initial value problems and require methods such as shooting or finite differences.
20. Boundary Value Problem
A differential equation problem in which conditions are specified at two or more boundary points of the domain rather than all at a single initial point. Numerical methods for boundary value problems include the shooting method, finite difference method, and finite element method.
21. Bracketing Method
Any root-finding method that maintains an interval [a, b] known to contain a root, based on the intermediate value theorem (f(a) and f(b) have opposite signs). Bisection and regula falsi are bracketing methods. They are guaranteed to converge but generally slower than open methods like Newton-Raphson.
22. Central Difference
A finite difference approximation that estimates a derivative using values symmetrically placed around the point of interest. The first central difference approximation of f'(x) is [f(x + h) − f(x − h)] / (2h). Central differences are more accurate than forward or backward differences for the same step size, with error of order h².
23. Central Difference Formula for Second Derivative
The finite difference approximation f”(x) ≈ [f(x + h) − 2f(x) + f(x − h)] / h², obtained by applying the central difference operator twice. It has second-order accuracy (error of order h²) and is the standard formula for approximating second derivatives in finite difference methods for differential equations.
24. Chebyshev Nodes
Specific interpolation nodes chosen to minimize the maximum interpolation error over an interval. They are the roots of Chebyshev polynomials: xₖ = cos((2k − 1)π/(2n)) for k = 1, 2, …, n, mapped to the interval [a, b]. Using Chebyshev nodes significantly reduces the Runge phenomenon in polynomial interpolation.
25. Chebyshev Polynomials
A family of orthogonal polynomials defined by Tₙ(x) = cos(n arccos x) on the interval [−1, 1]. They have the minimax property: among all polynomials of degree n with leading coefficient 1, the Chebyshev polynomial has the smallest maximum absolute value. They are used in polynomial approximation and numerical integration.
26. Chord Method
See Secant Method. A root-finding method that approximates the derivative in Newton’s formula using a finite difference between two previous function values.
27. Closed Integration Formula
A numerical integration rule that uses function values at both endpoints of the integration interval, as opposed to open formulas which exclude the endpoints. The trapezoidal rule and Simpson’s rule are closed Newton-Cotes formulas. Closed formulas are generally more accurate than open formulas of the same order.
28. Composite Integration Rule
A numerical integration method applied over the entire interval by dividing it into multiple subintervals and applying a basic rule (trapezoidal, Simpson’s, etc.) to each subinterval. Composite rules achieve higher accuracy by using more subintervals rather than higher-degree polynomials. The composite trapezoidal and composite Simpson’s rules are the most common.
29. Composite Simpson’s Rule
The application of Simpson’s rule over n equal subintervals (n must be even), giving ∫f(x)dx ≈ (h/3)[f(x₀) + 4f(x₁) + 2f(x₂) + 4f(x₃) + … + 4f(x_{n−1}) + f(xₙ)], where h = (b − a)/n. The composite Simpson’s rule has fourth-order accuracy and is one of the most tested integration formulas on the board exam.
30. Composite Trapezoidal Rule
The application of the trapezoidal rule over n equal subintervals, giving ∫f(x)dx ≈ (h/2)[f(x₀) + 2f(x₁) + 2f(x₂) + … + 2f(x_{n−1}) + f(xₙ)], where h = (b − a)/n. It has second-order accuracy and systematically underestimates or overestimates depending on the concavity of the integrand.
31. Condition Number
A measure of how sensitive the solution of a linear system Ax = b is to small perturbations in A or b. A large condition number indicates an ill-conditioned system where small errors in the input produce large errors in the solution. It is defined as κ(A) = ‖A‖ · ‖A⁻¹‖ and determines the loss of significant digits in numerical solutions.
32. Convergence
The property of a sequence of iterates produced by a numerical method approaching the exact solution as the number of iterations increases. A method converges if the error decreases toward zero. Convergence analysis determines when and how quickly a method reaches an acceptable solution.
33. Convergence Criterion
A stopping condition used to terminate an iterative numerical method when the solution is sufficiently accurate. Common criteria include |x_{n+1} − xₙ| < tolerance (successive approximation), |f(xₙ)| < tolerance (function value), or a maximum number of iterations. The criterion must be chosen carefully to balance accuracy and computational cost.
34. Convergence of Iterative Methods
The property that the sequence of iterates x₀, x₁, x₂, … produced by an iterative method approaches the true solution x* as the number of iterations increases. Convergence depends on the method, the problem, and the initial guess. The rate of convergence (linear, quadratic, superlinear) determines how quickly the method reaches a desired accuracy.
35. Corrector Formula
In a predictor-corrector method, the implicit formula used to improve (correct) the prediction made by the explicit predictor formula. The corrector uses the predicted value to evaluate the function at the new step and then applies the implicit update. The Adams-Moulton formula is a common corrector.
36. Crout’s Method
A variant of LU decomposition that directly computes the lower triangular matrix L and upper triangular matrix U of a coefficient matrix without partial pivoting. Crout’s method is used to solve linear systems efficiently by decomposing the system once and then performing forward and back substitution for any right-hand side vector.
37. Cubic Spline
A piecewise cubic polynomial that interpolates a set of data points with continuous first and second derivatives at the interior knots. Natural cubic splines additionally set the second derivative to zero at the two endpoints. Cubic splines produce smooth, visually appealing interpolants without the oscillation problems of high-degree polynomials.
38. Curve Fitting
The process of finding a mathematical function (line, polynomial, exponential, etc.) that best represents the overall trend in a set of data points, without requiring exact passage through every point. Curve fitting minimizes a measure of overall error, typically the sum of squared residuals. It differs from interpolation, which requires exact passage through all data points.
39. Data Point
A pair (xᵢ, yᵢ) consisting of an independent variable value and its corresponding observed or computed dependent variable value. Data points are the inputs to interpolation, curve fitting, and numerical integration methods. The accuracy and spacing of data points strongly influence the quality of numerical results.
40. Dead-Load Iteration
An iterative correction scheme commonly used in structural engineering numerical analysis where the solution is updated repeatedly using residual forces from the previous iteration. It is a specific application of fixed-point iteration in the context of nonlinear structural problems.
41. Deflation
The process of reducing a polynomial to a lower-degree polynomial after one root has been found, by dividing out the corresponding linear factor using synthetic division. Deflation allows the remaining roots to be found from the reduced polynomial. Accumulated rounding errors can cause deflation to become less accurate for later roots.
42. Degree of Precision
The highest degree polynomial for which a numerical integration formula gives an exact result. The trapezoidal rule has degree of precision 1 (exact for polynomials up to degree 1). Simpson’s rule has degree of precision 3 (exact for polynomials up to degree 3). Higher degree of precision means greater accuracy for smooth functions.
43. Derivative Approximation
The numerical estimation of a derivative at a point using finite differences. Forward, backward, and central difference formulas are the standard approaches. The accuracy of the approximation depends on the step size h and the order of the formula, with central differences being most accurate for the same h.
44. Deterministic Algorithm
An algorithm that produces the same output every time it is run with the same input. All standard numerical methods: bisection, Gaussian elimination, Runge-Kutta are all deterministic. This contrasts with stochastic or randomized methods like Monte Carlo simulation.
45. Difference Table
A tabular arrangement of forward, backward, or central differences of a function, used in Newton’s interpolation formulas and in deriving numerical differentiation and integration rules. Constructing a difference table is the first step in applying Gregory-Newton interpolation.
46. Differential Equation (Numerical Solution)
The approximate solution of a differential equation obtained by replacing derivatives with finite difference approximations and advancing the solution step by step from known initial or boundary conditions. The accuracy and stability of the numerical solution depend on the method, step size, and the nature of the equation.
47. Differentiation Matrix
A matrix D such that the vector of derivative values at grid points equals D times the vector of function values at those grid points. Differentiation matrices are used in spectral methods and collocation methods for differential equations. Their construction is based on differentiation of the interpolating polynomial through the grid points.
48. Divided Difference
The generalized slope of a function defined recursively over a set of nodes, used in Newton’s divided difference interpolating polynomial. The first divided difference is f[xᵢ, xⱼ] = (f(xⱼ) − f(xᵢ))/(xⱼ − xᵢ). Higher-order divided differences are computed recursively and form the coefficients of Newton’s interpolating polynomial.
49. Dominant Eigenvalue
The eigenvalue of a matrix with the largest absolute value. Power iteration converges to the dominant eigenvalue and its corresponding eigenvector. Knowledge of the dominant eigenvalue is important in stability analysis, principal component analysis, and convergence analysis of iterative methods.
50. Double Integration (Numerical)
The numerical approximation of a double integral ∬f(x, y) dA over a two-dimensional region. It is typically implemented by applying one-dimensional integration rules repeatedly, integrating over one variable at fixed values of the other. The error analysis extends naturally from the one-dimensional case.
51. Eigenvalue Problem (Numerical)
The problem of computing the eigenvalues and eigenvectors of a matrix using iterative numerical methods. Power iteration finds the dominant eigenvalue. The QR algorithm finds all eigenvalues. Numerical eigenvalue computation is important in vibration analysis, stability assessment, and principal component analysis.
52. Elimination Method
A method for solving a system of linear equations by systematically eliminating variables using row operations. Gaussian elimination is the standard elimination method. It reduces the system to upper triangular form from which the solution is obtained by back substitution.
53. Empirical Formula
A mathematical expression derived from experimental data rather than from theoretical derivation. Empirical formulas are developed using curve fitting or regression techniques and are valid within the range of the data used to construct them. They are commonly used in engineering design and analysis.
54. Error
The difference between the exact solution and the numerical approximation. Error in numerical methods arises from two primary sources: truncation error (from approximating mathematical operations) and round-off error (from finite precision arithmetic). Controlling and estimating error is central to the practice of numerical methods.
55. Error Analysis
The study of the sources, magnitudes, propagation, and control of errors in numerical computations. A thorough error analysis classifies the type of error, derives an expression for its magnitude, and determines how the error behaves as step size or number of iterations changes.
56. Error Bound
An upper limit on the magnitude of the error in a numerical approximation, derived from mathematical analysis of the method. For the composite Simpson’s rule, the error bound is |E| ≤ (b − a)⁵ f⁽⁴⁾(ξ) / (180n⁴) for some ξ in [a, b]. Error bounds guide the selection of step size to meet accuracy requirements.
57. Error Propagation
The process by which errors introduced at one stage of a computation influence the errors at later stages. In iterative methods, error propagation determines whether errors amplify (unstable) or diminish (stable). In direct methods, error propagation through arithmetic operations determines the final accuracy.
58. Euler’s Method
The simplest explicit first-order method for solving initial value problems of the form y’ = f(t, y), y(t₀) = y₀. The update formula is y_{n+1} = yₙ + h·f(tₙ, yₙ), where h is the step size. Euler’s method has first-order accuracy (error proportional to h) and is the foundation for understanding more advanced ODE solvers. It is among the most tested numerical methods on the board exam.
59. Explicit Method
A numerical method in which the solution at the next step is computed directly from known values at the current and previous steps, without solving an equation. Euler’s method and Adams-Bashforth are explicit methods. Explicit methods are easy to implement but may be unstable for stiff problems with large step sizes.
60. Extrapolation
The estimation of a function value outside the range of known data, or the use of multiple approximations at different step sizes to construct a more accurate result. Richardson extrapolation is the standard technique for improving accuracy by combining two approximations with different step sizes to cancel leading error terms.
61. False Position Method
See Regula Falsi Method.
62. Finite Difference
An approximation to a derivative obtained by dividing the difference of function values at nearby points by the spacing between those points. Finite differences are the fundamental building blocks of numerical differentiation, numerical integration formulas, and finite difference methods for differential equations.
63. Finite Difference Method
A method for solving differential equations by replacing derivatives with finite difference approximations at a set of grid points, converting the differential equation into a system of algebraic equations. It is widely used for boundary value problems and partial differential equations in engineering analysis.
64. Finite Element Method
A powerful numerical technique for solving boundary value problems by dividing the domain into small subdomains called elements, approximating the solution within each element using simple basis functions, and assembling the resulting system of equations. It is the standard computational tool in structural, thermal, and fluid mechanics engineering analysis.
65. Fixed-Point
A value x* such that g(x*) = x*, i.e., the function maps the point to itself. Root-finding problems f(x) = 0 are converted to fixed-point problems by writing x = g(x) = x − f(x)/k for some constant k. Fixed-point iteration converges to x* when |g'(x*)| < 1.
66. Fixed-Point Iteration
A root-finding method that rewrites the equation f(x) = 0 in the form x = g(x) and iterates x_{n+1} = g(xₙ) starting from an initial guess x₀. The method converges when |g'(x*)| < 1 near the root x*. The convergence rate is linear (first order) when |g'(x*)| is close to 1 and approaches superlinear when |g'(x*)| is close to 0.
67. Fixed-Point Theorem
The theorem guaranteeing that if g is a contraction mapping on a closed interval (meaning |g'(x)| ≤ k < 1 for all x in the interval and g maps the interval to itself), then the fixed-point iteration x_{n+1} = g(xₙ) converges to a unique fixed point. It provides the theoretical foundation for the convergence of fixed-point iteration.
68. Forward Difference
A finite difference approximation using the current point and the next point: Δf(xₙ) = f(x_{n+1}) − f(xₙ). The forward difference approximation to f'(x) is [f(x + h) − f(x)]/h with first-order error O(h). Forward differences are the basis of Newton’s forward interpolation formula and the explicit Euler method.
69. Forward Elimination
The first phase of Gaussian elimination in which elementary row operations are applied to the augmented matrix to create zeros below each pivot, transforming the system to upper triangular form. Forward elimination proceeds column by column from left to right.
70. Forward Euler Method
See Euler’s Method. The explicit first-order ODE solver y_{n+1} = yₙ + h·f(tₙ, yₙ).
71. Fourth-Order Runge-Kutta Method
The most widely used single-step method for solving initial value problems, combining four function evaluations per step to achieve fourth-order accuracy (error proportional to h⁴). The classical formula uses weighted averages of slopes k₁, k₂, k₃, k₄ evaluated at the beginning, two midpoints, and end of the step. It is the standard ODE solver in most engineering applications and is heavily tested on the board exam.
72. Frobenius Norm
A matrix norm computed as the square root of the sum of squares of all matrix entries. It is used in error analysis and in measuring the size of matrices in numerical computations. Unlike operator norms, the Frobenius norm is computed entry-wise.
73. Full Pivoting
A variant of Gaussian elimination in which both rows and columns are searched to find the largest available pivot at each step. Full pivoting provides maximum numerical stability but requires tracking both row and column permutations. Partial pivoting (row pivoting only) is the more common compromise between stability and simplicity.
74. Gauss-Jordan Elimination
An extension of Gaussian elimination that eliminates entries both below and above each pivot, reducing the augmented matrix all the way to reduced row echelon form. The solution is read off directly without back substitution. Gauss-Jordan is used both for solving linear systems and for computing matrix inverses.
75. Gauss-Legendre Quadrature
A Gaussian quadrature rule using Legendre polynomial roots as nodes and specifically derived weights to achieve the highest possible degree of precision for a given number of function evaluations. An n-point Gauss-Legendre rule integrates polynomials of degree up to 2n − 1 exactly.
76. Gauss-Seidel Method
An iterative method for solving a system of linear equations in which each variable is updated using the most recently computed values of all other variables. It generally converges faster than the Jacobi method and is guaranteed to converge for diagonally dominant or positive definite systems. Each new value is used immediately rather than waiting for the entire iteration to complete.
77. Gaussian Elimination
The standard direct method for solving systems of linear equations by applying elementary row operations to the augmented matrix to reduce it to upper triangular form, followed by back substitution. It is O(n³) in computational complexity and is the foundation of most direct linear system solvers.
78. Gaussian Integration Points
The specific nodes (abscissae) used in Gaussian quadrature, chosen as the roots of orthogonal polynomials (Legendre, Laguerre, Hermite, etc.) appropriate to the integration domain and weight function. The optimal placement of these nodes is what gives Gaussian quadrature its superior accuracy compared to Newton-Cotes rules.
79. Gaussian Quadrature
A class of numerical integration methods that select both the nodes (evaluation points) and weights optimally to maximize accuracy for a given number of function evaluations. Gaussian quadrature achieves degree of precision 2n − 1 with n function evaluations, compared to degree n − 1 for Newton-Cotes rules with n points.
80. Global Error
The total accumulated error in a numerical ODE solution at a given point, resulting from the accumulation of local truncation errors over all previous steps. Global error analysis determines how errors propagate and accumulate from the initial condition to the final solution point.
81. Global Truncation Error
The overall error in a numerical method accumulated over all steps from the initial point to the current point. For Euler’s method, the global truncation error is O(h) first order. For the fourth-order Runge-Kutta method, it is O(h⁴). Global error is one order higher in h than local truncation error.
82. Gregory-Newton Interpolation
See Newton’s Forward Difference Interpolation Formula.
83. Grid Point
A specific location in the discrete set of values at which a numerical method evaluates or stores the solution. In ODE solvers, grid points are the time steps tₙ = t₀ + nh. In finite difference methods for PDEs, grid points form a mesh covering the spatial domain.
84. Heun’s Method
A second-order predictor-corrector ODE method that first predicts y{n+1} = yₙ + h·f(tₙ, yₙ) (Euler step) and then corrects using the average slope: y{n+1} = yₙ + (h/2)[f(tₙ, yₙ) + f(t_{n+1}, y_{n+1})]. Also called the improved Euler method or modified Euler method. It has second-order accuracy (error proportional to h²).
85. Higher-Order Method
A numerical method with a higher-order truncation error, meaning the error decreases more rapidly as step size h decreases. A method of order p has error proportional to h^p. Higher-order methods require fewer steps to achieve a given accuracy but may require more function evaluations per step.
86. Horner’s Method
A computationally efficient algorithm for evaluating a polynomial p(x) = aₙxⁿ + … + a₁x + a₀ by rewriting it in nested form: p(x) = (…((aₙx + a_{n−1})x + a_{n−2})x + … + a₁)x + a₀. It reduces the number of multiplications from O(n²) to O(n) and is the basis of synthetic division.
87. Ill-Conditioned System
A system of linear equations for which small perturbations in the coefficient matrix or right-hand side produce large changes in the solution. An ill-conditioned system has a large condition number. Numerical solutions to ill-conditioned systems suffer from severe loss of significant digits and may be unreliable.
88. Implicit Method
A numerical method in which the solution at the next step appears on both sides of the update equation, requiring an additional solve step at each iteration. Implicit methods are typically more stable than explicit methods for stiff problems. The backward Euler method and Crank-Nicolson method are implicit ODE solvers.
89. Incremental Search Method
A preliminary step in root finding in which the domain is scanned at regular intervals to detect sign changes in f(x), locating subintervals that each contain a root. Once brackets are identified, a more precise method such as bisection or Newton-Raphson is applied within each bracket.
90. Initial Condition
The value of the unknown function (and possibly its derivatives) at the initial point of an initial value problem. For y’ = f(t, y), the initial condition y(t₀) = y₀ specifies where the solution starts. All explicit single-step ODE methods advance the solution step by step starting from the initial condition.
91. Initial Value Problem
A differential equation together with specified values of the unknown function (and derivatives) at a single initial point. IVPs are solved by marching forward from the initial condition using step-by-step methods such as Euler, Heun, or Runge-Kutta.
92. Instability of Numerical Differentiation
The tendency for numerical differentiation to amplify round-off errors as the step size h decreases. While truncation error decreases with h, round-off error increases as h becomes very small because subtraction of nearly equal numbers loses significant digits. An optimal h balances these two competing sources of error.
93. Integration by Parts (Numerical)
A technique used to handle integrals of products of functions in the context of numerical integration. It is analogous to the analytical integration by parts formula and is sometimes used to transform difficult integrals into forms more amenable to numerical treatment.
94. Interpolating Polynomial
A polynomial that passes exactly through a given set of data points (xᵢ, yᵢ). By the Weierstrass theorem and uniqueness of polynomial interpolation, there is exactly one polynomial of degree at most n − 1 passing through n data points. Newton’s and Lagrange’s formulas provide two ways to construct this unique polynomial.
95. Interpolation
The process of estimating the value of a function at a point within the range of known data points, using the assumption that the function can be approximated by a polynomial or other smooth function through those points. Interpolation is distinct from extrapolation (estimation outside the data range) and from regression (fitting without exact passage through points).
96. Interval Halving
See Bisection Method. The repeated halving of an interval to locate a root of a function.
97. Inverse Interpolation
The process of finding the value of the independent variable x corresponding to a specified value of the dependent variable y, using an interpolation formula. It is the reverse of ordinary interpolation and may be solved directly or by applying an interpolation formula to the inverse function.
98. Inverse Power Method
An iterative method for finding the eigenvalue of a matrix with the smallest absolute value and its corresponding eigenvector. It applies the power method to the inverse of the matrix, so the dominant eigenvalue of A⁻¹ corresponds to the smallest eigenvalue of A.
99. Iterative Method
A computational procedure that starts from an initial approximation and generates a sequence of improved approximations by repeatedly applying a fixed formula. Iterative methods are used for root finding (Newton-Raphson, bisection), solving linear systems (Jacobi, Gauss-Seidel), and solving ODEs (Picard iteration).
100. Iterative Refinement
A technique for improving the accuracy of a solution to a linear system obtained by Gaussian elimination, by computing the residual, solving for a correction, and adding the correction to the current solution. It is effective for improving solutions that have been degraded by round-off errors in ill-conditioned systems.
This content is for Premium Member. Tired of ads?
Subscribe To Unlock The Content! and Remove Ads.
201. Zeros of a Function
The values of x for which f(x) = 0. Also called roots. Finding zeros is the fundamental objective of root-finding numerical methods. Engineering problems involving equilibrium conditions, resonance frequencies, and critical points all reduce to finding zeros of appropriate functions.
CONCLUSION
For the engineering Mathematics board exam, the highest-priority items in Numerical Methods are the root-finding methods particularly bisection and Newton-Raphson and the numerical integration formulas, especially the composite trapezoidal rule and Simpson’s 1/3 rule. These are the topics that appear most consistently across exam years and across engineering disciplines. You should be able to execute several iterations of bisection, apply one or two Newton-Raphson steps from a given starting point, and evaluate composite Simpson’s and trapezoidal rules from a data table without hesitation. The formulas must be memorized and practiced until they are automatic.
After the root-finding and integration formulas, focus on Euler’s method and the fourth-order Runge-Kutta method for initial value problems. The board exam tests your ability to carry out one or two steps of these algorithms by hand given f(t, y), an initial condition, and a step size. For Euler’s method, the formula is simple but the concept of accumulated error and stability is important. For the classical Runge-Kutta method, memorize the four slope evaluations k₁ through k₄ and the weighted average formula. Interpolation is also testable; Newton’s forward difference formula and Lagrange interpolation are the two forms you should know how to apply.
Finally, connect the vocabulary of error analysis to the methods you know. Every board exam question on numerical methods either asks you to apply a method or asks you to identify a property such as the order of accuracy, the convergence rate, the type of error, or the condition under which a method is valid. The definitions in this glossary are the direct preparation for those identification questions. Review this glossary alongside working practice problems, and pay particular attention to the conditions and limitations of each method on when it converges, how fast, and what can cause it to fail. That combination of computational skill and conceptual clarity is exactly what the licensure examination rewards.
For practice problems on all these topics, head over to our Advanced Mathematics Problems and Solutions section here on PinoyBix. Hundreds of solved exam-type questions, complete with step-by-step solutions, organized by topic so you can drill exactly what you need to work on.
P inoyBIX educates thousands of reviewers and students a day in preparation for their board examinations. Also provides professionals with materials for their lectures and practice exams. Help me go forward with the same spirit.
“Will you subscribe today via YOUTUBE?”
TIRED OF ADS?
- Become Premium Member and experienced complete ads-free content browsing.
- Full Content Access to Premium Solutions Exclusive for Premium members
- Access to PINOYBIX FREEBIES folder
- Download Reviewers and Learning Materials Free
- Download Content: You can see download/print button at the bottom of each post.
PINOYBIX FREEBIES FOR PREMIUM MEMBERSHIP:
- CIVIL ENGINEERING REVIEWER
- CIVIL SERVICE EXAM REVIEWER
- CRIMINOLOGY REVIEWER
- ELECTRONICS ENGINEERING REVIEWER (ECE/ECT)
- ELECTRICAL ENGINEERING & RME REVIEWER
- FIRE OFFICER EXAMINATION REVIEWER
- LET REVIEWER
- MASTER PLUMBER REVIEWER
- MECHANICAL ENGINEERING REVIEWER
- NAPOLCOM REVIEWER
- Additional upload reviewers and learning materials are also FREE
FOR A LIMITED TIME
If you subscribe for PREMIUM today!
You will receive an additional 1 month of Premium Membership FREE.
For Bronze Membership an additional 2 months of Premium Membership FREE.
For Silver Membership an additional 3 months of Premium Membership FREE.
For Gold Membership an additional 5 months of Premium Membership FREE.
Join the PinoyBIX community.

