# ArbNumerics.jl library update

**URL:** https://discourse.julialang.org/t/arbnumerics-jl-library-update/128591
**Category:** Package Announcements
**Tags:** numerics
**Created:** [May 1, 2025, 6:04am UTC](https://discourse.julialang.org/t/arbnumerics-jl-library-update/128591 "2025-05-01T06:04:24Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![JeffreySarnoff](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/jeffreysarnoff/32/1980_2.png) [@JeffreySarnoff](https://discourse.julialang.org/u/JeffreySarnoff)
#### Post date: [May 1, 2025, 6:04am UTC](https://discourse.julialang.org/t/arbnumerics-jl-library-update/128591/1 "2025-05-01T06:04:24Z")

</div>

Version 1.6 of ArbNumerics.jl is released. This release uses the latest arb C library, which is now encapsulated into FLINT3 (see [Real and complex numbers (Arb) : detailed table of contents — FLINT 3.3.0-dev documentation](https://flintlib.org/doc/index_arb.html)). I felt it important to update the library now, as there were some issues arising with the older unsupported C library. There are a few minor adjustments still needed, though nothing that provides misleading results. This will take some more attention. File issues if you encounter them.

To continue using the prior version:

```julia
      using Pkg
      Pkg.add(name="ArbNumerics", version="1.5.4")

```

> > There are reports of M1 OS having issues running this with Julia v1.9, v1.10. If you are using M1 with Julia v1.9 or v1.10 either update to Julia v1.11 or use the prior version of ArbNumerics.

- Use ArbReals with bessel\_ functions and any other special functions that do not work given ArbFloats.

And a reminder: to initialize ArbFloats, ArbReals, use the string form of the initializing value; otherwise you initialize with the Float64 approximation.

```julia
julia> ArbFloat(1.2)
1.199999999999999955591079014993738383054733276367188

julia> ArbFloat("1.2")
1.2

```

---

<div class="post-metadata">

### Author: ![kapple](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/kapple/32/218915_2.png) [@kapple](https://discourse.julialang.org/u/kapple)
#### Post date: [May 3, 2025, 12:14am UTC](https://discourse.julialang.org/t/arbnumerics-jl-library-update/128591/2 "2025-05-03T00:14:19Z")

</div>

Looks awesome! Dependency on a C library but MIT license too. May I ask what people’s (and the author’s) experience with this has been cf. other options like IntervalArithmetic.jl?

---

<div class="post-metadata">

### Author: ![nsajko](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/nsajko/32/221187_2.png) [@nsajko](https://discourse.julialang.org/u/nsajko)
#### Post date: [May 3, 2025, 1:44am UTC](https://discourse.julialang.org/t/arbnumerics-jl-library-update/128591/3 "2025-05-03T01:44:33Z")

</div>

> [@kapple](#):
>
> Dependency on a C library but MIT license too. May I ask what people’s (and the author’s) experience with this has been cf. other options

There are no pure-Julia bignums or bigfloats. It’s either the MPFR C library or the FLINT C library (with Arb as a part of FLINT). Even in other programming languages, one usually just reaches for MPFR, I believe.

Regarding interval arithmetic, IntervalArithmetic.jl represents an interval as two endpoints, while Arb represents an interval as a radius and a midpoint (thus the term _ball arithmetic_).

Also, there’s another Julia package wrapping Arb: Arblib.jl.

---

<div class="post-metadata">

### Author: ![cgeoga](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/cgeoga/32/216186_2.png) [@cgeoga](https://discourse.julialang.org/u/cgeoga)
#### Post date: [May 4, 2025, 6:43pm UTC](https://discourse.julialang.org/t/arbnumerics-jl-library-update/128591/4 "2025-05-04T18:43:16Z")

</div>

@JeffreySarnoff, thanks for the update and for all your work on this! I have gotten a lot of value out of `ArbNumerics.jl` and appreciate how easy you have made it to hook in and use the library.
