math concept
23 topics use this
Math concept
Numerical Methods
Core equation
$$y_{n+1} = y_n + h\,f(t_n, y_n)$$
Numerical methods approximate solutions to mathematical problems that have no closed form. ODE solvers, quadrature, linear algebra algorithms, and root-finding are its pillars — essential anywhere continuous mathematics meets a computer.
ODE solvers
Euler’s method (first order): $y_{n+1} = y_n + hf(t_n, y_n)$, error $O(h)$
Runge–Kutta 4 (RK4): computes four slope estimates per step, error $O(h^4)$:
\[y_{n+1} = y_n + \tfrac{h}{6}(k_1 + 2k_2 + 2k_3 + k_4)\]Numerical linear algebra
- LU decomposition: $A = LU$ — solves $Ax = b$ in $O(n^3)$
- Conjugate gradient: iterative solver for symmetric positive-definite systems — $O(n\sqrt{\kappa})$
- QR algorithm: computes eigenvalues iteratively
Numerical integration (quadrature)
Trapezoidal rule: $\int_a^b f\,dx \approx \tfrac{h}{2}[f(a) + 2\sum_{i=1}^{n-1}f(x_i) + f(b)]$, error $O(h^2)$
Gaussian quadrature: $n$ optimally chosen points achieve $O(h^{2n})$ accuracy.
Fields that use this concept
Finance & economics
Actuarial science
Claims Reserving
Actuarial methods for estimating the amount an insurer must set aside to pay claims that have been incurred but not yet fully settled.
Loss Models
Mathematical models for insurance claim frequency and severity, culminating in aggregate loss distributions used for pricing, reserving, and capital modeling.
Physical sciences
Astrophysics
Dark Matter
The non-luminous mass component comprising roughly 27% of the universe's energy budget, inferred from gravitational effects.
Gravitational Waves
Ripples in spacetime curvature propagating at the speed of light, produced by accelerating asymmetric mass distributions.
Nucleosynthesis
The nuclear processes that forge every element from hydrogen to uranium inside stars, supernovae, and the Big Bang.
Stellar Evolution
The life cycle of stars from gravitational collapse through nuclear burning phases to their final compact remnants.
Stellar Structure Equations
The four coupled differential equations governing the interior structure of stars in hydrostatic equilibrium.
Earth sciences
Climate modeling
General Circulation Models
Full three-dimensional models of Earth's climate system based on the primitive equations of atmospheric and oceanic fluid dynamics.
Numerical Weather Prediction
Mathematical foundations of operational weather forecasting, from the primitive equations and data assimilation to ensemble prediction and probabilistic skill metrics.
Physical sciences
Computational chemistry
Molecular Dynamics
Classical simulation of atomic motion by integrating Newton's equations with empirical force fields.
Molecular Mechanics
Classical force field models that treat atoms as point masses connected by springs to simulate large biomolecular systems.
Finance & economics
Econometrics
Earth sciences
Geophysics
Electrical Methods
Resistivity surveys and IP measurements map subsurface conductivity by injecting current and measuring potential differences.
Geodesy
Reference ellipsoids, geoid undulations, GPS trilateration, and InSAR measure Earth's shape, gravity field, and crustal deformation.
Gravity Methods
Bouguer anomalies and gravitational potential inversion reveal subsurface density contrasts.
Seismic Tomography
Ray-path integrals and least-squares inversion map 3D velocity structure inside the Earth.
Earth sciences
Meteorology
Mesoscale Convection
The organisation of thunderstorms into mesoscale convective systems driven by CAPE, wind shear, and cold pool dynamics.
Numerical Weather Prediction
How finite-difference and spectral methods solve the atmospheric PDEs that drive operational weather forecasts.
Weather Radar
How radar equations, reflectivity, Doppler velocity, and dual-polarisation moments are used to observe precipitation and storms.
Item Response Theory
Probabilistic models linking latent trait levels to item response probabilities via item characteristic curves.
Latent Class Analysis
A model-based clustering technique that identifies unobserved subgroups from patterns of categorical observed indicators.
Test Equating
Statistical procedures that place scores from different test forms onto a common scale so they can be used interchangeably.
Engineering & CS
Signal processing