---
title: Galerkin Approximations in PDE Analysis
url: https://www.emergentmind.com/topics/galerkin-approximations
type: topic
---

# Galerkin Approximations in PDE Analysis

Galerkin approximations are fundamental methods for the discretization and numerical analysis of partial differential equations (PDEs) and evolution problems. They are based on expanding the exact infinite-dimensional solution in a finite-dimensional subspace, projecting the governing equation onto that subspace via a variational (weak) formulation. The approach achieves systematic convergence as the approximation space is enriched and is compatible with both classical finite element and spectral methods, as well as their time-discretization and hybridizations. Recent research extends the framework to guarantee higher temporal regularity, lower algebraic complexity, and enables efficient post-processing for accuracy enhancement. This article provides a detailed exposition of the mathematical foundation, discrete realization, regularity mechanisms, error theory, post-processing strategies, and representative computational results of Galerkin (and Galerkin–collocation) approximations, especially for hyperbolic and wave propagation problems [1908.08238].

## 1. Mathematical Formulation and Discretization

Consider the prototypical second-order wave equation on a spatial domain $\Omega\subset\mathbb{R}^d$ ($d=2,3$), for $t\in[0,T]$,
\[
\partial_{tt} u - \Delta u = f \quad\text{in } \Omega\times(0,T], \qquad u|_{\partial\Omega} = 0, \quad u(\cdot,0) = u_0,\; \partial_t u(\cdot,0)=u_1.
\]
The Galerkin approximation first reformulates the problem in evolution-variational form:
\[
\partial_t U + A U = F, \quad U(0)=(u_0,\,u_1), \qquad
A = \begin{pmatrix}0 & -I \\ -\Delta & 0\end{pmatrix}.
\]
where $U = (u^0, u^1)^T = (u,\ \partial_t u)^T$, $H = L^2(\Omega)$, $V = H^1_0(\Omega)$. The finite element space $V_h\subset H^1_0(\Omega)$ has degree $r$ and mesh size $h$.

**Time discretization:** The time interval $[0,T]$ is partitioned into subintervals $I_n = (t_{n-1}, t_n]$. On each $I_n$, the trial space is $P_k(I_n;V_h) = $ $V_h$-valued polynomials of degree $\leq k$. Globally, define:
- **Continuous in time:** $X_k(V_h) = \{ v\in C([0,T];V_h) : v|_{I_n}\in P_k(I_n;V_h) \}$,
- **Test space:** $Y_{k-1}(V_h) = \{ w : w|_{I_n} \in P_{k-1}(I_n;V_h)\}$.

**Standard Galerkin method ("cGP($k$)")**: Seek $U_{\tau,h} \in X_k(V_h)^2$ with $U_{\tau,h}(0) = U_{0,h}$ such that, for all $V\in Y_{k-1}(V_h)^2$,
\[
\int_0^T [\langle \partial_t U_{\tau,h}, V \rangle + \langle A U_{\tau,h}, V \rangle ]\,dt = \int_0^T (F, V)\,dt.
\]

**Galerkin–collocation approach (cGP–C$^1$($k$)):**
- Reduce the test space to $P_{k-3}(I_n;V_h)$ and impose endpoint collocation:
  - Enforce both the residual at the endpoints and variational identity in interior points using a Hermite-type quadrature.
- The scheme enforces $U_{\tau,h} \in C^1([0,T]; V_h^2)$.

## 2. Connection to Collocation and Quadrature

A distinctive feature of the Galerkin–collocation approach is its direct link between high-order variational discretizations and classical collocation:
- **Hermite quadrature (Q$_H$):** Uses values (and derivatives) at interval endpoints plus function values at $k-2$ interior points determined by Jacobi polynomials; exact on polynomials of degree $2k-3$.
- **Gauss–Lobatto quadrature (Q$_{GL}$):** Uses $k$ points including endpoints; also exact on degree $2k-3$ polynomials.

**Equivalence:** On each interval, the resulting method is equivalent to collocation at the Gauss–Lobatto nodes, with Hermite interpolation of $F$. The time-continuity and collocation constraints produce discrete solutions that are continuously differentiable (or twice differentiable in the $C^2$ variant) in time.

## 3. Construction of Regularity: $C^1$ and $C^2$ Discrete Solutions

**$C^1$-continuity:** The Hermite quadrature in the test formulation encodes both function and derivative matching at time nodes. Because the trial space is $C^0$ and both the endpoint collocation and Hermite quadrature enforce matching of $\partial_t U_{\tau,h}$ at the nodes, the discrete solution is $C^1$ in time.

**$C^2$-continuity ("cGP–C$^2$($k$)")**: By imposing both first and second time derivatives of the residual to vanish at interval endpoints and using higher-degree Hermite-type quadrature, one constructs discrete solutions $U_{\tau,h} \in C^2([0,T]; V_h^2)$.

## 4. Error Estimates and Convergence Rates

Assuming sufficient regularity, $u \in C^{k+1}([0,T]; H^{r+1}(\Omega)),\ f\in C^{k-1}([0,T];H)$, the Galerkin–collocation scheme achieves the following error bounds:
\[
\begin{aligned}
\|u(t) - u_{\tau,h}(t)\|_{L^2} + \|\partial_t u(t)-\partial_t u_{\tau,h}(t)\|_{L^2}
&\leq C\,(h^{r+1} + \tau^{k+1}), \\
\|\nabla(u(t) - u_{\tau,h}(t))\|_{L^2} + \|u(t) - u_{\tau,h}(t)\|_{L^2}
&\leq C\,(h^r + \tau^{k+1}),
\end{aligned}
\]
uniformly for $t\in[0,T]$. The error splits into interpolation and discrete contributions, with discrete stability (energy estimates) guaranteed for the quadrature-induced bilinear forms. Both $L^\infty$ in time and $L^2(0,T)$-integrated norms satisfy these asymptotic rates [1908.08238].

## 5. Post-Processing for Higher Accuracy ($C^2$-Lifting)

An efficient lifting procedure can post-process the $C^1$ time-continuous solution $U_{\tau,h}$ into a $C^2$ solution of higher temporal accuracy:
- Construct piecewise Hermite-basis polynomials $O_n(t)$ of degree $k+1$ vanishing at endpoints except for derivative constraints.
- For each subinterval, define $K_n \in V_h^2$ to match the second-derivative residual, and set
  \[
  \widetilde{U}_{\tau,h}(t) = U_{\tau,h}(t) - K_n O_n(t),\quad t\in I_n.
  \]
- This $\widetilde{U}_{\tau,h}$ solves the $C^2$ (cGP–C$^2$($k+1$)) scheme, attaining one additional order in temporal accuracy for negligible additional cost.

## 6. Computational Results and Applications

Numerical experiments confirm the theoretical convergence rates for both $C^1$ and post-processed $C^2$ schemes. For instance:
- On the unit square, $k=3, r=3$, the $C^1$ scheme attains $O(h^4 + \tau^4)$ in $L^\infty$-in-time energy norms, matching theoretical predictions.
- With $k=4, r=5$, after post-processing (lifting), $O(\tau^6)$ convergence in $L^2$ and energy norms is observed, demonstrating the effectiveness of the post-processing step.

The framework is particularly attractive for wave propagation and coupled multiphysics problems requiring high temporal regularity, such as fluid-structure interaction or poroelasticity [1908.08238].

## 7. Summary and Significance

Galerkin (and Galerkin–collocation) approximation schemes provide a rigorous variational foundation for high-order discretizations of PDEs, enabling optimal convergence rates, stability, and energy-conserving properties. The collocation-inspired approach reduces computational complexity, achieving collocation efficiency with Galerkin accuracy. Regularity and accuracy can be systematically enhanced via quadrature and post-processing techniques. The resulting schemes are robust and highly accurate for complex, temporally regular problems in scientific computing and engineering [1908.08238].

Source: https://www.emergentmind.com/topics/galerkin-approximations