Re: Beazley's Problem

2024-10-06 Thread Antoon Pardon via Python-list
Op 23/09/2024 om 09:44 schreef Annada Behera via Python-list: The "next-level math trick" Newton-Raphson has nothing to do with functional programming. I have written solvers in purely iterative style. What is your point. Any problem solved in a functional style can also be solved in a pure int

Re: Beazley's Problem

2024-09-24 Thread Annada Behera via Python-list
-Original Message- From: Paul Rubin Subject: Re: Beazley's Problem Date: 09/24/2024 05:52:27 AM Newsgroups: comp.lang.python >> def f_prime(x: float) -> float: >>     return 2*x > >You might enjoy implementing that with automatic differentiation (not >

Re: Beazley's Problem

2024-09-23 Thread Annada Behera via Python-list
less where you are not allowed to store any state (current best guess root). -Original Message- From: Paul Rubin Subject: Re: Beazley's Problem Date: 09/22/2024 01:49:50 AM Newsgroups: comp.lang.python r...@zedat.fu-berlin.de (Stefan Ram) writes: >   It's hella rad to see y