adic
Adic number math
Adic numbers
p-adic numbers are an alternate number system to the reals. This system is p-periodic and hierarchical. It is used throughout number theory, but it not well-known outside of pure math. This crate is partially an attempt to change that.
https://en.wikipedia.org/wiki/P-adic_number
Adic numbers can represent any rational number as well as many numbers between them, just like the real numbers.
They can be represented similarly to the reals as infinite digital expansions.
Except where the reals have a finite number of digits to the left of the decimal and possibly infinite to the right
(1.414...), the adics have finite digits to the right and infinite to the left (...4132.13).
assert_eq!;
assert_eq!;
assert_eq!;
assert_eq!;
assert_eq!;
You might think this means they are "infinite" numbers, but they are not! The key difference is how a number's size is measured.
For a number, its "size" is its norm, its absolute value.
In the reals, the size of 4 is 4, the size of -2.31 is 2.31, etc.
In the p-adics, the size is the inverse of how many powers of p are in the number: |x| = |a/b * p^v| = p^(-v).
When you represent these numbers as (base-p) digital expansions, the numbers further to the left are SMALLER, not bigger.
Adic numbers are used:
- to solve diophantine equations
- as fundamental examples of ultrametric spaces
- to form combined local/global structures, e.g. adeles and ideles
- in glassy physical systems, like in replica/cavity theory
- in tropical geometry
Crate
This crate handles adic numbers, arithmetic, and calculations, including:
- Adic integers of various types:
- [
UAdic] for natural numbers - [
IAdic] for real integers - [
RAdic] for (most) rationals - [
ZAdic] for approximate numbers
- [
- [
QAdic], an adic number, to include powers of p in the denominator - Rootfinding, through use of hensel lifting
Other important objects:
- [
AdicInteger] - Trait for adic integers, including e.g. norm, certainty, n-th root calculations - [
AdicPolynomial] - Polynomial with adic integer coefficients - [
LazyIntDiv]/[LazyQDiv] - Lazily calculate adic number division - [
QAdicValuation]/[ZAdicValuation] - Valuation for adic numbers and integers, respectively - [
ZAdicVariety] - A collection of [ZAdic]s representing the roots of a polynomial
Example: calculate the two varieties for 7-adic sqrt(2) to 6 digits:
use ;
// Create the 7-adic number 2
let seven_adic_two = uadic!;
// Take the square root of seven_adic_two, to 6 "decimal places"
let sqrt_two_variety = seven_adic_two.nth_root;
assert_eq!;
Example: 5-adic arithmetic
use ;
// 3 is a single digit (3) and no repeating digits
let three = radic!;
// -1/6 consists only of repeating ...040404.
let neg_one_sixth = radic!;
// 3 - 1/6 = 17/6 is two digits 12. and then repeating 04
let seventeen_sixth = three + neg_one_sixth;
assert_eq!;
assert_eq!;
Example: 5-adic fourth roots of unity
use Pow;
use ;
// Every (odd) p-adic number space has p-1 roots of unity
let roots = roots_of_unity?;
assert_eq!;
let approx_one = zadic_approx!;
for root in roots.into_roots
TODO
AdicNumber, a trait for [QAdic] and any [AdicInteger]QXAdicfor a number from a finite extension of [QAdic]QCAdicfor a number in the algebraic closure of [QAdic]CAdic, a "complex adic number", in the norm completion ofQCAdicSAdic, a "spherically complete adic number", in the spherical completion ofQCAdic/CAdic
License: MIT OR Apache-2.0