Pith. sign in

REVIEW 1 major objections 6 minor 69 references

Discovering Polynomial and Quadratic Structure in Nonlinear Ordinary Differential Equations

T0 review · 1 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash

Pith's one-line read Most nonlinear ODE models can be recast as quadratic systems by adding new variables, this chapter argues.

desk verdict Solid survey, not a research paper: the central existence theorems hold up, but Example 4 has a real chain-rule error that needs fixing before this is citable as a reference. read the letter →

arxiv 2502.10005 v1 pith:HJDTHKJ2 submitted 2025-02-14 cs.SC cs.NAmath.DSmath.NAq-bio.MN

classification cs.SCcs.NAmath.DSmath.NAq-bio.MN MSC 34-0234C2068W30
keywords polynomializationquadratizationliftingtransformationsnonlinearODEsdifferentially-algebraicfunctionsmonomialsymboliccomputationchemicalreactionnetworks
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This chapter argues that polynomialization and quadratization—adding auxiliary variables so that an ODE system's right-hand side becomes polynomial, then quadratic—are broadly available and practically useful transformations for nonlinear models. The paper's central existence results state that any system whose right-hand side is made of differentially-algebraic functions (functions that satisfy an algebraic differential equation, such as exponentials, sines, and logarithms) can be polynomialized, and that every polynomial system admits a monomial quadratization whose order is bounded by a product of one plus the per-variable degrees. On the algorithmic side, the paper reviews two software tools that can discover these representations automatically, with the caveat that current polynomialization tools offer no optimality guarantee. If these claims hold, many difficult nonlinear models become accessible to the standard quadratic-system toolbox used in simulation, model reduction, reachability analysis, and chemical-reaction-network computing.

What carries the argument

The central objects are the lifting transformation and the differential-algebraicity condition. A polynomialization is a map $x \mapsto [x, w(x)]$ with $w$ a vector of new functions chosen so that the augmented system has polynomial right-hand sides; a quadratization is the same idea with degree at most two, and in the monomial case the new entries are monomials. The machine that makes existence work is the class of differentially-algebraic functions, which is closed under arithmetic and composition; Theorem 1's proof is constructive, and for quadratization the construction is explicit: take the finite set $M$ of all monomials $x_1^{e_1}\cdots x_n^{e_n}$ with $0 \le e_i \le d_i$, and the derivative of any $m \in M$ is quadratic in $M$. Algorithmically, the search is carried out by either SAT-solving over this large monomial set or tree search over candidate variable sets.

What would settle it

Find or construct a polynomial ODE system in $n$ variables whose optimal monomial quadratization requires a number of new variables that grows faster than any polynomial in $n$; the paper notes that Conjecture 1 says such systems exist, so exhibiting one with a certified exponential lower bound would show that low-order quadratization cannot be expected for all polynomial systems.

Watch

Extended reading notes

Core claim

On the paper's own terms, the core discovery is a pair of existence theorems with practical reach. Theorem 1 says that if the functions $f(x)$ are analytic and differentially-algebraic with respect to $x$ on a domain $D$, then system $\dot{x}=f(x)$ has a polynomialization: there are new variables $w(x)$ and polynomials $q_1,q_2$ such that trajectories of the original system are mapped to trajectories of the polynomial system $\dot{x}=q_1(x,w)$, $\dot{w}=q_2(x,w)$. Theorem 2 says that every polynomial ODE system $\dot{x}=p(x)$ has a monomial quadratization, with an optimal monomial quadratization of order at most $\prod_{i=1}^n(d_i+1)$, where $d_i$ is the degree of $p$ with respect to $x_i$; the proof takes all monomials with exponents bounded by $d_i$ as new variables. Together these theorems turn 'look for hidden polynomial or quadratic structure' from an art into a search problem with existence guarantees, and the chapter documents that these guarantees are already implemented in practice for a useful class of elementary functions.

Load-bearing premise

The load-bearing premise is that the system's right-hand side is smooth and differentially-algebraic on the domain of interest; if a model contains a non-differentially-algebraic or non-smooth term, such as a piecewise or data-defined function, the existence of a polynomialization and the software guarantees do not apply.

Editorial extensions

If this is right

  • Every polynomial ODE has a monomial quadratization of finite order, so the question of whether a degree reduction is possible is settled; the remaining question is how small the order can be.
  • Polynomialization turns models built from exponentials, sines, logarithms, and compositions of them into polynomial systems, opening them to standard quadratic-system analysis.
  • Quadratized systems can be interpreted as chemical reaction networks with bimolecular reactions, which is a step toward analog and Turing-complete chemical computing.
  • A non-autonomous polynomial ODE with differentiable inputs admits a monomial quadratization; if the input is not differentiable, an input-free quadratization may fail, so differentiability is a real boundary.
  • For applications like a sigmoid perceptron and the MAPK cell-signaling model, automatic quadratization produces compact systems and even reveals closed subsystems that are not obvious from the original equations.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • A straightforward extension would be to let users of polynomialization software supply a special function by its defining differential equation, such as the Bessel function $J_\alpha$; the paper points to this idea but does not implement it.
  • If optimal quadratization is NP-hard in general, then in practice one should expect a trade-off between expressive new-variable languages (Laurent monomials, arbitrary polynomials) and tractability; the paper notes these can reduce dimension but no general algorithm exploits them.
  • For data-driven model reduction, the existence of low-order quadratizations suggests that learned latent coordinates might be constrained to monomial or polynomial functions rather than free-form neural-network coordinates; that connection is implicit but not developed.
  • The same lifting idea could be applied to partial differential equations, but the chapter only cites preliminary ODE-based results; a testable next step is to quadratize spatially discretized PDEs and compare the resulting reduced-order models with direct discretization.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

1 major / 6 minor

Summary. This chapter surveys the theory and algorithms for converting finite-dimensional ODE systems into polynomial or quadratic form by adjoining new variables. It defines polynomialization and quadratization, states existence results for differentially-algebraic right-hand sides and for polynomial systems, proves a bound for monomial quadratization (Theorem 2), describes the BioCham and QBee software, and illustrates the methods on a sigmoid perceptron model and a MAPK signaling model. The chapter closes with a list of open problems.

Significance. The central existence guarantees are useful and, as far as the surveyed derivations go, sound. The self-contained proof of Theorem 2 is elementary and correct, and most examples verify their constructions explicitly. The chapter is valuable in bringing together results from symbolic computation, control, and systems biology and in pointing to concrete software implementations. The reduction of a sigmoid perceptron model to a two-dimensional quadratic system is a particularly effective demonstration. However, the Bessel-function example contains a mathematical error that must be corrected before the chapter can serve as a reliable reference, and the MAPK claim would benefit from a reproducible output.

major comments (1)
  1. [Section 2.3, Example 4] The displayed polynomial system in Example 4 is not a polynomialization of dot x = J_alpha(x) in the sense of Definition 1. If the new variables are w1 = 1/x, w2 = J_alpha(x), w3 = J'_alpha(x), then along solutions the correct derivatives are dot w1 = -w1^2 w2, dot w2 = w2 w3, and dot w3 = (-w1 w3 + (alpha w1^2 - 1)w2) w2, because each derivative must carry the chain-rule factor dot x = w2. The system printed in the manuscript (with dot w1 = -w1^2, dot w2 = w3, dot w3 = -w1 w3 + (alpha w1^2 - 1)w2) is instead valid for an auxiliary variable t satisfying dot t = 1, after conflating the state x with the independent variable of Bessel's equation. Please correct the example; the intended point survives, since the corrected system is still polynomial.
minor comments (6)
  1. [Section 1.4] The symbol for the nonnegative integers is printed as "Z/greaterorequalslant0"; this is a corrupted encoding of \mathbb{Z}_{\ge 0} and should be fixed.
  2. [Section 2.2, Definition 2] The sentence "there exists and integer h" should read "there exists an integer h", and it may be worth specifying that h is nonnegative.
  3. [Section 3.2, Theorem 4] The bound written as "\Pi^{n+r}_{i=1}(d_i+1)" should be typeset as a product over i from 1 to n+r, and the definition of d_{n+i} should clarify that these are the degrees in the input variables u_i.
  4. [Section 4.1] The reconstruction formula x = -1/a ln(w4/w1^2) - b/a assumes a is nonzero and that the logarithm argument is positive; these assumptions should be stated explicitly.
  5. [Section 4.2] The 15-variable quadratization of the MAPK model is reported without the resulting quadratic system, so the computation cannot be checked from the chapter; please include the full system in an appendix or provide the QBee output and version in the text.
  6. [Section 5] The phrase "These/emdash.cyrpossibly incomplete/emdash.cyrresearch questions" appears to be a corrupted encoding of "These—possibly incomplete—research questions" and should be corrected.

Circularity Check

0 steps flagged · score 0.0 of 10

No load-bearing circularity; core theorems are external or self-contained, and the only defect is a localized chain-rule slip in Example 4.

full rationale

The paper is a survey, not a derivation that consumes its own conclusion. Theorem 2 is proved in full in Section 3.2: the monomial set M is constructed from the stated degrees d_i, every monomial of p(x) lies in M, and the derivative of each m in M is a quadratic polynomial in elements of M, so the quadratization is genuinely built from the input system. Theorem 1 is attributed to Hernández-Bermejo and Fairén [33], an external source, and it is not a restatement of Definition 2 by construction: the definition only asserts differential-algebraicity of f, while the theorem supplies a finite set of new variables whose time derivatives are polynomial, which is a substantive classical result. The other cited existence results, including Theorem 4 from the authors' own prior work, are presented as literature results with attribution, not derived circularly from the present chapter, and they do not fit any parameter to data or rename an input as a prediction. The only concrete defect found is in Example 4, where the derivatives of w2 and w3 omit the chain-rule factor x-dot; this is a localized editing slip that does not affect the main existence theorems or the proof of Theorem 2. Overall, no step in the claimed derivation chain reduces to its own inputs, so the circularity score is 0.

Assumptions & free parameters 0 free parameters · 4 assumptions · 0 invented entities

The survey's central claims rest on standard results about differentially-algebraic functions and on polynomial and quadratization existence theorems, on domain assumptions about differentiable inputs and analytic right-hand sides, and on trust in the publicly cited software implementations. No new physical or mathematical entities are introduced beyond the lifting variables w, which are standard auxiliary functions. The chapter introduces no fitted free parameters; all constants in examples are symbolic model parameters.

assumptions (4)
  • domain assumption The right-hand sides f considered for polynomialization are analytic and differentially-algebraic with respect to each state variable on a domain D.
    Invoked in Definition 2 and Theorem 1 (Section 2.2). The survey's claim that 'the majority' of nonpolynomial systems can be polynomialized relies on the identification of real-world models with the class of differentially-algebraic functions. This excludes, for example, non-analytic or piecewise-defined systems that lack polynomial differential equations.
  • domain assumption Input signals u(t) in non-autonomous quadratization are differentiable (or satisfy the conditions of [13, Proposition 3.7] for input-free quadratization).
    Theorem 4 (Section 3.2) guarantees a monomial quadratization only under differentiability of inputs; Example 6 shows an input-free quadratization fails without this condition.
  • standard math Ostrowski's Proposition 1: sums, products, quotients, and compositions of differentially-algebraic functions are differentially-algebraic.
    Used in Section 2.2 to demonstrate that expressions built from exp, log, trig, etc. are differentially-algebraic, which underpins Theorem 1. The result is cited from [59] and accepted without proof in the chapter.
  • domain assumption The software tools QBee and BioCham correctly implement the surveyed polynomialization and quadratization algorithms and produce the outputs claimed in Sections 4.1 and 4.2.
    The chapter's application examples rely on 'computation with QBee shows...' and 'Both BioCham and QBee find...'. No code or output files are provided, so the reader must trust the referenced implementations, with the caveat that Example 3 demonstrates they are not optimal.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Discovering Polynomial and Quadratic Structure in Nonlinear Ordinary Differential Equations." pith.science (2026). https://pith.science/paper/HJDTHKJ2

@misc{pith2026250210005,
  author       = {Pith},
  title        = {Pith review of: Discovering Polynomial and Quadratic Structure in Nonlinear Ordinary Differential Equations},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/HJDTHKJ2}},
  note         = {Machine review of arXiv:2502.10005}
}
read the original abstract

Dynamical systems with quadratic or polynomial drift exhibit complex dynamics, yet compared to nonlinear systems in general form, are often easier to analyze, simulate, control, and learn. Results going back over a century have shown that the majority of nonpolynomial nonlinear systems can be recast in polynomial form, and their degree can be reduced further to quadratic. This process of polynomialization/quadratization reveals new variables (in most cases, additional variables have to be added to achieve this) in which the system dynamics adhere to that specific form, which leads us to discover new structures of a model. This chapter summarizes the state of the art for the discovery of polynomial and quadratic representations of finite-dimensional dynamical systems. We review known existence results, discuss the two prevalent algorithms for automating the discovery process, and give examples in form of a single-layer neural network and a phenomenological model of cell signaling.

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

69 extracted references · 65 canonical work pages

  1. [1]

    Biocham4: Biochemical Abstract Machine (2021), http://contraintes.inria.fr/biocham/

  2. [2]

    non-m onomial

    Alauddin, F.: Quadratization of ODEs: Monomial vs. non-m onomial. Undergradu- ate Research Online (SIURO) 14 (2021). https://doi.org/10.1137/20s1360578

  3. [3]

    Sbornik: Mathematics 23(1), 12–23 (1902), http://mi.mathnet.ru/sm6683

    Appelroth, G.G.: Основная форма системы алгебраических ъ дифференцiальныхъ уравненiй (General form of a system of al ge- braic differential equations). Sbornik: Mathematics 23(1), 12–23 (1902), http://mi.mathnet.ru/sm6683

  4. [4]

    IEEE Transa ctions on Automatic Control 53(10), 2237–2251 (2008)

    Astrid, P., Weiland, S., Willcox, K., Backx, T.: Missing p oint estimation in models described by proper orthogonal decomposition. IEEE Transa ctions on Automatic Control 53(10), 2237–2251 (2008)

  5. [5]

    Journal of Computational Physics 321, 224–241 (2016)

    Balajewicz, M., Tezaur, I., Dowell, E.: Minimal subspace rotation on the Stiefel manifold for stabilization and enhancement of projection- based reduced order mod- els for the compressible Navier–Stokes equations. Journal of Computational Physics 321, 224–241 (2016)

  6. [6]

    Comptes Rendus Mathematique 339(9), 667–672 (2004)

    Barrault, M., Maday, Y., Nguyen, N.C., Patera, A.T.: An em pirical interpolation method: Application to efficient reduced-basis discretizat ion of partial differential equations. Comptes Rendus Mathematique 339(9), 667–672 (2004)

  7. [7]

    International Journal of No n-Linear Mechanics 167, 104894 (Dec 2024), http://dx.doi.org/10.1016/j.ijnonlinmec.2024.104894

    Bayer, F., Leine, R.I., Thomas, O., Grolet, A.: Koopman–H ill stability computation of periodic orbits in polynomial dynamical systems using a r eal-valued quadratic harmonic balance formulation. International Journal of No n-Linear Mechanics 167, 104894 (Dec 2024), http://dx.doi.org/10.1016/j.ijnonlinmec.2024.104894

  8. [8]

    SIAM Journal on Matri x Analysis and Appli- cations 39(2), 983–1032 (2018)

    Benner, P., Goyal, P., Gugercin, S.: H2-quasi-optimal mo del order reduction for quadratic-bilinear control systems. SIAM Journal on Matri x Analysis and Appli- cations 39(2), 983–1032 (2018)

Show all 69 references
  1. [9]

    SIAM Journal on Scientific Computing 37(2), B239–B260 (2015)

    Benner, P., Breiten, T.: Two-sided projection methods fo r nonlinear model order reduction. SIAM Journal on Scientific Computing 37(2), B239–B260 (2015)

  2. [10]

    Journal of Computational Physics 228(2), 516–538 (2009)

    Bergmann, M., Bruneau, C., Iollo, A.: Enablers for robus t POD models. Journal of Computational Physics 228(2), 516–538 (2009)

  3. [11]

    : Polynomial differential equations compute all real computable functions on computa ble compact intervals

    Bournez, O., Campagnolo, M.L., Gra¸ ca, D.S., Hainry, E. : Polynomial differential equations compute all real computable functions on computa ble compact intervals. Journal of Complexity 23(3), 317–335 (2007)

  4. [12]

    Philosophical Transactions of the Royal Society A: Mathema tical, Physical and Engineering Sciences 376(2124), 20170384 (Jun 2018), http://dx.doi.org/10.1098/rsta.2017.0384

    Brenig, L.: Reducing nonlinear dynamical systems to can onical forms. Philosophical Transactions of the Royal Society A: Mathema tical, Physical and Engineering Sciences 376(2124), 20170384 (Jun 2018), http://dx.doi.org/10.1098/rsta.2017.0384

  5. [13]

    SIAM Journal on Applied Dynamical Systems 23(1), 982–1016 (2024)

    Bychkov, A., Issan, O., Pogudin, G., Kramer, B.: Exact an d optimal quadratization of nonlinear finite-dimensional non-auton omous dynamical sys- tems. SIAM Journal on Applied Dynamical Systems 23(1), 982–1016 (2024). https://doi.org/10.1137/23M1561129

  6. [14]

    In: Flocchini, P., Moura, L

    Bychkov, A., Pogudin, G.: Optimal monomial quadratizat ion for ODE systems. In: Flocchini, P., Moura, L. (eds.) Combinatorial Algo- rithms. pp. 122–136. Springer International Publishing, C ham (2021), https://doi.org/10.1007/978-3-030-79987-8_9 16 B. Kramer and G. Pogudin

  7. [15]

    Bychkov, A., Pogudin, G.: QBee (2021), https://github.com/AndreyBychkov/QBee

  8. [16]

    In: Finkbeiner, B., Kov´ acs, L

    Cai, Y., Pogudin, G.: Dissipative quadratizations of po lynomial ODE systems. In: Finkbeiner, B., Kov´ acs, L. (eds.) Tools and Algorithms for the Construction and Analysis of Systems. pp. 323–342. Springer Nature Switzerl and, Cham (2024)

  9. [17]

    Journal of Computational Physics 242, 623– 647 (2013)

    Carlberg, K., Farhat, C., Cortial, J., Amsallem, D.: The GNAT method for nonlin- ear model reduction: Effective implementation and applicat ion to computational fluid dynamics and turbulent flows. Journal of Computational Physics 242, 623– 647 (2013)

  10. [18]

    Electron

    Carothers, D.C., Parker, G.E., Sochacki, J.S., Warne, P .G.: Some properties of solutions to polynomial systems of differential equations. Electron. J. Diff. Eqns. 2005(40), 1–17 (2005)

  11. [19]

    SIAM Journal on Control and Optimization 53(1), 235–261 (2015)

    Carravetta, F.: Global exact quadratization of continu ous-time nonlinear control systems. SIAM Journal on Control and Optimization 53(1), 235–261 (2015)

  12. [20]

    Journal of Differential Equ ations 269(12), 11328– 11365 (2020)

    Carravetta, F.: On the solution calculation of nonlinea r ordinary differential equa- tions via exact quadratization. Journal of Differential Equ ations 269(12), 11328– 11365 (2020)

  13. [21]

    SIAM Journal on Scientific Computing 32(5), 2737–2764 (2010)

    Chaturantabut, S., Sorensen, D.: Nonlinear model reduc tion via discrete empirical interpolation. SIAM Journal on Scientific Computing 32(5), 2737–2764 (2010)

  14. [22]

    Quar- terly of Applied Mathematics 9(3), 225–236 (1951)

    Cole, J.D.: On a quasi-linear parabolic equation occurr ing in aerodynamics. Quar- terly of Applied Mathematics 9(3), 225–236 (1951)

  15. [23]

    In: Computational Methods in Systems Biology: 15 th International Con- ference, CMSB 2017, Darmstadt, Germany, September 27–29, 2 017, Proceedings

    Fages, F., Le Guludec, G., Bournez, O., Pouly, A.: Strong Turing completeness of continuous chemical reaction networks and compilation o f mixed analog-digital programs. In: Computational Methods in Systems Biology: 15 th International Con- ference, CMSB 2017, Darmstadt, Germa...

  16. [24]

    pp. 108–127. Springer (2017)

  17. [25]

    In: Lecture Notes in Computer Science, pp

    Forets, M., Schilling, C.: Reachability of weakly nonli near systems using Carleman linearization. In: Lecture Notes in Computer Science, pp. 8 5–99. Springer Interna- tional Publishing (2021), https://doi.org/10.1007/978-3-030-89716-1_6

  18. [26]

    Numerical Linear Algebra with Applicati ons 25(6), e2200 (2018)

    Gosea, I.V., Antoulas, A.C.: Data-driven model order re duction of quadratic- bilinear systems. Numerical Linear Algebra with Applicati ons 25(6), e2200 (2018)

  19. [27]

    IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems 30(9), 1307–1320 (2011)

    Gu, C.: QLMOR: A projection-based nonlinear model order reduction approach using quadratic-linear representation of nonlinear syste ms. IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems 30(9), 1307–1320 (2011)

  20. [28]

    Inter- national Journal for numerical methods in Engineering 119(4), 261–280 (2019)

    Guillot, L., Cochelin, B., Vergez, C.: A generic and effici ent Taylor series–based continuation method using a quadratic recast of smooth nonl inear systems. Inter- national Journal for numerical methods in Engineering 119(4), 261–280 (2019)

  21. [29]

    Journal of C omputational Physics 445, 110631 (2021)

    Halpern, F.D., Sfiligoi, I., Kostuk, M., Stefan, R., Walt z, R.E.: Simulations of plasmas and fluids using anti-symmetric models. Journal of C omputational Physics 445, 110631 (2021)

  22. [30]

    on Dirichlet series and algebraic differential equations

    Hansen, E.C., Stone, Y., Wolfson, J.: Alexander Ostrows ki’s "on Dirichlet series and algebraic differential equations" (2022), https://arxiv.org/abs/2211.02088

  23. [31]

    Computer Methods in Applied Mechanics and Engineering 369, 113171 (2020)

    Ha ßler, S., Ranno, A.M., Behr, M.: Finite-element formulation for advection– reaction equations with change of variable and discontinui ty capturing. Computer Methods in Applied Mechanics and Engineering 369, 113171 (2020)

  24. [32]

    In: Abate, A., Petrov, T., Wo lf, V

    Hemery, M., Fages, F., Soliman, S.: On the complexity of q uadratization for poly- nomial differential equations. In: Abate, A., Petrov, T., Wo lf, V. (eds.) Computa- tional Methods in Systems Biology. pp. 120–140. Springer In ternational Publishing, Cham (2020) Discovering Pol...

  25. [33]

    In: Cinquemani, E., Paulev´ e, L

    Hemery, M., Fages, F., Soliman, S.: Compiling elementar y mathematical functions into finite chemical reaction networks via a polynomializat ion algorithm for ODEs. In: Cinquemani, E., Paulev´ e, L. (eds.) Computational Methods in Systems Biology. pp. 74–90. Springer Internatio...

  26. [34]

    Physics Letters A 206(1–2), 31–37 (Oct 1995), http://dx.doi.org/10.1016/0375-9601(95)00623-B

    Hern´ andez-Bermejo, B., Fair´ en, V.: Nonpolynomial ve ctor fields under the Lotka-Volterra normal form. Physics Letters A 206(1–2), 31–37 (Oct 1995), http://dx.doi.org/10.1016/0375-9601(95)00623-B

  27. [35]

    Mathematical Biosciences 140(1), 1–32 (Feb 1997), http://dx.doi.org/10.1016/S0025-5564(96)00131-9

    Hern´ andez-Bermejo, B., Fair´ en, V.: Lotka-Volterra r epresentation of gen- eral nonlinear systems. Mathematical Biosciences 140(1), 1–32 (Feb 1997), http://dx.doi.org/10.1016/S0025-5564(96)00131-9

  28. [36]

    Communications on Pure and Applied Mathematics 3(3), 201–230 (1950)

    Hopf, E.: The partial differential equation ut + uux = µ xx. Communications on Pure and Applied Mathematics 3(3), 201–230 (1950)

  29. [37]

    In: 2018 AIAA Aerospac e Sciences Meeting

    Huang, C., Xu, J., Duraisamy, K., Merkle, C.: Exploratio n of reduced-order models for rocket combustion applications. In: 2018 AIAA Aerospac e Sciences Meeting. p. 1183 (2018)

  30. [38]

    Foundations of Computational Mathematics 13(4), 479–516 (2013), http://dx.doi.org/10.1007/s10208-013-9165-9

    Hubert, E., Labahn, G.: Scaling invariants and symmetry reduction of dynami- cal systems. Foundations of Computational Mathematics 13(4), 479–516 (2013), http://dx.doi.org/10.1007/s10208-013-9165-9

  31. [39]

    symmetric forms of the compressi ble Euler and Navier- Stokes equations and the second law of thermodynamics

    Hughes, T.J., Franca, L., Mallet, M.: A new finite element formulation for compu- tational fluid dynamics: I. symmetric forms of the compressi ble Euler and Navier- Stokes equations and the second law of thermodynamics. Comp uter Methods in Applied Mechanics and Engineering 54(2...

  32. [40]

    I n: AIAA Propulsion and Energy Forum (August 2021)

    Jain, P., McQuarrie, S.A., Kramer, B.: Performance comp arison of data-driven reduced models for a single-injector combustion process. I n: AIAA Propulsion and Energy Forum (August 2021). https://doi.org/10.2514/6.2021-3633

  33. [41]

    Jakubczyk, B., Respondek, W.: On linearization of contr ol systems. Bull. Acad. Polonaise Sci. Ser. Sci. Math 28, 517–522 (1980)

  34. [42]

    In: 6th AIAA Theoretical Fluid Mech anics Conference

    Kalashnikova, I., Barone, M.: Stable and efficient Galerk in reduced order models for non-linear fluid flow. In: 6th AIAA Theoretical Fluid Mech anics Conference. p. 3110 (2011)

  35. [43]

    Journal of Mathematical Physics 22(7), 1366–1371 (1981)

    Kerner, E.H.: Universal formats for nonlinear ordinary differential systems. Journal of Mathematical Physics 22(7), 1366–1371 (1981)

  36. [44]

    Prentice-Hall , Upper Saddle River, NJ (2002)

    Khalil, H.K.: Nonlinear Systems; 3rd ed. Prentice-Hall , Upper Saddle River, NJ (2002)

  37. [45]

    Computer Methods in Applied Mechanics and Engineering 389, 114296 (2022)

    Khodabakhshi, P., Willcox, K.E.: Non-intrusive data-d riven model reduction for differential–algebraic equations derived from lifting tra nsformations. Computer Methods in Applied Mechanics and Engineering 389, 114296 (2022)

  38. [46]

    Journal of Differential Equations 117(1), 67–126 (Mar 1995), http://dx.doi.org/10.1006/jdeq.1995.1049

    Kinyon, M., Sagle, A.: Quadratic dynamical systems and a lge- bras. Journal of Differential Equations 117(1), 67–126 (Mar 1995), http://dx.doi.org/10.1006/jdeq.1995.1049

  39. [47]

    AIAA Journal 57(6), 2297–2307 (2019)

    Kramer, B., Willcox, K.: Nonlinear model order reductio n via lifting transfor- mations and proper orthogonal decomposition. AIAA Journal 57(6), 2297–2307 (2019). https://doi.org/10.2514/1.J057791

  40. [48]

    In: Beattie, C., Benner, P., Embree, M., Gugercin, S., Lefteriu, S

    Kramer, B., Willcox, K.: Balanced truncation model redu ction for lifted nonlinear systems. In: Beattie, C., Benner, P., Embree, M., Gugercin, S., Lefteriu, S. (eds.) Realization and Model Reduction of Dynamical Systems: A Fes tschrift in Honor of the 70th Birthday of Thanos A...

  41. [49]

    SIAM Journal on Applied Dynamical Systems 20(2), 981–996 (2021)

    Kramer, B.: Stability domains for quadratic-bilinear r educed-order mod- els. SIAM Journal on Applied Dynamical Systems 20(2), 981–996 (2021). https://doi.org/10.1137/20M1364849 18 B. Kramer and G. Pogudin

  42. [50]

    Sbornik: Mathematics 27(4), 420–423 (1911), http://mi.mathnet.ru/sm6583

    Lagutinskii, M.N.: Къ вопросу о прост ѣйшей форм ѣ системы обыкновенныхъ дифференцiальныхъ уравненiй (On the simplest form for syst ems of or- dinary differential equations). Sbornik: Mathematics 27(4), 420–423 (1911), http://mi.mathnet.ru/sm6583

  43. [51]

    PLOS Computational Biol ogy 18(10), e1010651 (Oct 2022), http://dx.doi.org/10.1371/journal.pcbi.1010651

    Linden, N.J., Kramer, B., Rangamani, P.: Bayesian param eter estimation for dy- namical models in systems biology. PLOS Computational Biol ogy 18(10), e1010651 (Oct 2022), http://dx.doi.org/10.1371/journal.pcbi.1010651

  44. [52]

    In: International Symposium o n Formal Methods

    Liu, J., Zhan, N., Zhao, H., Zou, L.: Abstraction of eleme ntary hybrid systems by variable transformation. In: International Symposium o n Formal Methods. pp. 360–377. Springer (2015)

  45. [53]

    Mathem atical Programming 10(1), 147–175 (1976)

    McCormick, G.P.: Computability of global solutions to f actorable nonconvex programs: Part I–convex underestimating problems. Mathem atical Programming 10(1), 147–175 (1976)

  46. [54]

    Journal of the Royal Society of New Zealand 51(2), 194–211 (2021)

    McQuarrie, S.A., Huang, C., Willcox, K.E.: Data-driven reduced-order models via regularised operator inference for a single-injector comb ustion process. Journal of the Royal Society of New Zealand 51(2), 194–211 (2021)

  47. [55]

    Computer methods in applied mechanics and engineering 200(33-36), 2562–2576 (2011)

    Nam, J., Behr, M., Pasquali, M.: Space-time least-squar es finite element method for convection-reaction system with transformed variable s. Computer methods in applied mechanics and engineering 200(33-36), 2562–2576 (2011)

  48. [56]

    In: 2021 American Control Conference ( ACC)

    Netto, M., Susuki, Y., Krishnan, V., Zhang, Y.: On analyt ical construction of ob- servable functions in extended dynamic mode decomposition for nonlinear estima- tion and prediction. In: 2021 American Control Conference ( ACC). pp. 4190–4195. IEEE (2021)

  49. [57]

    N.: DYVIPAC: an integrated analysis and visualisation framework to prob e multi- dimensional biological networks

    Nguyen, L.K., Degasperi, A., Cotter, P., Kholodenko, B. N.: DYVIPAC: an integrated analysis and visualisation framework to prob e multi- dimensional biological networks. Scientific Reports 5(1) (Jul 2015), http://dx.doi.org/10.1038/srep12569

  50. [58]

    Internati onal Journal for Numerical Methods in Engineering 73(4), 521–543 (2008)

    Nguyen, N., Patera, A., Peraire, J.: A best points interp olation method for effi- cient approximation of parametrized functions. Internati onal Journal for Numerical Methods in Engineering 73(4), 521–543 (2008)

  51. [59]

    In: Proceedings of the 40th IEEE Conference on Deci sion and Control

    Ohtsuka, T.: Quadratic-in-the-state representation o f nonlinear systems via im- mersion. In: Proceedings of the 40th IEEE Conference on Deci sion and Control. vol. 4, pp. 3258–3263. IEEE (2001)

  52. [60]

    Mathematische Zeitschrift 8(3–4), 241–298 (Sep 1920), http://dx.doi.org/10.1007/BF01206530

    Ostrowski, A.: ¨Uber Dirichletsche Reihen und algebraische Differen- tialgleichungen. Mathematische Zeitschrift 8(3–4), 241–298 (Sep 1920), http://dx.doi.org/10.1007/BF01206530

  53. [61]

    Physica D: Nonlinear Phenomena 406, 132401 (2020), https://doi.org/10.1016/j.physd.2020.132401

    Qian, E., Kramer, B., Peherstorfer, B., Willcox, K.: Lif t & learn: Physics-informed machine learning for large-scale nonlin ear dynami- cal systems. Physica D: Nonlinear Phenomena 406, 132401 (2020), https://doi.org/10.1016/j.physd.2020.132401

  54. [62]

    In: AIAA A viation an d Aeronautics Forum and Exposition

    Qian, E., Kramer, B., Marques, A., Willcox, K.: Transfor m & learn: A data-driven approach to nonlinear model reduction. In: AIAA A viation an d Aeronautics Forum and Exposition. Dallas, TX (June 2019). https://doi.org/10.2514/6.2019-3707

  55. [63]

    In: AIAA Scitech 2020 Forum

    Rezaian, E., Wei, M.: Impact of symmetrization on the rob ustness of POD-Galerkin ROMs for compressible flows. In: AIAA Scitech 2020 Forum. p. 1 318 (2020)

  56. [64]

    Journal of Fluid Mechanics 641, 115–127 (2009)

    Rowley, C.W., Mezi´ c, I., Bagheri, S., Schlatter, P., He nningson, D.S.: Spectral analysis of nonlinear flows. Journal of Fluid Mechanics 641, 115–127 (2009)

  57. [65]

    Mathematical Bioscie nces 87(1), 83–115 (1987) Discovering Polynomial and Quadratic Structure in Nonline ar ODEs 19

    Savageau, M.A., Voit, E.O.: Recasting nonlinear differe ntial equations as S- systems: a canonical nonlinear form. Mathematical Bioscie nces 87(1), 83–115 (1987) Discovering Polynomial and Quadratic Structure in Nonline ar ODEs 19

  58. [66]

    Computer Methods in Applied Mechanics and E ngineering 404, 115836 (2023)

    Sawant, N., Kramer, B., Peherstorfer, B.: Physics-info rmed regularization and structure preservation for learning stable reduced models from data with oper- ator inference. Computer Methods in Applied Mechanics and E ngineering 404, 115836 (2023)

  59. [67]

    Journal of Fluid Mechanics 656, 5–28 (2010)

    Schmid, P.J.: Dynamic mode decomposition of numerical a nd experimental data. Journal of Fluid Mechanics 656, 5–28 (2010)

  60. [68]

    AIA A Journal 58(6), 2658– 2672 (2020)

    Swischuk, R., Kramer, B., Huang, C., Willcox, K.: Learni ng physics-based reduced- order models for a single-injector combustion process. AIA A Journal 58(6), 2658– 2672 (2020). https://doi.org/10.2514/1.J058943

  61. [69]

    Journal of Nonlinear Science 25(6), 1307–1346 (2015)

    Williams, M.O., Kevrekidis, I.G., Rowley, C.W.: A data– driven approximation of the Koopman operator: Extending dynamic mode decomposit ion. Journal of Nonlinear Science 25(6), 1307–1346 (2015)

Pith tools

Reviewed August 7, 2026 · model on record in the stance chip above.