Mathematical & Computational Physics
60 terms · page 2 of 3
Gradient
Mathematical & Computational Physics
[Scalar Field Unit] / m
A vector operator that points in the direction of the greatest rate of increase of a scalar field, with magnitude equal to that maximum rate of change.
∇f = (∂f/∂x) î + (∂f/∂y) ĵ + (∂f/∂z) k̂
Gradient Descent
Mathematical & Computational Physics
Iterative Optimization Method
An iterative first-order optimization algorithm for finding local minima of a differentiable scalar objective function by taking steps proportional to the negative gradient.
x_(k+1) = x_k - α ∇f(x_k)
Green's Function
Mathematical & Computational Physics
Impulse Response Function
An impulse response function used to solve inhomogeneous linear differential equations subject to specified boundary conditions.
L G(x, x') = δ(x - x'), y(x) = ∫ G(x, x') f(x') dx'
Green's Theorem
Mathematical & Computational Physics
2D Vector Integral Theorem
A 2D vector calculus theorem relating a line integral around a simple closed curve C to a double area integral over the enclosed plane region D.
∮_C (L dx + M dy) = ∬_D ((∂M/∂x) - (∂L/∂y)) dx dy
Group Theory
Mathematical & Computational Physics
Symmetry Groups (SO(3), SU(2), SU(3))
The mathematical study of groups and algebraic symmetry structures.
Group Axioms: Closure, Associativity, Identity, Inverse
Hamiltonian Formalism
Mathematical & Computational Physics
Joules (Energy)
A formulation of classical mechanics describing system dynamics in 2N-dimensional phase space using position q_i and canonical momentum p_i.
H(q, p, t) = ∑ p_i q̇_i - L, q̇_i = ∂H / ∂p_i, ṗ_i = -∂H / ∂q_i
Hermite Polynomials
Mathematical & Computational Physics
Dimensionless Orthogonal Polynomials
A sequence of classical orthogonal polynomials satisfying Hermite's differential equation y'' - 2x y' + 2n y = 0.
H_n(x) = (-1)^n e^(x²) (d^n / dx^n) (e^(-x²))
Hessian Matrix
Mathematical & Computational Physics
Second Derivative Matrix
A square matrix of second-order partial derivatives of a scalar-valued function, describing local surface curvature and local extrema stability.
H_ij = ∂²f / (∂x_i ∂x_j)
Hilbert Space
Mathematical & Computational Physics
Complete Inner Product Space
A complete abstract vector space possessing an inner product that allows length and angle to be defined for infinite-dimensional function spaces.
⟨f, g⟩ = ∫ f*(x) g(x) dx, ||f|| = √(⟨f, f⟩)
Jacobian Matrix
Mathematical & Computational Physics
Coordinate Transformation Factor
A matrix of all first-order partial derivatives of a vector-valued multivariable function, representing local linear coordinate transformations.
J_ij = ∂f_i / ∂x_j, dV' = |det J| dV
Lagrangian Formalism
Mathematical & Computational Physics
Joules (Action S in J·s)
A formulation of classical mechanics where system dynamics are derived from a single scalar function, the Lagrangian L(q, q̇, t).
L = T - V (Kinetic Energy minus Potential Energy)
Laplace Transform
Mathematical & Computational Physics
s = σ + i ω (Complex Frequency Domain)
An integral transform that maps a real-valued time-domain function f(t) into a complex frequency-domain function F(s).
L{f(t)} = F(s) = ∫₀^(∞) f(t) e^(-s t) dt
Least Squares Data Fitting
Mathematical & Computational Physics
Statistical Regression Method
A standard mathematical regression technique for determining the best-fitting curve or line to a set of data points by minimizing the sum of squared residual deviations.
Minimizing S = ∑_(i=1)^(N) (y_i - f(x_i, β))²
Legendre Polynomials
Mathematical & Computational Physics
Dimensionless Orthogonal Polynomials
A sequence of orthogonal polynomials satisfying Legendre's differential equation (1-x²) y'' - 2x y' + n(n+1) y = 0.
P_n(x) = (1 / (2^n n!)) (d^n / dx^n) ((x² - 1)^n)
Linear Algebra
Mathematical & Computational Physics
Vector Spaces & Matrices
The mathematical discipline studying vector spaces, linear transformations, matrices, and systems of linear equations.
A x = b, v · w = ∑ v_i w_i
Machine Learning in Physics
Mathematical & Computational Physics
Computational AI Framework
The application of artificial intelligence, neural networks, and statistical learning models to solve complex physical equations and discover empirical patterns in experimental data.
Physics-Informed Neural Networks (PINN): Loss = L_data + λ L_physics
Matrix Mechanics
Mathematical & Computational Physics
Matrix Operator Algebra
An algebraic formulation of quantum mechanics created by Werner Heisenberg in 1925 expressing physical observables as infinite-dimensional matrices.
p̂ q̂ - q̂ p̂ = -i ℏ I, Ĥ = H(q̂, p̂)
Molecular Dynamics
Mathematical & Computational Physics
Atomic Trajectory Simulation
A computer simulation method for analyzing the physical movements of atoms and molecules by numerically integrating Newton's equations of motion.
m_i d²r_i/dt² = F_i = -∇_i V(r₁, r₂, ..., r_N)
Monte Carlo Method
Mathematical & Computational Physics
Stochastic Numerical Method
A class of computational algorithms that rely on repeated random sampling to obtain numerical solutions for complex physical systems.
I ≈ (1 / N) ∑_(i=1)^(N) f(X_i) (Central Limit Theorem)
Nonlinear Dynamics
Mathematical & Computational Physics
Phase Space Dynamics
The study of physical systems governed by non-linear equations where output changes are not directly proportional to input changes.
d x / dt = f(x) (where f is non-linear)
Numerical Linear Algebra
Mathematical & Computational Physics
Matrix Factorization Algorithms
The subfield of numerical analysis studying algorithms for performing matrix operations efficiently and accurately on digital computers.
LU: A = L U, QR: A = Q R, SVD: A = U Σ V^T
Numerical Stability
Mathematical & Computational Physics
Algorithm Stability Property
The property of a numerical algorithm ensuring that errors introduced during computation do not magnify uncontrollably over successive time steps.
Von Neumann Stability Analysis: |G(k, Δt)| ≤ 1
Parallel Computing
Mathematical & Computational Physics
Speedup Factor S(P)
A computational architecture where large physical calculations are divided into smaller sub-tasks executed simultaneously across multiple processor cores or GPUs.
Amdahl's Law Speedup S(P) = 1 / ((1 - p) + p / P)
Partial Differential Equations
Mathematical & Computational Physics
Multivariable Differential Equations
Differential equations containing unknown multivariable functions and their partial derivatives with respect to multiple independent variables.
Elliptic (Laplace), Parabolic (Heat), Hyperbolic (Wave)