Today's LLMs and deep learning systems rely on simplified, static neurons. They require immense amounts of data and computing power, remain extremely energy-intensive, and are prone to hallucinations.
The Solution â PNNs: By using Partial Differential Equations (PDEs), PNNs replace rigid weights with continuous dynamics. This drastically increases efficiency per neuron, reduces computational overhead, allows sparse/contextual execution, and is ready for quantum architectures.
Note: PNNs combine empirical deep learning with mathematical modeling for trustworthy next-generation AI.
New paths beyond the established giants
Today's dominant AI models come predominantly from the US and China. Systems like ChatGPT, Claude, Gemini, DeepSeek, Qwen, Kimi, and Hermes Agent represent the absolute global state of the art. This raises a fundamental question: Is it even possible for Europe â or a new company â to catch up, or has the train already left the station?
Will smaller companies ever be able to own their own AI infrastructure and train tailored models with minimal data? Will it continue to be necessary to consume such immense computing resources just to implement simple AI models? Can a bank or a company build its own "ChatGPT" strictly based on its own data â without gigawatts of energy or the entire internet as training material? It must be possible, and it will be possible.
What if a model existed that could not only replace but even outperform current AI architectures with a fraction of the data and drastically faster computational steps? The answer depends solely on whether we merely continue optimizing existing paradigms â or pioneer a fundamentally new mathematical approach.
High-precision risk modeling, automated fraud detection, and dynamic real-time market analysis.
Critical situational awareness, robust detection systems, and reliable decision support in complex scenarios.
Safe environmental perception, sensor data fusion, and mathematically sound control systems for highly automated vehicles.
Accelerating drug discovery, mathematical prediction of molecular dynamics, and precise data analysis.
Most AI models are based on neural networks that process historical data to generate predictions. They represent typical a posteriori models and rarely achieve a 100% accuracy rate.
Information processing occurs through hidden layers and an output layer. Within the neurons, weighted linear functions are computed, and their results are passed to the next layer via an activation function (e.g., Sigmoid).
Schematic structure of a neural network (3-3-2 architecture).
The classical mathematical process within a neuron:
In a complex world where almost nothing happens linearly: why do we limit ourselves to weighted linear transformations and rigid activation functions? We unify these concepts and postulate that computations within neurons should be described by non-linear partial differential equations (PDEs). The entire construct thus becomes a network of coupled partial differential equation systems.
If all input data were available and the underlying structure were fully understood, an ideal architecture of PDE-based neural networks could be constructed. Such a model would be an a priori model in the Kantian sense â its structure determined by fundamental principles rather than empirical trial and error. In this scenario, a SuperAI becomes conceivable, with predictions that perfectly capture the dynamics of the data.
Concerns that this approach is computationally too complex can be refuted: depending on the application domain, partial differential equations are mathematically exceptionally well-researched, allowing existing solution methods to be directly leveraged. If the non-linear case is reduced back to the special case of linearity, the PNN seamlessly transitions into a conventional neural network.
Description of a typical neural network as a system of partial differential equations (PDEs).
For demonstration purposes, we consider a simple network with two input nodes, two neurons in the hidden layer, and one output neuron:
Schematic structure of the neural network (2-2-1 architecture).
| Layer | Neuron | Net Input (\(z\)) | Activated Output (\(a\)) |
|---|---|---|---|
| Hidden Layer | \(h_1\) | \(z_1 = w_1 x_1 + w_2 x_2 + b_1\) | \(a_1 = \sigma(z_1)\) |
| \(h_2\) | \(z_2 = w_3 x_1 + w_4 x_2 + b_2\) | \(a_2 = \sigma(z_2)\) | |
| Output Layer | \(y_1\) | \(z_3 = w_5 a_1 + w_6 a_2 + b_3\) | \(\hat{y} = \sigma(z_3)\) |
These computations can be directly mapped to an equivalent system of partial differential equations. We consider three uncoupled PDE systems for the respective neurons:
By setting \(\mathbf{m}_1 = \begin{pmatrix} w_1 \\ w_2 \end{pmatrix}\) and the initial condition \(u_0 = b_1\), the exact solution corresponds to the function \(u(x_1, x_2) = w_1 x_1 + w_2 x_2 + b_1\). Thus, we replace the right-hand sides of the PDEs with the neural weights. Training the network is equivalent to solving these differential equations.
In biological brains, information processing is not instantaneous â thinking takes time. We explicitly introduce a time variable \(t\). With a non-trivial time dependency (\(\frac{\partial u}{\partial t} = c_0 \neq 0\)), the solution takes on a dynamic form:
System for \(u\) (Neuron \(h_1\))
$$\begin{cases} \frac{\partial \sigma}{\partial u} = \sigma(u)(1 - \sigma(u)) \\[1ex] \nabla u = \mathbf{m}_1, \quad u(0) = u_0 \\[1ex] \frac{\partial u}{\partial t} = c_0 \end{cases}$$System for \(v\) (Neuron \(h_2\))
$$\begin{cases} \frac{\partial \sigma}{\partial v} = \sigma(v)(1 - \sigma(v)) \\[1ex] \nabla v = \mathbf{m}_2, \quad v(0) = v_0 \\[1ex] \frac{\partial v}{\partial t} = c_1 \end{cases}$$By adjusting the parameters \(c_0\) and \(c_1\), the computational speed of individual neurons can be deliberately accelerated or slowed down. This enables the replication of real neurobiological signal propagation delays.
Analogous to the collapse of the wave function in quantum mechanics, the network state collapses to a clear result upon reaching a decision point. This result updates the initial and boundary conditions, requiring the system to be re-evaluated under new parameters.
System for \(u\) (Neuron \(h_1\))
$$\begin{cases} \frac{\partial \psi_1}{\partial u} = F(u, v, \psi_1(u)) \\[1ex] \nabla u = \mathbf{m}_1(u, v) + \alpha u v \\[1ex] u(0) = u_0(x_1, x_2) \\[1ex] \frac{\partial u}{\partial t} = c_0(t) + \gamma v^2 \end{cases}$$System for \(v\) (Neuron \(h_2\))
$$\begin{cases} \frac{\partial \psi_2}{\partial v} = G(u, v, \psi_2(v)) \\[1ex] \nabla v = \mathbf{m}_2(u, v) + \beta \sin(u) \\[1ex] v(0) = v_0(x_1, x_2) \\[1ex] \frac{\partial v}{\partial t} = c_1(t) + \delta u^2 \end{cases}$$By coupling via interaction parameters (\(\alpha, \beta, \gamma, \delta\)), biological dendrites and complex neuronal ensembles can be modeled realistically. Physical principles such as entropy solutions ensure the well-posedness of the mathematical system.
In neurobiology, it is well documented that neurons do not process incoming information instantaneously. Instead, they integrate incoming electrical signals into their membrane potential over time. Only when this membrane potential exceeds a critical threshold does the cell fire an action potential (spike). Consequently, the temporal dimension plays a decisive role: both the timing and arrival order of incoming signals directly influence neuronal activation.
Inspired by this biological mechanism, we can build not only time-dependent and coupled partial neural networks, but also incorporate explicit time delays (\(\tau\)). Embedding delays into partial differential equations â leading to partial delay differential equations (Delay PDEs) â is an established concept in mathematical modeling and frequently occurs in real biological and physical systems.
System for \(u\) (Neuron \(h_1\) with delay \(\tau\))
$$\begin{cases} \frac{\partial \sigma(u(t+\tau))}{\partial u} = \sigma(u)\bigl(1 - \sigma(u)\bigr) \\[1.5ex] \nabla u = \mathbf{m}_1 \\[1ex] u(0) = u_0 \\[1ex] \frac{\partial u}{\partial t} = c_0 \end{cases}$$System for \(v\) (Neuron \(h_2\))
$$\begin{cases} \frac{\partial \sigma(v)}{\partial v} = \sigma(v)\bigl(1 - \sigma(v)\bigr) \\[1.5ex] \nabla v = \mathbf{m}_2 \\[1ex] v(0) = v_0 \\[1ex] \frac{\partial v}{\partial t} = c_1 \end{cases}$$In this formulation, the parameter $\tau$ represents the characteristic time delay (lag). While $\tau$ can be derived analytically or fixed based on domain-specific PDE dynamics, it can also be treated as a continuous, learnable parameter.
At this point, we emphasize that the underlying partial differential equation for the activation function does not need to be fixed a priori. Instead, the network can dynamically adjust its activation behavior during optimization or learn an entirely new activation function over time to better describe the underlying system.
System for \(u\) (Neuron \(h_1\) with learnable mixing parameter \(\alpha\))
$$\begin{cases} \frac{\partial \sigma}{\partial u} = (1 - \alpha) \, \sigma(u)\bigl(1 - \sigma(u)\bigr) + \alpha \, \Theta(u) \\[1.5ex] \nabla u = \mathbf{m}_1 \\[1ex] u(0) = u_0(x) \\[1ex] \frac{\partial u}{\partial t} = c_0 \end{cases}$$In this setup, \(\alpha \in [0, 1]\) acts as a learnable interpolation parameter, and \(\Theta(u)\) represents the Heaviside step functionâwhose direct integration yields the Rectified Linear Unit (ReLU), since \(\int \Theta(u) \, du = \max(0, u) = \text{ReLU}(u)\). Through optimization, the network adaptively determines which activation characteristics are best suited for the system. Specifically, when \(\alpha = 0\), the activation derivative reduces strictly to the standard sigmoid formulation, whereas \(\alpha = 1\) shifts the dynamics to a ReLU-like response. During training, the framework can continuously refine or smoothly transition between these functional forms.
At this point, we would like to offer a few remarks regarding the fields of Neural Ordinary Differential Equations (Neural ODEs) and Physics-Informed Neural Networks (PINNs). In general, these frameworks do not address partial neural networks; however, certain Neural ODEs or PINNs can be viewed as special, degenerate cases within this broader theory. Partial Neural Networks represent a higher-order generalization of standard neural architectures.
We hypothesize that the entire system of neurons in a partial neural network can be represented abstractly as an operator semigroupâspecifically as a multi-parameter semigroup depending on multiple time variables, indexed by layer depth or introduced time intervals. To capture the complete state of the PNN, this semigroup must be evaluated at these specific time steps.
Formally, for independent time parameters \(t_1, t_2, \dots, t_n \ge 0\), the family of operators \(S(t_1, \dots, t_n)\) characterizes the global partial neural network by satisfying the semigroup property:
The development of this mathematically rigorous operator-theoretic foundation remains an active direction for future research at the intersection of partial differential equations and functional analysis.
A Partial Neural Network (PNN) is an integrated architecture defined as a global system of non-linear, coupled, and time-dependent partial differential equations (PDEs). By mapping individual neurons and layer transitions to specific PDE boundary value problems, the entire network processes spatial features and temporal dynamics simultaneously as a unified dynamical system to model complex, high-dimensional phenomena.
Let \(\Omega \subset \mathbb{R}^d\) be a spatial domain and \(T > 0\) the time horizon. We consider a network with \(L\) hidden layers, where layer \(l \in \{1, \dots, L\}\) contains exactly \(N_l\) neurons, represented by the state vector \(\mathbf{u}^{(l)}(x, t) = \bigl(u_1^{(l)}(x, t), \dots, u_{N_l}^{(l)}(x, t)\bigr)^T \in \mathbb{R}^{N_l}\).
We define a Partial Neural Network as a system of coupled, non-linear partial differential equations of arbitrary order \(k \in \mathbb{N}\). The general system for layer \(l\) reads:
Where:
To illustrate this architecture, consider a 2-layer network with \(N_1 = 2\) neurons (\(u_1, u_2\)) in the first hidden layer and \(N_2 = 1\) neuron (\(v_1\)) in the second hidden layer:
Layer 1 Neurons (\(u_1, u_2\))
$$\begin{cases} \frac{\partial u_1}{\partial t} + \Delta u_1 = \beta_1 m_1 + \alpha u_2 + c_1 + \gamma_1 u_2^2 \\[1.5ex] \nabla u_2 = \mathbf{m}_2 + (\alpha u_1, x_1 \cdot t^2) \\[1ex] u_1(0) = u_{10}, \quad u_2(0) = u_{20} \end{cases}$$Layer 2 Output Neuron (\(v_1\))
$$\begin{cases} \nabla v_1 = \mathbf{m}_3(u_1, u_2) + \kappa (u_1 + u_2) \\[1.5ex] \frac{\partial v_1}{\partial t} = c_3(t) + \delta \cdot (u_1 u_2) \\[1.5ex] v_1(0) = v_0 \end{cases}$$One should not be deterred by the analytical complexity or potential non-solvability of these highly non-linear PDE systems. In practice, expert knowledge, specialized analytical frameworks (such as weak solutions, viscosity solutions, and entropy formulations), and advanced numerical solvers (e.g., adaptive finite element methods or neural PDE discretizations) are available. These established mathematical tools allow us to effectively handle, analyze, and rapidly solve such complex systems in practice.
Furthermore, we wish to emphasize that it is common practice in mathematics and physics to derive governing equations directly in differential form from physical laws or conservation principles. For instance, a partial neural network can express system dynamics within a neuron compactly using differential notation:
The primary advantage of this differential formulation lies in its direct compatibility with fields such as financial modeling or quantitative stock market analysis. In these domains, stochastic processes and differential representationsâsuch as the Black-Scholes model (\(dS_t = \mu S_t \, dt + \sigma S_t \, dW_t\))âare firmly established. Utilizing this notation makes underlying structural relationships as well as domain-specific physical or economic assumptions immediately transparent and interpretable.
This differential formulation must be specifically identified or derived by the AI researcher for the target application. Selecting appropriate governing equations ensures that the model not only describes the dataset with maximum precisionâor, ideally, complete predictive accuracyâoutperforming baseline models, but also generates highly reliable forecasts. It is worth noting that not every single neuron requires a unique governing equation; rather, certain fundamental principles and PDEs can describe overall dynamics across entire groups or layers of neurons.
A primary objective of our research initiative is to bridge domain boundaries by bringing together scientists from various disciplines to identify and formulate suitable PDEs for different applications. We have already initiated this process with the launch of a specialized model tailored to financial market modeling and stock price trajectories. Although this work remains an active field of ongoing researchârequiring additional integrations, such as the conceptual inclusion of a domain-specific DNA modelâit represents a defining direction for our broader research framework.
Depending on the specific problem being modeled or investigated, the partial differential equations governing individual neurons can become highly complex and analytically intractable. To avoid getting stuck searching for closed-form analytical solutionsâand to prevent solving equations from becoming a standalone field of studyâone can leverage numerical methods. Discretizing the PDEs in both space and time transforms continuous differential operators into finite approximations.
This numerical discretization offers a distinct advantage: much like enforcing explicit time intervals, one can define discrete computational steps. The number of numerical stepsârepresenting the allocated execution time for a given neuronâcan then be introduced directly as a trainable parameter (weight) within the system, further enhancing predictive accuracy.
It is worth noting that fundamental derivatives, as introduced in earlier works, can also be formulated using curved differentials. Rather than viewing the derivative of a differentiable function \(f\) purely through the classical secant slope formula,
one can consider curved derivatives, such as:
Such fundamental reformulations enable energy-consistent discretizations. As a side note, the author refers to this class of curved differentials as the Infinitesimal Fundamentum, which aims to generalize the classical calculus of Newton and Leibniz.
One of the initial implementations of a partial neural network within financial modeling is the so-called DNA model, developed to characterize and ultimately predict stock price trajectories. Without delving into low-level implementation details, we outline the foundational concept here to demonstrate a direct application of the PNN framework.
The neural network is structured to model the psychology of a hypothetical Master Playerâan overarching entity whose aggregated decisions ultimately drive market prices. Within this network, sub-regions are assigned to represent buyer and seller dynamics, which dictate price movements based on their relative activity levels. For example, when an asset price reaches a high threshold, activation within the seller subgroup rises due to emerging loss aversion, causing the network to output a sell signal.
Because the underlying partial differential equations do not necessarily operate on standard real-valued states, state transitions are expressed using qualitative descriptorsâin this case, structured as symbolic DNA elements. This results in a qualitative partial neural network that operates over discrete symbolic sequences. Regardless of the internal topological design, the network ultimately computes a probability distribution over emerging DNA elements, which govern future price trends.
Similar to the wave function in the Schrödinger equationâwhere particle positions are determined by probability densities rather than deterministic pointsâthe system provides probabilistic estimates. Nevertheless, the empirical results are compelling: in a preliminary project, this framework achieved an accuracy rate of over 80%, demonstrating substantial potential for applications in portfolio and investment management.
From black-box learning to physically, biologically, and economically grounded architectural paradigms.
The transition from conventional neural networks to Partial Neural Networks (PNNs) represents a fundamental paradigm shift. However, fully realizing the potential of this framework requires building a multidisciplinary research community: we need experts from physics, quantitative finance, computational neuroscience, and engineering to formulate domain-specific partial differential equations (PDEs) that govern neural dynamics within their respective fields.
Rather than treating deep learning as a domain-agnostic black box, PNNs directly embed domain-specific laws into the network architecture. Each neuronâor layer of neuronsâis driven by its own specialized dynamics and adaptable activation mechanisms. Although this increases mathematical complexity, it is precisely this structural depth that enables superior interpretability, physical consistency, and high predictive accuracy.
To illustrate how PNNs can be applied across industries, the following tables summarize key governing equations and highlight their role as functional building blocks for specialized neurons.
| Domain / Application | Governing Model | Role in PNNs |
|---|---|---|
|
Computational Neuroscience Medical imaging & activation |
Hodgkin-Huxley Model
$$C_m \frac{\partial V}{\partial t} = I - \bar{g}_{\text{Na}} m^3 h (V - V_{\text{Na}}) - \bar{g}_K n^4 (V - V_K) - g_L (V - V_L)$$
|
Describes membrane potential ($V$) and ion channel dynamics. Diagnoses pathologies directly from biological signals. |
|
Cognitive Science Decision-making under uncertainty |
Busemeyer-Townsend DFT
$$\frac{\partial P}{\partial t} = -\frac{\partial}{\partial P}\left[ \mu(P, t) P \right] + \frac{1}{2} \frac{\partial^2}{\partial P^2}\left[ \sigma^2(P, t) P \right]$$
|
Fokker-Planck formulation modeling probability density ($P$). Embeds human preference dynamics. |
|
Psychology / Learning Reinforcement & conditioning |
Rescorla-Wagner Model
$$\Delta V = \alpha \beta (\lambda - V_{\text{total}})$$
|
Governs associative learning dynamics; provides biologically plausible update rules for PNN weights. |
|
Neural Field Theory Cortical tissue modeling |
Amari Neural Field Model
$$\tau \frac{\partial u(x,t)}{\partial t} = -u(x,t) + \int_{\Omega} w(x,y) f(u(y,t)) \, dy + S(x,t)$$
|
Spatiotemporal state ($u(x,t)$) over cortical tissue ($\Omega$). Provides non-local coupling dynamics for continuous hidden layers. |
| Domain / Application | Governing Model | Role in PNNs |
|---|---|---|
|
Quantitative Finance Option pricing & market dynamics |
Black-Scholes PDE
$$\frac{\partial V}{\partial t} + \frac{1}{2}\sigma^2 S^2 \frac{\partial^2 V}{\partial S^2} + r S \frac{\partial V}{\partial S} - rV = 0$$
|
Models option values ($V$) over price ($S$) and time ($t$). Processes continuous drift and volatility dynamics. |
|
Defense & Ballistics Trajectory tracking & navigation |
Kinematics / Navier-Stokes
$$m \frac{\partial^2 \mathbf{r}}{\partial t^2} = \mathbf{F}_{\text{thrust}} + \mathbf{F}_{\text{drag}}(\nabla \mathbf{u}, \rho) + m\mathbf{g}$$
|
Encodes conservation laws and drag for physically bounded trajectory tracking. |
|
Quantum Dynamics Wave mechanics & computing |
Schrödinger PDE
$$i\hbar \frac{\partial \psi(x,t)}{\partial t} = -\frac{\hbar^2}{2m} \nabla^2 \psi(x,t) + V(x,t)\psi(x,t)$$
|
Governs complex-valued wavefunctions ($\psi$). Enables modeling of phase coupling and quantum state probabilities. |
Standard CNNs treat medical scans as static pixel grids. A medical PNN instead embeds physiological transport PDEs (e.g., fluid dynamics or Hodgkin-Huxley action potentials). By simulating fluid, heat, or signal propagation through biological tissue, early disease detection aligned with physical laws is dramatically improved.
In trajectory tracking and autonomous navigation, neural states must strictly obey physical reality. Neurons modeling target trajectories are governed by Newtonian equations of motion and drag PDEs, ensuring predictions remain physically bounded even under noisy or adversarial conditions.
Beyond traditional time-series models, financial PNNs integrate stochastic differential equations (e.g., Black-Scholes or Heston volatility models). By capturing continuous market sentiment and stochastic jumps, PNNs offer superior risk management and enhanced price forecasting.
In summary, developing partial neural networks requires embracing mathematical rigor. By pairing real-world problems with their true underlying partial differential equations, we unlock a new horizonâseamlessly merging machine learning with the fundamental laws of applied sciences.
Concepts from quantum mechanics lay the groundwork for integrating PNNs with quantum computing architectures. By leveraging phenomena like superposition and quantum entanglement, quantum hardware can process high-dimensional PDE solvers and solve complex differential equations in parallel within a single computational step.
Core PNN processesâsuch as non-local coupling between neurons, parallel dynamics, and time-delay mechanismsâmap natively onto quantum hardware. Executing PNN dynamics directly on quantum systems leads to an immense computational speedup, drastically reducing the time required to train and evaluate complex networks.
Current Large Language Models (LLMs) are computationally intensive and require massive datasets. With PNNs, significantly less data is needed to accurately describe a problem. Reduced computational overhead leads directly to energy savings, while learnable activation functions improve precision and help mitigate hallucinations in LLMs.
Although introducing PNNs might seem to add parameters and overhead, in practice, the opposite is true: superior mathematical modeling enables lower error rates, allowing the network to converge to optimal weights faster with minimal data.
Furthermore, modeling coupled neurons allows the system to compute only the necessary subnetworks for a given problemâavoiding full network passes, much like hierarchical planning. When exposed to new inputs, structural PDE solutions adapt dynamically, yielding higher accuracy and paving the way for efficient next-generation quantum-LLM architectures.
Research & Scientific Papers
Here you will find an overview of our scientific papers, monographs, textbooks, and research findings.
Author: BuÄra Kabil
Research Concept.
Author: BuÄra Kabil
Series: Handel- und Lebensstrategien (Volume 1), Amazon Kindle Digital Edition.
Author: BuÄra Kabil
Fundamental Research on Differential Calculus.
Author: BuÄra Kabil
Book chapter in: Theory, Numerics and Applications of Hyperbolic Problems II, Springer International Publishing.
Author: BuÄra Kabil
Ph.D. Thesis, Hartung-Gorre Verlag Konstanz, 148 pages.
Authors: BuÄra Kabil, Christian Rohde
Mathematical Methods in the Applied Sciences, Vol. 39, Issue 18, pp. 5409â5426.
Author: BuÄra Kabil
PAMM (Proceedings in Applied Mathematics and Mechanics), Vol. 16, Issue 1, pp. 657â658.
Authors: BuÄra Kabil, L. Miguel Rodrigues
Journal of Differential Equations, Vol. 260, Issue 3, pp. 2994â3028.
Authors: BuÄra Kabil, Christian Rohde
Nonlinear Analysis: Theory, Methods & Applications, Vol. 107, pp. 60â83.
Author: BuÄra Kabil
University of Konstanz Repository (KOPS), Department of Mathematics and Statistics.