---
title: Physics-Informed Linear Models (PILM)
url: https://www.emergentmind.com/topics/physics-informed-linear-model-pilm
type: topic
---

# Physics-Informed Linear Models (PILM)

Physics-Informed Linear Model (PILM) denotes a class of physics-informed machine learning methods in which the predictor is linear in coefficients, parameters, or feature-space coordinates, while physical prior knowledge is encoded through partial differential equations, ordinary differential equations, boundary or initial conditions, conservation laws, symmetry constraints, or physically constructed feature maps. In the narrow formulation explicitly titled “Physics-Informed Linear Model (PILM): Analytical Representations and Application to Crustal Strain Rate Estimation,” the unknown field is represented as a linear combination of fixed basis functions and estimated by minimizing quadratic residuals of data and physics, yielding an analytical least-squares solution [2507.12218]. In a broader functional-analytic formulation, physics-informed regularization over Sobolev spaces induces a reproducing kernel Hilbert space (RKHS), so the estimator becomes kernel ridge regression with a PDE-dependent kernel and remains linear in its finite coefficient vector [2402.07514].

## 1. Conceptual position within physics-informed machine learning

Physics-informed machine learning (PIML) is defined as a learning paradigm that leverages empirical data together with prior physical knowledge to improve performance on tasks involving physical mechanisms. A standard supervised formulation augments data misfit with a physics penalty or constraint,
\[
\min_{f \in \mathcal{H}_p}
\Big(
\mathcal{L}_{\text{data}}(f;\mathcal{D})
+
\lambda_{\text{phys}}\mathcal{L}_{\text{physics}}(f)
+
\Omega(f)
\Big),
\]
where the physical term may encode PDE or ODE residuals, boundary or initial conditions, conservation laws, or symmetry constraints [2211.08064].

Within that framework, a PILM is the specialization in which the hypothesis class is linear: either directly linear in parameters, as in
\[
f_\theta(x)=\theta^\top \phi(x),
\]
or linear in a function-space representation such as an RKHS expansion. The surveys do not use the exact term “Physics-Informed Linear Model,” but they describe the precise niche it occupies: a physics-informed supervised method with a linear hypothesis space and physics-based regularization or constraints, suitable for regression, interpolation, inverse problems, and control [2203.16797].

A related distinction is between penalty-based physics-informed learning and architecture-based physics augmentation. If a physical property is discriminative, meaning there exists an efficiently computable operator \(\hat{L}\) such that \(P(f)\) is true iff \(\hat{L}f=0\), then a PILM can enforce physics through a residual penalty. If the property is generative rather than discriminative, a plausible implication is that a pure residual-based PILM may be insufficient, and a decomposition into a physics-generated component and a residual component may be more natural [2109.13901].

## 2. Core mathematical formulations

In the analytical basis-expansion formulation, the unknown field is written as
\[
u(x;\mathbf{c})=\sum_{j=1}^M c_j\,\phi_j(x)=\boldsymbol{\Phi}(x)^T\mathbf{c},
\]
with fixed basis functions \(\phi_j\). For a linear PDE
\[
\mathcal{A}[u](x)=f(x), \qquad x\in\Omega,
\]
and boundary condition
\[
\mathcal{B}[u](x)=g(x), \qquad x\in\partial\Omega,
\]
all residuals are linear in \(\mathbf{c}\). The total quadratic loss can therefore be written as
\[
L(\mathbf{c})
=
(\mathbf{d}-H\mathbf{c})^T(\mathbf{d}-H\mathbf{c})
+
\mathbf{c}^T G\,\mathbf{c},
\]
where \(H\) collects linear observation, boundary, or initial-condition operators and \(G\) collects PDE or regularization contributions. The global minimizer satisfies
\[
(H^T H + G)\,\mathbf{c}^* = H^T \mathbf{d},
\qquad
\mathbf{c}^*=(H^T H+G)^{-1}H^T\mathbf{d},
\]
which is the characteristic closed-form PILM solution [2507.12218].

The same structure appears in the nonparametric regression formulation
\[
Y=f^\star(X)+\varepsilon,
\]
with \(f^\star \in H^s(\Omega)\), \(s>d/2\), and a known linear differential operator
\[
\mathscr{D}(f)=\sum_{|\alpha|\leqslant s} p_\alpha(x)\,\partial^\alpha f(x),
\]
encoding the physical prior \(\mathscr{D}(f^\star)\simeq 0\). The estimator minimizes
\[
R_n(f)=
\frac{1}{n}\sum_{i=1}^n |f(X_i)-Y_i|^2
+
\lambda_n \|f\|_{H^s_{\mathrm{per}([-2L,2L]^d)}}^2
+
\mu_n \|\mathscr{D}(f)\|_{L^2(\Omega)}^2,
\]
or equivalently
\[
J_n(f):=
\frac{1}{n}\sum_{i=1}^n (Y_i-f(X_i))^2
+
\lambda_n \|f\|_{H^s}^2
+
\mu_n \|\mathscr{D}(f)\|_{L^2(\Omega)}^2.
\]
Here the physical inconsistency of a candidate \(f\) is measured by \(\|\mathscr{D}(f)\|_{L^2(\Omega)}^2\), and \(\|\mathscr{D}(f^\star)\|_{L^2(\Omega)}\) plays the role of modeling error when the PDE is not exact [2402.07514].

These two presentations are mathematically consistent. In both, linearity of the operator \(\mathscr{D}\) or \(\mathcal{A}\) makes the physics term quadratic in the unknown coefficients. This is the defining algebraic property that distinguishes PILM from nonlinear PINN training.

## 3. RKHS, kernel, and operator-theoretic interpretation

For linear differential priors, the physics-informed regularizer defines an RKHS norm. There exists a positive, self-adjoint, compact operator
\[
\mathscr{O}_n : L^2([-2L,2L]^d)\to H^s_{\mathrm{per}([-2L,2L]^d)}
\]
such that
\[
\|\mathscr{O}_n^{-1/2} f\|_{L^2([-2L,2L]^d)}^2
=
\lambda_n \|f\|_{H^s_{\mathrm{per}([-2L,2L]^d)}}^2
+
\mu_n \|\mathscr{D}(f)\|_{L^2(\Omega)}^2.
\]
With the induced inner product, \(H^s_{\mathrm{per}([-2L,2L]^d)}\) becomes an RKHS whose kernel is
\[
K(x,y)=\sum_{m\in\mathbb{N}} a_m\,v_m(x)v_m(y),
\]
where \((a_m,v_m)\) are eigenpairs of \(\mathscr{O}_n\). The regularized empirical risk then becomes exactly kernel ridge regression in that RKHS [2402.07514].

The representer theorem yields the finite-dimensional form
\[
\hat f_n(\cdot)=\sum_{i=1}^n \alpha_i K(X_i,\cdot),
\]
so the estimator is linear in the coefficient vector \(\alpha\). In this sense, the PDE-informed kernel method is itself a Physics-Informed Linear Model: the basis functions are the kernel sections \(K(X_i,\cdot)\), and the physical law is encoded in the kernel rather than in an explicit neural architecture. The kernel admits a weak PDE characterization: for each fixed \(x\), \(K(x,\cdot)\) is the unique solution of a weak problem combining Sobolev and \(\mathscr{D}\)-terms, so the kernel itself is PDE-induced [2402.07514].

The dissertation “Physics-informed machine learning: A mathematical framework with applications to time series forecasting” extends the same viewpoint. It writes the physics-informed risk as
\[
\mathscr{R}_n(f)
=
\sum_{j=1}^n \|f(X_j)-Y_j\|_2^2
+
\lambda_n \|f\|_{H^s(\Omega)}^2
+
\mu_n\|\mathscr{D}(f)\|_{L^2(\Omega)}^2,
\]
and interprets the resulting estimator as kernel ridge regression with a physics-informed kernel. It also introduces the Physics-Informed Kernel Learner (PIKL), which approximates the exact kernel by low-frequency Fourier modes
\[
\phi_k(x)=(4L)^{-d/2} e^{\frac{i \pi}{2L}\langle k, x\rangle},
\qquad
f(x)=\sum_{\|k\|_\infty\le m} z_k \phi_k(x),
\]
thereby reducing the problem to finite-dimensional linear regression with quadratic regularization in the coefficients \(z_k\) [2507.08906].

## 4. Representative PILM constructions

A first major construction is the analytical basis-expansion PILM. The 2025 PILM paper uses fixed basis functions, especially cubic B-splines and tensor-product cubic B-splines, so that derivatives and integrals of residuals can be computed analytically rather than by automatic differentiation and collocation. It treats forward problems, inverse problems, underdetermined systems, and cases with uncertain boundary conditions. Illustrative examples include a damped oscillation ODE,
\[
m u_{tt} + c u_t + k u = 0,
\]
and a 1D diffusion PDE,
\[
\frac{\partial u}{\partial t} - k \frac{\partial^2 u}{\partial x^2}=0.
\]
In the geodetic application, horizontal velocity fields are expanded on a regular \(400\ \mathrm{km}\times 400\ \mathrm{km}\) grid with tensor-product cubic B-splines, using 529 basis functions per component and 1058 model parameters in total [2507.12218].

A second construction is the feature-space PILM. “Physics-informed features in supervised machine learning” uses a nonlinear feature map \(\phi\) built from dimensional analysis and known physical laws, followed by linear ridge regression,
\[
g(x)=\phi(x)^\top \beta, \qquad
\hat{\beta}=(\Phi^\top \Phi+\lambda I)^{-1}\Phi^\top Y.
\]
This preserves linearity in \(\beta\) while moving the physics into feature engineering. Examples include Bernoulli-inspired pressure features
\[
\phi(x)=\bigg(
p,\;
\rho v^2,\;
\rho g h,\;
\frac{pQ}{Av},\;
\frac{\mu v}{h},\;
\frac{\mu Q}{h A^2},\;
\frac{\rho A g}{h}
\bigg),
\]
binary-system binding-energy features,
\[
\text{PIF}_1=\frac{m_1 m_2}{m_1+m_2} v^2,
\qquad
\text{PIF}_2=-G\frac{m_1 m_2}{r},
\]
and solar-flare forecasting features such as \(\Phi I\). In the Bernoulli example, feature ranking isolates the physically relevant terms and de-standardized coefficients recover values close to \(1\), \(0.5\), and \(1\) for the pressure, dynamic-pressure, and hydrostatic terms [2504.17112].

A third construction arises in dynamical systems and control. There the PILM is a linear state-space model
\[
x_{k+1}=A_\theta x_k + B_\theta u_k,\qquad
y_k=C_\theta x_k + D_\theta u_k,
\]
whose matrices are learned from data while satisfying structure, conservation, stability, or invariance constraints. Physics enters through hard constraints, quadratic penalties, or matrix factorizations that bound singular values or spectral radii. This places PILM directly inside model predictive control, predictive safety filters, robust MPC, and digital-twin pipelines [2306.13867].

A closely related neighboring methodology is physics-informed neural modeling of linear PDEs. In dynamic linear elasticity, the governing equations remain those of linear continuum elasticity, with outputs including displacement and stress and losses enforcing momentum balance and Hooke’s law. That line does not present itself as a PILM in the strict basis-expansion sense, but it shows that once the governing operator is linear, physics-informed formulations with linear field equations admit the same residual structure and many of the same implementation choices [2312.15175].

## 5. Statistical behavior, regularization, and empirical findings

The kernel-theoretic analysis establishes that physics-informed linear regularization is not merely heuristic. Under suitable assumptions, the minimizer of the regularized risk converges at least at the Sobolev minimax rate. In particular, if
\[
\lambda_n = n^{-2s/(2s+d)} \log n,\qquad
\mu_n \le n^{-2s/(2s+d)},
\]
then
\[
\mathbb{E}\int_\Omega |\hat f_n - f^\star|^2\,d\mathbb{P}_X
=
\mathcal{O}_n\big( n^{-2s/(2s+d)} \log^3 n\big).
\]
More generally, the upper bound contains a bias term involving \(\mu_n \|\mathscr{D}(f^\star)\|_{L^2(\Omega)}^2\) and a variance term involving the effective dimension \(\mathscr{N}(\lambda_n,\mu_n)\). The explicit implication drawn in the paper is that faster rates than the Sobolev minimax rate can occur when the physical error is small and the PDE prior improves eigenvalue decay [2402.07514].

That speed-up is explicit in the one-dimensional example with \(d=1\), \(s=1\), \(\Omega=[-L,L]\), and \(\mathscr{D}=d/dx\). With
\[
\lambda_n = n^{-1}\log n,\qquad
\mu_n =
\begin{cases}
n^{-2/3}/\|\mathscr{D}(f^\star)\|_{L^2(\Omega)} & \text{if } \|\mathscr{D}(f^\star)\|_{L^2(\Omega)}\neq 0,\\
1/\log n & \text{if } \|\mathscr{D}(f^\star)\|_{L^2(\Omega)}=0,
\end{cases}
\]
the estimator obeys
\[
\mathbb{E}\int_{[-L,L]} |\hat f_n-f^\star|^2\,d\mathbb{P}_X
=
\|\mathscr{D}(f^\star)\|_{L^2(\Omega)}\;\mathcal{O}_n\big(n^{-2/3}\log^3 n\big)
+
\big(\|f^\star\|_{H^1(\Omega)}^2 + \sigma^2 + M^2\big)\mathcal{O}_n\big(n^{-1}\log^3 n\big).
\]
When \(\|\mathscr{D}(f^\star)\|_{L^2(\Omega)}=0\), the first term disappears and the rate becomes essentially parametric \(n^{-1}\) up to logarithmic factors. The numerical illustration reports slopes \(\approx -1.02\) for perfect modeling and \(\approx -0.77\) for imperfect modeling on log-log plots, matching the theoretical distinction between exact and approximate physics [2402.07514].

Feature-space PILMs also report empirical gains. For Bernoulli regression, the PIF-based model yields MAE \(0.067\) versus \(0.179\) and MSE \(0.017\) versus \(0.052\) at \(10\%\) noise. For binary-system classification, the SPIF model reports accuracy \(0.987\) versus \(0.960\), HSS \(0.744\) versus \(0.472\), and TSS \(0.926\) versus \(0.898\); for solar-flare forecasting, the reported comparison is accuracy \(0.865\) versus \(0.791\), TSS \(0.642\) versus \(0.590\), and HSS \(0.561\) versus \(0.430\) [2504.17112].

A central empirical caution emerges from crustal strain-rate estimation. In that application, mathematical regularization based on smoothness,
\[
L_{\text{math}}(\mathbf{a})
=
\int_\Omega
\left(
u_{xx}^2 + 2u_{xy}^2 + u_{yy}^2 + v_{xx}^2 + 2v_{xy}^2 + v_{yy}^2
\right)\,dx\,dy,
\]
outperforms physical regularization based on elastic equilibrium under the Bayesian marginal-likelihood criterion. The paper reports that mathematical regularization yields higher log marginal likelihood, smaller inferred noise standard deviation, and smaller data misfit; physical regularization produces blurred strain-rate features and artificially large strain rates at domain margins. This is a direct reminder that “physics-informed” does not automatically imply superior regularization if the chosen physical surrogate is misaligned with the inference target [2507.12218].

## 6. Scope, limitations, and open problems

The strongest current theoretical results require linear differential operators. In the kernel formulation, linearity of \(\mathscr{D}\) is crucial because it underpins weak PDE theory, the existence of the operator \(\mathscr{O}_n\), and the RKHS reduction. Nonlinear PDEs are not covered by that machinery. The analytical basis-expansion PILM has a parallel restriction: it is analytically solvable precisely because the model is linear in coefficients, the operators are linear, and the loss is quadratic [2402.07514].

The analytical PILM of 2025 is further limited to linear PDE or ODE systems with constant coefficients, low-dimensional rectangular domains, and fixed basis functions such as cubic B-splines. Its computational profile is governed by matrix construction and inversion, with building costs roughly \(O(M^2)\) and linear-system solution \(O(M^3)\). The paper also identifies a representation-capacity limitation: when the basis is too coarse, systematic approximation error remains even though the optimization is exact [2507.12218].

In the kernel setting, the framework allows any dimension \(d\) and Lipschitz domain in principle, but explicit kernel computation and eigenvalue bounds become hard in high dimension or on complex domains. The dissertation and the kernel paper therefore emphasize approximations such as low-frequency Fourier expansions and GPU-oriented linear algebra, together with open questions on numerical kernel construction, source conditions for \(s\le d/2\), and extensions to nonlinear PDEs [2507.08906].

A recurring misconception is that PILM is simply a small PINN. The literature suggests a sharper distinction. PILM is inherently a linear model in coefficients or feature-space coordinates; PINNs use nonlinear parameterizations even when the underlying PDE is linear. Another misconception is that all useful physical priors are naturally expressible as residual penalties. The discriminative-versus-generative distinction shows why that is not always the case: some properties admit an efficient operator \(\hat{L}\) and fit naturally into residual-based PILM, whereas others are more naturally enforced by structural decomposition into a physics-generated component and a residual component [2109.13901].

The main development directions already identified in the literature are numerical strategies to compute PDE-induced kernels, extension to nonlinear PDEs or polynomial operators, hybrid linear–nonlinear models in which a PILM backbone is augmented by a nonlinear residual, structured block-partitioned linear models for multi-physics systems, and Bayesian or Gaussian-process constructions whose covariance is itself physics-informed [2306.13867]. A plausible implication is that the enduring role of PILM will be as a mathematically transparent regime within PIML: one in which interpretability, convexity, closed-form estimation, and statistical analysis remain accessible without abandoning explicit physical structure.

Source: https://www.emergentmind.com/topics/physics-informed-linear-model-pilm