Pith. sign in

REVIEW 3 major objections 4 minor 52 references

Scalable higher-order nonlinear solvers via higher-order automatic differentiation

T0 review · 3 major / 4 minor · reviewed 2026-08-10 · deepseek-v4-flash

Pith's one-line read Halley's method can be made as cheap per step as Newton's method by computing directional derivatives via Taylor-mode automatic differentiation, and it outperforms Newton on large dense and sparse nonlinear systems.

desk verdict Useful implementation results, but Eq. (4.1) is not the classical multivariate Halley update and the cubic convergence claim is unsupported. read the letter →

arxiv 2501.16895 v1 pith:MKKUZFEP submitted 2025-01-28 math.NA cs.NA

classification math.NAcs.NA MSC 65H1065H0565L04
keywords nonlinearsolversHalley'smethodHouseholder'sautomaticdifferentiationTaylor-modedirectionalderivativesstiffODEshigher-orderconvergence
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

The paper tries to show that higher-order nonlinear solvers are not intrinsically too expensive for large problems, provided the higher derivatives are computed as directional derivatives rather than full tensors. Its central case is Halley's method (cubic convergence): because Taylor-mode automatic differentiation computes the directional second derivative $D^2f(x)[a,a]$ at roughly twice the cost of evaluating $f$, and because the two linear solves in each Halley step can share one factorization of the Jacobian, each Halley step can be asymptotically as cheap as one Newton step. If true, this makes Halley's method a direct third-order competitor to Newton's method wherever direct factorization is available. The authors demonstrate the point on a dense radiative-transfer problem, a large sparse ill-conditioned reaction-diffusion problem, and inside implicit stiff ODE solvers, reporting speedups over Newton in each setting.

What carries the argument

The machinery is Taylor-mode automatic differentiation, which propagates a truncated Taylor series $(h_0,h_1,\ldots,h_p)$ through each elementary operation using Faà di Bruno's formula, so that the $p$-th directional derivative $D^pf(x)[v,\ldots,v]$ is obtained in $O(p)$ times the cost of evaluating $f$. In Algorithm 4.1 the bundle is initialized as $(x,a,0)$ and pushed through $f$ to produce $(f(x),Df(x)[a],D^2f(x)[a,a])$; this single pushforward replaces the full Hessian computation. The second ingredient is reuse of the Jacobian factorization: both linear solves use the same LU/QR factorization, so the extra solve is $O(n^2)$; for sparse problems, sparsity detection and graph coloring keep the factorization scalable.

What would settle it

Compare the step produced by equation (4.1) with the step of the standard matrix-inverse multivariate Halley iteration on a small non-diagonal system such as $f(x_1,x_2)=(x_1^2+x_2-1,\,x_1-x_2^2)$; if the two updates differ at a generic point, the iteration studied is not Halley's method.

Watch

Extended reading notes

Core claim

The paper's central claim is that the multivariate Halley update $$x_{n+1}=x_n+(a_n\odot a_n)\oslash\left(a_n+\frac{1}{2}[Df(x_n)]^{-1}$D^{2}$f(x_n)[a_n,a_n]\right),\quad Df(x_n)a_n=-f(x_n),$$ can be executed without ever forming the full Hessian. The vector $D^2f(x_n)[a_n,a_n]$ is obtained from a Taylor bundle $(x_n,a_n,0)$ pushed through $f$, which costs about two function evaluations; then a second linear solve with the already-factorized Jacobian yields the correction. Thus each Halley step costs one Jacobian factorization plus $O(n^2)$ work, the same asymptotic cost as Newton's step, while converging cubically instead of quadratically. The paper reports that on dense problems this gives about 40% savings over Newton at $n=128$, on a sparse ill-conditioned Brusselator steady-state problem about 25% savings at $n=2048$, and 5--10% savings for the whole stiff ODE solve across several implicit integrators.

Load-bearing premise

The load-bearing premise is that equation (4.1) really is the multivariate Halley method as derived from abstract rational approximation in [13,15]; if that identification is wrong, the reported speedups would still be empirical facts about a third-order iteration, but the paper's theoretical framing as Halley's method would not hold.

Editorial extensions

If this is right

  • If the central claim is right, Halley's method can replace Newton's method as a practical third-order solver for any problem where a direct Jacobian factorization is affordable, with expected savings that grow with problem size.
  • Large dense systems, such as those from integral equations, can be solved to the same tolerance with roughly 40% less time at $n\approx 128$ than Newton.
  • Large sparse ill-conditioned systems from PDE discretizations can be solved with about 25% less time at $n\approx 2048$ when sparsity detection is used.
  • Replacing Newton with Halley inside implicit stiff ODE integrators yields 5--10% total speedups across a range of methods, because the nonlinear solve is the bottleneck.
  • The paper's trade-off study suggests the biggest gain comes from moving from first to second order; orders above Halley are postulated to add little, though the paper does not implement multivariate $p\ge 3$ variants.

Reading between the lines

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

  • My inference: the same two-linear-solve trick should extend to multivariate Householder methods of order $p\ge 3$, since Taylor-mode AD still supplies all needed directional derivatives at $O(p)$ cost; the paper postulates but does not build this.
  • My inference: the matrix-free limitation the paper flags is the main practical boundary; a meaningful extension would be to keep a preconditioner or Krylov subspace across the two linear solves so the second solve costs much less than a full Newton solve.
  • My inference: the elementwise update (4.1) may be a variant rather than the classical matrix-inverse Halley iteration, so a direct convergence analysis of this specific update, and a numerical comparison on non-diagonal test problems, would settle whether the Halley name is essential to the speedups.
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

3 major / 4 minor

Summary. The paper proposes using Taylor-mode automatic differentiation to compute higher-order directional derivatives efficiently and thereby implement higher-order nonlinear solvers. It first implements univariate Householder's method of arbitrary order and then focuses on the second-order variant, Halley's method, generalized to systems of nonlinear equations through the componentwise update in Eq. (4.1). The central claims are that each Halley step can be asymptotically as cheap as a Newton step because the two linear solves share one Jacobian factorization, and that numerical experiments on a dense (Chandrasekhar H-function) problem, a sparse ill-conditioned Brusselator steady-state problem, and stiff ODE integration show that Halley's method can outperform Newton's method. The paper concludes with the stated limitation that matrix-free or iterative linear solves are not considered.

Significance. If the central claims hold, the paper offers a practical and interesting contribution: Taylor-mode AD is used to avoid full higher-order derivative tensors, the linear-algebra cost model (one factorization plus two triangular solves per step) is plausible, and the numerical demonstrations span relevant problem classes. The released Julia packages (TaylorDiff.jl, SimpleNonlinearSolve.jl) and the explicit discussion of scalability and limitations are strengths. However, the identification of Eq. (4.1) with the classical multivariate Halley method is not derived, and the asserted cubic convergence of that update is not established. The empirical speedup claims also lack repeated-run statistics. The significance is therefore real but conditional on clarifying what iteration is actually implemented and proving or tempering the convergence-order claim.

major comments (3)
  1. [§4, Eq. (4.1)] Equation (4.1) is presented as the multivariate Halley method 'derived from abstract rational approximation' citing [13, 15], but no derivation is shown. The classical multivariate Halley iteration, as given in the cited Cuyt and Rall paper [15], is of the form x + [I - 0.5 J^{-1} D^2 f(x)[a, .]]^{-1} a, which is not equal to the elementwise quotient a⊙a ⊘ (a + b/2) unless the operator J^{-1}D^2f(x)[a, .] is diagonal. The paper must either derive Eq. (4.1) from the cited abstract rational approximation theory or explicitly state that it is a new componentwise third-order variant; the current wording misidentifies the iteration and makes the subsequent 'Halley's method' nomenclature and convergence claims unsupported.
  2. [§4, convergence of Algorithm 4.1] The paper asserts that Algorithm 4.1 has cubic convergence, but no proof is provided for the componentwise update. Expanding about a root with a = -e + h/2 + O(3) and b = h + O(3) gives e_new,i = h_i^2/[4(h_i - e_i)] + O(||e||^3); if e_i is O(||e||^2), the first step reduces that component only quadratically. Thus uniform cubic Q-convergence does not follow from a naive Taylor argument. This is load-bearing because the claimed advantage over Newton's method is premised on the higher convergence order. The authors should either prove convergence under explicit conditions, or replace the third-order claim with a numerically verified statement about observed order and clarify the asymptotic nature of the convergence.
  3. [§4.1–§4.3, benchmarks] The performance claims (e.g., about 40% faster for n=128 in Section 4.1, about 25% faster in Section 4.2, and 5–10% average speedup in Section 4.3) are reported without repeated runs, variance estimates, or a complete statement of the solver configurations (tolerances, linear solver algorithms, number of runs). Since the central contribution is empirical, the paper should state how many repetitions were performed and report the observed spread, or otherwise make the benchmark scripts and machine configuration available in a way that allows independent reproduction. This is needed to support the 'outperform Newton's method' conclusion.
minor comments (4)
  1. [Algorithm 4.1] The line 'Solve b from Df(x)[b] = D2(x)[a, a]' should read D^2 f(x)[a, a]; the 'f' is missing.
  2. [§4.1] The text refers to 'NonlinearProblemLibrary.jl[35]', but reference [35] is the NonlinearSolve.jl paper, not the problem library; please add the correct citation or URL for NonlinearProblemLibrary.jl.
  3. [§4.3] The phrase 'improv ing the nonlinear solver' contains a typo and should be 'improving'.
  4. [Figures 2–5] The figure captions do not state what quantity is plotted (wall-clock time, median, best-of-N, etc.) or the error metric for the work-precision diagrams; please add units and definitions to the captions.

Circularity Check

0 steps flagged · score 0.0 of 10

No circular derivation: cost model is an independently documented AD theorem and all performance claims are benchmarked, not fitted.

full rationale

The Taylor-mode AD cost bound is taken from the first author's prior thesis [46] and TaylorDiff.jl [47], but it is a parameter-free complexity theorem with stated assumptions (elementary functions and arbitrary control flow) and does not assume any nonlinear-solver result, so the self-citation is real evidence and not circular. The Householder and Halley update formulas are standard forms taken from the literature [13,15,24]; no update formula is defined in terms of the paper's own conclusions. The central efficiency claims are tested empirically against Newton on dense, sparse, and stiff-ODE benchmarks with no fitted parameters; the reported speedups are measurements, not predictions derived from the method's definition. The possible mismatch between Eq. (4.1) and the classical matrix-inverse multivariate Halley update is a correctness or attribution concern (the paper does not prove Eq. (4.1) follows from [13,15]), not circularity, because the formula is not derived from the paper's own outputs and no derived quantity reduces to an input. The limitation paragraph on matrix-free Jacobians explicitly admits where the cost argument fails, further showing the derivation is not vacuous. Verdict: no significant circularity.

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

The central efficiency claim rests on four imported premises: the O(p) Taylor-mode cost from prior work, standard smoothness and invertibility assumptions, the identification of Eq. (4.1) with the cited multivariate Halley method, and single-run timing representativeness. No free parameters are fit in the paper, and no new entities are introduced.

assumptions (4)
  • domain assumption Taylor-mode AD computes p-th order directional derivatives with O(p) overhead per function evaluation (cited to [46], not re-derived).
    The cost model justifying cheap higher-order derivatives in Section 2 is imported from the authors' prior thesis and TaylorDiff.jl work, not proven here.
  • standard math Local smoothness and nonsingular Jacobian sufficient for local cubic convergence of Eq. (4.1).
    Standard local convergence assumptions for Newton/Halley-type iterations; not stated explicitly in the paper.
  • domain assumption Equation (4.1) is the multivariate Halley method from [13,15].
    The text asserts the update 'could be expressed as' Eq. (4.1) but does not show the reduction from Cuyt's abstract rational approximation; the elementwise formula may be a distinct third-order variant.
  • domain assumption Timing measurements on a single core, single run are representative of performance.
    Figures 2, 4, and 5 lack repeated-run statistics, so the reported speedups assume run-to-run stability.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Scalable higher-order nonlinear solvers via higher-order automatic differentiation." pith.science (2026). https://pith.science/paper/MKKUZFEP

@misc{pith2026250116895,
  author       = {Pith},
  title        = {Pith review of: Scalable higher-order nonlinear solvers via higher-order automatic differentiation},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/MKKUZFEP}},
  note         = {Machine review of arXiv:2501.16895}
}
read the original abstract

This paper demonstrates new methods and implementations of nonlinear solvers with higher-order of convergence, which is achieved by efficiently computing higher-order derivatives. Instead of computing full derivatives, which could be expensive, we compute directional derivatives with Taylor-mode automatic differentiation. We first implement Householder's method with arbitrary order for one variable, and investigate the trade-off between computational cost and convergence order. We find that the second-order variant, i.e., Halley's method, to be the most valuable, and further generalize Halley's method to systems of nonlinear equations and demonstrate that it can scale efficiently to large-scale problems. We further apply Halley's method on solving large-scale ill-conditioned nonlinear problems, as well as solving nonlinear equations inside stiff ODE solvers, and demonstrate that it could outperform Newton's method.

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

52 extracted references · 42 canonical work pages

  1. [15]

    A. A. M. Cuyt and L. B. Rall , Computational implementation of the multivariate Halley method for solving nonlinear systems of equations , ACM Transactions on Mathematical Software, 11 (1985), pp. 20–36, https://doi.org/10.1145/3147.3162, https://dl.acm.org/ doi/10.1145/3147.3162 (accessed 2024-02-20)

  2. [1]

    2024, https://github.com/JuliaDiff/SparseDiffTools.jl (ac- cessed 2024-12-09)

    JuliaDiff/SparseDiffTools.jl, Nov. 2024, https://github.com/JuliaDiff/SparseDiffTools.jl (ac- cessed 2024-12-09). original-date: 2019-03-27T19:57:51Z

  3. [2]

    2024, https://github.com/SciML/LinearSolve.jl (accessed 2024-12- 09)

    SciML/LinearSolve.jl, Dec. 2024, https://github.com/SciML/LinearSolve.jl (accessed 2024-12- 09). original-date: 2021-07-02T19:56:38Z

  4. [3]

    Albeanu , On the generalized halley method for solving nonlinear equations , ROMAI J, 4 (2008), pp

    G. Albeanu , On the generalized halley method for solving nonlinear equations , ROMAI J, 4 (2008), pp. 1–6

  5. [4]

    Alefeld, On the convergence of halley’s method , The American Mathematical Monthly, 88 (1981), pp

    G. Alefeld, On the convergence of halley’s method , The American Mathematical Monthly, 88 (1981), pp. 530–536

  6. [5]

    W. F. Ames , Numerical methods for partial differential equations , Academic press, 2014

  7. [6]

    K. E. Atkinson, A survey of numerical methods for solving nonlinear integral equations , The Journal of Integral Equations and Applications, (1992), pp. 15–46

  8. [7]

    B. M. A verick, J. J. Mor ´e, C. H. Bischof, A. Carle, and A. Griewank , Computing large sparse jacobian matrices using automatic differentiation , SIAM Journal on Scientific Computing, 15 (1994), pp. 285–294

Show all 52 references
  1. [8]

    Bettencourt, M

    J. Bettencourt, M. J. Johnson, and D. Duvenaud , Taylor-Mode Automatic Differentia- tion for Higher-Order Derivatives in JAX , July 2022, https://openreview.net/forum?id= SkxEF3FNPH (accessed 2022-12-22)

  2. [9]

    Bezanson, J

    J. Bezanson, J. Bolewski, and J. Chen , Fast flexible function dispatch in Julia , arXiv preprint arXiv:1808.03370, (2018)

  3. [10]

    Bezanson, A

    J. Bezanson, A. Edelman, S. Karpinski, and V. B. Shah , Julia: A Fresh Approach to Numerical Computing , SIAM Review, 59 (2017), pp. 65–98, https://doi.org/10.1137/ 141000671, https://epubs.siam.org/doi/10.1137/141000671 (accessed 2022-12-22). Pub- lisher: Society for Industri...

  4. [11]

    G. D. Byrne and A. C. Hindmarsh , Stiff ode solvers: A review of current and coming attractions, Journal of Computational physics, 70 (1987), pp. 1–62

  5. [12]

    Chandrasekhar, Radiative transfer, Courier Corporation, 2013

    S. Chandrasekhar, Radiative transfer, Courier Corporation, 2013

  6. [13]

    Cuyt and P

    A. Cuyt and P. van der Cruyssen , Abstract Pad´ e-approximants for the solution of a sytem of nonlinear equations , Computers & Mathematics with Applications, 9 (1983), pp. 617–624, https://doi.org/10.1016/0898-1221(83)90119-0, https://www.sciencedirect. com/science/article/pi...

  7. [14]

    A. A. Cuyt, Numerical stability of the halley-iteration for the solution of a system of nonlinear equations, Mathematics of Computation, 38 (1982), pp. 171–179

  8. [16]

    Gal ´antai, The theory of newton ’s method, Journal of Computational and Applied Mathe- matics, 124 (2000), pp

    A. Gal ´antai, The theory of newton ’s method, Journal of Computational and Applied Mathe- matics, 124 (2000), pp. 25–44

  9. [17]

    A. H. Gebremedhin, F. Manne, and A. Pothen , What Color Is Your Jaco- bian? Graph Coloring for Computing Derivatives , SIAM Review, 47 (2005), pp. 629–705, https://doi.org/10.1137/S0036144504444711, https://epubs.siam.org/doi/ abs/10.1137/S0036144504444711 (accessed 2024-12-09...

  10. [18]

    Germani, C

    A. Germani, C. Manes, P. Palumbo, and M. Sciandrone , Higher-Order Method for the Solution of a Nonlinear Scalar Equation, Journal of Optimization Theory and Applications, 131 (2006), pp. 347–364, https://doi.org/10.1007/s10957-006-9154-0, https://doi.org/10. 1007/s10957-006-9...

  11. [19]

    Giering, T

    R. Giering, T. Kaminski, and T. Slawig , Generating efficient derivative code with TAF: Adjoint and tangent linear Euler flow around an airfoil , Future Generation Computer Systems, 21 (2005), pp. 1345–1355, https://doi.org/10.1016/j.future.2004.11.003, https: //www.sciencedir...

  12. [20]

    Gowda, Y

    S. Gowda, Y. Ma, A. Cheli, M. Gw ´o´zzd´z, V. B. Shah, A. Edelman, and C. Rackauckas , High-performance symbolic-numerics via multiple dispatch , ACM Communications in Computer Algebra, 55 (2021), pp. 92–96, https://doi.org/10.1145/3511528.3511535, https: //dl.acm.org/doi/10.1...

  13. [21]

    Gowda, Y

    S. Gowda, Y. Ma, V. Churavy, A. Edelman, and C. Rackauckas , Sparsity Program- ming: Automated Sparsity-Aware Optimizations in Differentiable Programming , Sept. 2019, https://openreview.net/forum?id=rJlPdcY38B (accessed 2024-12-09)

  14. [22]

    Hill and G

    A. Hill and G. Dalle , SparseConnectivityTracer.jl, Nov. 2024, https://doi.org/10.5281/ zenodo.14216520, https://zenodo.org/records/14216520 (accessed 2024-12-09)

  15. [23]

    M. E. Hosea and L. F. Shampine, Analysis and implementation of TR-BDF2, Applied Numer- ical Mathematics, 20 (1996), pp. 21–37, https://doi.org/10.1016/0168-9274(95)00115-8, https://www.sciencedirect.com/science/article/pii/0168927495001158 (accessed 2024-12- 09)

  16. [24]

    A. S. Householder , The numerical treatment of a single nonlinear equation , (No Title), (1970)

  17. [25]

    C. T. Kelley , Solving nonlinear equations with Newton ’s method, SIAM, 2003

  18. [26]

    C. A. Kennedy and M. H. Carpenter , Additive Runge–Kutta schemes for con- vection–diffusion–reaction equations , Applied Numerical Mathematics, 44 (2003), pp. 139–181, https://doi.org/10.1016/S0168-9274(02)00138-1, https://www.sciencedirect. com/science/article/pii/S0168927402...

  19. [27]

    S. Kim, W. Ji, S. Deng, Y. Ma, and C. Rackauckas , Stiff neural ordinary differential equations, Chaos: An Interdisciplinary Journal of Nonlinear Science, 31 (2021), p. 093122. Publisher: AIP Publishing LLC

  20. [28]

    Knoll and D

    D. Knoll and D. Keyes , Jacobian-free newton–krylov methods: a survey of approaches and applications , Journal of Computational Physics, 193 (2004), pp. 357–397, https://doi.org/https://doi.org/10.1016/j.jcp.2003.08.010, https://www. sciencedirect.com/science/article/pii/S0021...

  21. [29]

    Kunkel, Differential-algebraic equations: analysis and numerical solution , vol

    P. Kunkel, Differential-algebraic equations: analysis and numerical solution , vol. 2, European Mathematical Society, 2006

  22. [30]

    Kværnø , Singly Diagonally Implicit Runge–Kutta Methods with an Explicit First Stage, BIT Numerical Mathematics, 44 (2004), pp

    A. Kværnø , Singly Diagonally Implicit Runge–Kutta Methods with an Explicit First Stage, BIT Numerical Mathematics, 44 (2004), pp. 489–502, https://doi.org/10.1023/ B:BITN.0000046811.70614.38, https://doi.org/10.1023/B:BITN.0000046811.70614.38 (ac- cessed 2024-12-09)

  23. [31]

    Madhu and J

    K. Madhu and J. Jayaraman , Some higher order newton-like methods for solving system of 12 S. TAN, K. MIAO, A. EDELMAN, AND C. RACKAUCKAS nonlinear equations and its applications , International Journal of Applied and Computa- tional Mathematics, 3 (2017), pp. 2213–2230

  24. [32]

    C. C. Margossian , A review of automatic differentiation and its efficient implementation , Wiley interdisciplinary reviews: data mining and knowledge discovery, 9 (2019), p. e1305

  25. [33]

    K. I. Noor, M. A. Noor, and S. Momani, Modified householder iterative method for nonlinear equations, Applied mathematics and computation, 190 (2007), pp. 1534–1539

  26. [34]

    Ogbereyivwe, O

    O. Ogbereyivwe, O. Izevbizua, and S. S. Umar , Some high-order convergence modifications of the householder method for nonlinear equations, Communications in Nonlinear Analysis, 11 (2023), pp. 1–11

  27. [35]

    A. Pal, F. Holtorf, A. Larsson, T. Loman, Utkarsh, F. Sch ¨aefer, Q. Qu, A. Edel- man, and C. Rackauckas , NonlinearSolve.jl: High-Performance and Robust Solvers for Systems of Nonlinear Equations in Julia , Mar. 2024, http://arxiv.org/abs/2403.16341 (ac- cessed 2024-06-15). a...

  28. [36]

    Potra, Nondiscrete induction and iterative processes , Pitman Publ, (1984)

    F. Potra, Nondiscrete induction and iterative processes , Pitman Publ, (1984)

  29. [37]

    Prigogine and R

    I. Prigogine and R. Lefever , Symmetry breaking instabilities in dissipative systems. ii , The Journal of Chemical Physics, 48 (1968), pp. 1695–1700

  30. [38]

    Rackauckas and Q

    C. Rackauckas and Q. Nie, Differentialequations.jl–a performant and feature-rich ecosystem for solving differential equations in julia , Journal of Open Research Software, 5 (2017), p. 15

  31. [39]

    Revels, M

    J. Revels, M. Lubin, and T. Papamarkou, Forward-mode automatic differentiation in Julia, arXiv preprint arXiv:1607.07892, (2016)

  32. [40]

    S. A. Sariman and I. Hashim, New optimal newton-householder methods for solving nonlinear equations and their dynamics , Computers, Materials & Continua, 65 (2020), pp. 69–85

  33. [41]

    L. F. Shampine , Solving 0 = F(t, y(t), y’(t)) in Matlab , 10 (2002), pp. 291–310, https: //doi.org/10.1515/JNMA.2002.291, https://www.degruyter.com/document/doi/10.1515/ JNMA.2002.291/html (accessed 2024-12-09). Publisher: De Gruyter Section: Journal of Numerical Mathematics

  34. [42]

    L. F. Shampine and M. W. Reichelt , The MATLAB ODE Suite , SIAM Journal on Scien- tific Computing, 18 (1997), pp. 1–22, https://doi.org/10.1137/S1064827594276424, http: //epubs.siam.org/doi/10.1137/S1064827594276424 (accessed 2024-12-09)

  35. [43]

    Singh and J

    H. Singh and J. R. Sharma , Simple yet highly efficient numerical techniques for sys- tems of nonlinear equations , Computational and Applied Mathematics, 42 (2023), p. 22, https://doi.org/10.1007/s40314-022-02159-9, https://link.springer.com/10.1007/ s40314-022-02159-9 (acces...

  36. [44]

    Steihaug, Newton and halley are one step apart , Institute for Scientific Computing, (2006)

    T. Steihaug, Newton and halley are one step apart , Institute for Scientific Computing, (2006)

  37. [45]

    S. T. M. Suleiman , Solving system of nonlinear equations using methods in the halley class , master’s thesis, The University of Bergen, 2009

  38. [46]

    Tan, Higher-Order Automatic Differentiation and Its Applications , master’s thesis, Mas- sachusetts Institute of Technology, June 2023, https://dspace.mit.edu/handle/1721.1/ 151501

    S. Tan, Higher-Order Automatic Differentiation and Its Applications , master’s thesis, Mas- sachusetts Institute of Technology, June 2023, https://dspace.mit.edu/handle/1721.1/ 151501

  39. [47]

    Tan, TaylorDiff.jl, May 2023, https://github.com/JuliaDiff/TaylorDiff.jl (accessed 2023-05- 11)

    S. Tan, TaylorDiff.jl, May 2023, https://github.com/JuliaDiff/TaylorDiff.jl (accessed 2023-05- 11). original-date: 2022-11-09T17:21:07Z

  40. [48]

    Vladimirescu, The Spice Book , John Wiley & Sons, Inc., USA, Mar

    A. Vladimirescu, The Spice Book , John Wiley & Sons, Inc., USA, Mar. 1994

  41. [49]

    W alther and A

    A. W alther and A. Griewank, Getting started with adol-c. , Combinatorial scientific comput- ing, 1 (2009)

  42. [50]

    White, M

    F. White, M. Abbott, M. Zgubic, J. Revels, S. Axen, A. Arslan, S. Schaub, N. Robinson, Y. Ma, G. Dhingra, W. Tebbutt, D. Widmann, N. Heim, N. Schmitz, C. Rackauckas, C. Lucibello, R. Heintzmann, frankschae, A. Noack, K. Fischer, A. Robson, cossio, J. Ling, mattBrzezinski, R. F...

  43. [51]

    Xiao and H

    X. Xiao and H. Yin , A new class of methods with higher order of convergence for solv- ing systems of nonlinear equations , Applied Mathematics and Computation, 264 (2015), pp. 300–309, https://doi.org/10.1016/j.amc.2015.04.094, https://www.sciencedirect.com/ science/article/p...

  44. [52]

    Xiao, New techniques to develop higher order iterative methods for systems of nonlinear equations, Computational and Applied Mathematics, 41 (2022), p

    X.-Y. Xiao, New techniques to develop higher order iterative methods for systems of nonlinear equations, Computational and Applied Mathematics, 41 (2022), p. 243, https://doi.org/ 10.1007/s40314-022-01959-3, https://link.springer.com/10.1007/s40314-022-01959-3 (ac- cessed 2024-05-17)

Pith tools

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