Mathematical Description and Numerical Algorithms for Nonlinear Equations

This section introduces the mathematical framework for numerically solving nonlinear problems and demonstrates the built-in support for such problems in NonlinearSolve.jl.


This content originally appeared on HackerNoon and was authored by Linearization Technology

Abstract and 1. Introduction

2. Mathematical Description and 2.1. Numerical Algorithms for Nonlinear Equations

2.2. Globalization Strategies

2.3. Sensitivity Analysis

2.4. Matrix Coloring & Sparse Automatic Differentiation

3. Special Capabilities

3.1. Composable Building Blocks

3.2. Smart PolyAlgortihm Defaults

3.3. Non-Allocating Static Algorithms inside GPU Kernels

3.4. Automatic Sparsity Exploitation

3.5. Generalized Jacobian-Free Nonlinear Solvers using Krylov Methods

4. Results and 4.1. Robustness on 23 Test Problems

4.2. Initializing the Doyle-Fuller-Newman (DFN) Battery Model

4.3. Large Ill-Conditioned Nonlinear Brusselator System

5. Conclusion and References

2. Mathematical Description

This section introduces the mathematical framework for numerically solving nonlinear problems and demonstrates the built-in support for such problems in NonlinearSolve.jl. A nonlinear problem is defined as:

\

\ where J𝑘 is the Jacobian of 𝑓 (𝑢, 𝜃) with respect to 𝑢, evaluated at 𝑢𝑘. This method exhibits rapid convergence [23, Theorem 11.2] when the initial guess is sufficiently close to a root. Furthermore, it requires only the function and its Jacobian, making it computationally efficient for many practical applications. Halley’s method enhances the Newton-Raphson method, leveraging information from the second total derivative of the function to achieve cubic convergence. It refines the initial guess 𝑢0 using:

\

\ Fig. 1: NonlinearSolve.jl allows seamless switching between different line search routines. Instead of nothing, we can specify HagerZhang(), BackTracking(), MoreTheunte(), StrongWolfe(), or LiFukushimaLineSearch() to opt-in to using line search. Line search enables NewtonRaphson to converge faster on the Generalized Rosenbrock Problem [Equation (2.12)], while it fails to converge without a line search.

\

\ This method provides higher convergence orders without reliance on higher-order derivatives. [25] summarizes other multi-step schemes that provide higher-order convergence using only first-order derivatives. These methods are local algorithms, and their convergence relies on having a good initial guess. We will discuss some techniques to facilitate the global convergence of these methods in the following section.

\

:::info This paper is available on arxiv under CC BY 4.0 DEED license.

:::


[5] For Halley’s method, we additionally assume twice-differentiability.

:::info Authors:

(1) AVIK PAL, CSAIL MIT, Cambridge, MA;

(2) FLEMMING HOLTORF;

(3) AXEL LARSSON;

(4) TORKEL LOMAN;

(5) UTKARSH;

(6) FRANK SCHÄFER;

(7) QINGYU QU;

(8) ALAN EDELMAN;

(9) CHRIS RACKAUCKAS, CSAIL MIT, Cambridge, MA.

:::

\


This content originally appeared on HackerNoon and was authored by Linearization Technology


Print Share Comment Cite Upload Translate Updates
APA

Linearization Technology | Sciencx (2025-03-25T01:38:42+00:00) Mathematical Description and Numerical Algorithms for Nonlinear Equations. Retrieved from https://www.scien.cx/2025/03/25/mathematical-description-and-numerical-algorithms-for-nonlinear-equations/

MLA
" » Mathematical Description and Numerical Algorithms for Nonlinear Equations." Linearization Technology | Sciencx - Tuesday March 25, 2025, https://www.scien.cx/2025/03/25/mathematical-description-and-numerical-algorithms-for-nonlinear-equations/
HARVARD
Linearization Technology | Sciencx Tuesday March 25, 2025 » Mathematical Description and Numerical Algorithms for Nonlinear Equations., viewed ,<https://www.scien.cx/2025/03/25/mathematical-description-and-numerical-algorithms-for-nonlinear-equations/>
VANCOUVER
Linearization Technology | Sciencx - » Mathematical Description and Numerical Algorithms for Nonlinear Equations. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2025/03/25/mathematical-description-and-numerical-algorithms-for-nonlinear-equations/
CHICAGO
" » Mathematical Description and Numerical Algorithms for Nonlinear Equations." Linearization Technology | Sciencx - Accessed . https://www.scien.cx/2025/03/25/mathematical-description-and-numerical-algorithms-for-nonlinear-equations/
IEEE
" » Mathematical Description and Numerical Algorithms for Nonlinear Equations." Linearization Technology | Sciencx [Online]. Available: https://www.scien.cx/2025/03/25/mathematical-description-and-numerical-algorithms-for-nonlinear-equations/. [Accessed: ]
rf:citation
» Mathematical Description and Numerical Algorithms for Nonlinear Equations | Linearization Technology | Sciencx | https://www.scien.cx/2025/03/25/mathematical-description-and-numerical-algorithms-for-nonlinear-equations/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.