arb

Arb has been merged into FLINT -- use https://github.com/flintlib/flint/ instead (by flintlib)

Arb Alternatives

Similar projects and alternatives to arb

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better arb alternative or higher similarity.

arb reviews and mentions

Posts with mentions or reviews of arb. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-03.
  • Patriot Missile Floating point Software Problem lead to deaths 28 Americans
    2 projects | news.ycombinator.com | 3 Jan 2024
    You can instead list your criteria for good number format and look at alternatives with those lenses. Floating point is designed for a good balance between dynamic range and precision, and IEEE 754 binary formats can be seen as a FP standard particularly optimized for numerical calculation.

    There are several other FP formats. The most popular one is IEEE 754 minus subnormal numbers, followed by bfloat16, IEEE 754 decimal formats (formerly IEEE 854) and posits. Only first two have good hardware supports. The lack of subnormal number means that `a <=> b` can't be no longer rewritten to `a - b <=> 0` among others but is widely believed to be faster. (I don't fully agree, but it's indeed true for existing contemporary hardwares.) IEEE 754 decimal formats are notable for lack of normalization guarantee. Posits are, in some sense, what IEEE 754 would have been if designed today, and in fact aren't that fundamentally different from IEEE 754 in my opinion.

    Fixed-point formats share pros and cons of finitely sized integer numbers and you should have no difficulty to analyze them. In short, they offer a smaller dynamic range compared to FP, but its truncation model is much simpler to reason. In turn you will get a varying precision and out-of-bound issues.

    Rational number formats look very promising at the beginning, but they are much harder to implement efficiently. You will need a fast GCD algorithm (not Euclidean) and also have to handle out-of-bound numerators and denumerators. In fact, many rational number formats rely on arbitrary-precision integers precisely for avoiding those issues, and inherit the same set of issues---unbounded memory usage and computational overhead. Approximate rational number formats are much rarer, and I'm only aware of the Inigo Quilez's floating-bar experiment [1] in this space.

    [1] https://iquilezles.org/articles/floatingbar/

    Interval/ball/affine arithmetics and others are means to automatically approximate an error analysis. They have a good property of being never incorrect, but it is still really easy for them to throw up and give a correct but useless answer like [-inf, inf]. Also they are somewhat awkward in a typical procedural paradigm because comparisons will return a tri-state boolean (true, false, unsure). Nevertheless they are often useful when correctly used. Fredrik Johansson's Arb [2] is a good starting point in my opinion.

    [2] https://arblib.org/

    Finally you can model a number as a function that returns a successively accurate approximation. This is called the constructive or exact real number, and simultaneously most expensive and most correct. One of the most glaring problems is that an equality is not always decidable, and practical applications tend to have various heuristics to get around this fact. Amazingly enough, Android's built-in calculator is one of the most used applications that use this model [3].

    [3] https://dl.acm.org/doi/pdf/10.1145/2911981

  • Beyond Automatic Differentiation
    2 projects | news.ycombinator.com | 14 Apr 2023
  • Cosine Implementation in C
    11 projects | news.ycombinator.com | 30 Mar 2023
    https://github.com/JuliaMath/Bessels.jl/blob/master/src/bess...

    Thanks! I love it, so easy to understand and follow.

    My favourite work on the subject is Fredrik Johansson's:

    https://github.com/fredrik-johansson/arb

    Whenever I feel down and without energy I just read something in there

  • Math with Significant Figures
    3 projects | /r/Python | 30 Oct 2022
    Probably the most popular package for dealing with error propagation and arbitrary precision arithmetic in Python is mpmath, more specifically the mp.iv module. For more serious applications I'd take a look at MPFR and Arb, both in C. And there are tons of ball arithmetic and interval arithmetic libraries in Fortran.
  • Function betrayal
    1 project | /r/mathmemes | 27 Oct 2022
    You're in good company too. Using intervals to bound error is the entire idea behind the arb library.
  • What are some best practices in dealing with precision errors in computing?
    1 project | /r/math | 12 Oct 2022
    The error bounds approach is probably what you’re looking for. A better search term for that is “interval arithmetic.” There are many good software packages for interval arithmetic, like Arb.
  • Numeric equality
    1 project | /r/ProgrammingLanguages | 29 Aug 2022
    I do agree with your list, so that is something! I will add, balls are underrated, ditto intervals (nominally more efficient, but on x86 switching rounding modes is 20-30 cycles...)
  • Cutting-edge research on numerical representations?
    1 project | /r/ProgrammingLanguages | 20 Mar 2022
    Ball arithmetic looks interesting. As far as I know, arb is the primary implementation.
  • Is there a language which can keep track of the potential epsilon error when doing calculations?
    3 projects | /r/ProgrammingLanguages | 6 Jan 2022
  • Beware of Fast-Math
    3 projects | news.ycombinator.com | 12 Nov 2021
  • A note from our sponsor - SaaSHub
    www.saashub.com | 26 Apr 2024
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic arb repo stats
11
455
2.2
about 1 month ago

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com