calc VS arb

Compare calc vs arb and see what are their differences.

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
calc arb
9 11
317 457
- 1.3%
9.2 2.2
3 months ago about 1 month ago
C C
GNU General Public License v3.0 or later GNU Lesser General Public License v3.0 only
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

calc

Posts with mentions or reviews of calc. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-10-12.

arb

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

What are some alternatives?

When comparing calc and arb you can also consider the following projects:

rofi-calc - 🖩 Do live calculations in rofi!

Arblib.jl - Thin, efficient wrapper around Arb library (http://arblib.org/)

kalk - Scientific calculator with math syntax that supports user-defined variables and functions, complex numbers, and estimation of derivatives and integrals

MultiFloats.jl - Fast, SIMD-accelerated extended-precision arithmetic for Julia

insect - High precision scientific calculator with support for physical units

tiny-bignum-c - Small portable multiple-precision unsigned integer arithmetic in C

percollate - A command-line tool to turn web pages into readable PDF, EPUB, HTML, or Markdown docs.

The-RLIBM-Project - A combined repository for all RLIBM prototypes

prime-spirals - Creates images of prime numbers in various spiral patterns.

SuiteSparse - SuiteSparse: a suite of sparse matrix packages by @DrTimothyAldenDavis et al. with native CMake support

webone - HTTP 1.x proxy that makes old web browsers usable again in the Web 2.0 world.

mpmath - Python library for arbitrary-precision floating-point arithmetic