devela/num/int/
shared_docs.rs
1#![allow(unused, reason = "if only compiling either unsigned or signed…")]
7
8crate::CONST! { pub(crate),
9FORMULA_SCALE = r#"$$ \large v' = (b - a) \frac{v - min}{max - min} + a $$"#; FORMULA_FACTORIAL = r#"$$ n! = 1 \cdot 2 \cdot 3 \cdot \ldots \cdot (n-1) \cdot n $$"#;
16FORMULA_SUBFACTORIAL_RECURSIVE = r#"$$ !n = (n - 1) * (!(n - 1) + !(n - 2)) $$"#;
17FORMULA_SUBFACTORIAL_SUMMATION = r#"$$ \large !n = n! \times \sum_{k=0}^{n} \frac{(-1)^k}{k!} $$"#;
18FORMULA_SUBFACTORIAL_APPROXIMATION = r#" $$
19\large !n = \left\lfloor \frac{n!}{e} + \frac{1}{2} \right\rfloor =
20\left\lfloor n! \times \left(\frac{1}{e}\right) + \frac{1}{2} \right\rfloor $$"#;
21ALGORITHM_SUBFACTORIAL = r#"$$
22- Base cases: \( !0 = 1 \) and \( !1 = 0 \).
23- For \( n > 1 \), compute \( !(n - 1) \) and \( !(n - 2) \) recursively, and combine them:
24 $$ \large !n = (n - 1) \cdot (!(n - 1) + !(n - 2)). $$
25"#;
26FORMULA_PERMUTE = r#"$$ \large P(n,r) = \frac{n!}{(n−r)!} $$"#;
27FORMULA_PERMUTE_REP = r#"$$ \large P_\text{rep}(n,r) = n_r $$"#;
28FORMULA_COMBINE = r#"$$ \large C(n,r) = {n \choose r} = \frac{n!}{(n−r)!r!} $$"#;
29FORMULA_COMBINE_REP = r#"$$
30\large C(n+r-1,r) = {n+k-1 \choose r} = \frac{(n+r-1)!}{(n−1)!r!} $$"#;
31
32NOTATION_DIV_CEIL = r#"$$ \large \left\lceil \frac{x}{y} \right\rceil $$"#;
35FORMULA_DIV_CEIL = r#"$$
36\large
37\text{div\\_ceil}(a, b) =
38\begin{cases}
39\left\lfloor \frac{a}{b} \right\rfloor + 1 & \text{if } (r > 0 \land b > 0) \lor (r < 0 \land b < 0), \cr
40\left\lfloor \frac{a}{b} \right\rfloor & \text{otherwise.}
41\end{cases}
42$$"#;
43NOTATION_DIV_FLOOR = r#"$$ \large \left\lfloor \frac{x}{y} \right\rfloor $$"#;
44
45NOTATION_PI = r#"$$ \pi(x) $$"#;
48ALGORITHM_TOTIENT = r#"
49This function iterates through all numbers from 2 up to the square
50root of $|n|$. If it finds a divisor, it reduces `n` by its factors
51and adjusts result accordingly. If after the loop, $n > 1$, it
52means `n` has a prime factor greater than its square root, and the
53function adjusts result for this last factor.
54$$\large\varphi(n) =n \prod_{p\mid |n|} \left(1-\frac{1}{p}\right)$$
55"#;
56
57FORMULA_IS_SQUARE = r#"$$
60\large
61\text{is\textunderscore square}(a) = \begin{cases}
62\text{true} & \text{if } \left(\lfloor \sqrt{a} \rfloor\right)^2 = a \cr
63\text{false} & \text{if } \left(\lfloor \sqrt{a} \rfloor\right)^2 \neq a
64\end{cases}
65$$"#;
66ALGORITHM_SQRT_CEIL = r#"$$
67\large
68\begin{align}
69\notag \left\lceil \sqrt{a} \thinspace\right\rceil = \begin{cases}
70n & \text{if } n^2 = a \cr
71n+1 & \text{if } n^2 < a \end{cases} \cr
72\notag \normalsize\text{where } n = \lfloor \sqrt{a} \rfloor &
73\end{align}
74$$"#;
75ALGORITHM_SQRT_FLOOR = r#"
76$$ \large \left\lfloor \sqrt{a} \right\rfloor = n_{k} $$
77
78Where $n_{k}$ is the result of a sequence of estimates that
79starts with an initial $n_{0} = a/2$ which is updated using
80[*Heron's method*](
81https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Heron's_method):
82
83$$ \large
84n_{i+1} = n_{i} - ( n_{i}^{2} - a) / 2n_{i},
85\quad \small\text{for} \quad i = 0, 1, \ldots, k,
86$$
87
88Where $n_{i}$ is the current estimate, $n_{i+1}$ is the next
89estimate, $a$ is self, and $k$ is the number of iterations
90needed to converge to a solution, on the order of the number of
91bits of self, about $O(\log_2 b)$, which for e.g. 128 bits would
92be $ ±7 $ iterations.
93
94Hence, the function continues updating the estimate until
95reaching $n_{k}$, which provides the largest integer less than
96or equal to the square root of `a`.
97"#;
98ALGORITHM_SQRT_ROUND = r#"$$
99\begin{align}
100\notag \left\lfloor\sqrt{a} \thinspace\right\rceil = \begin{cases}
101n & \text{if } a - n^2 < (n+1)^2 - a \cr
102n+1 & \text{if } a - n^2 \geq (n+1)^2 - a \end{cases} \cr
103\notag \normalsize\text{where } n = \lfloor \sqrt{a} \rfloor &
104\end{align}
105$$"#;
106
107FORMULA_ROOT_CEIL_SIGNED = r#"$$
110\large \left\lceil |a|^{\frac{1}{n}} \right\rceil \cdot \text{sign}(a) = m $$"#;
111PIECEWISE_ROOT_CEIL_SIGNED = r#"$$
112\large
113\begin{align}
114\notag \text{If } n = 0, \text{ then error.} \cr
115\notag \text{If } n = 1, \text{ then output } a. \cr
116\notag \text{If } a = 0, \text{ then output } 0. \cr
117\notag \text{If } a < 0 \text{ and } n \\% 2 = 0, \text{ then error.} \cr
118\notag m = \lfloor |a|^{\frac{1}{n}} \rfloor \cr
119\notag \left\lceil |a|^{\frac{1}{n}} \right\rceil =
120\begin{cases}
121m & \text{if } m^n = |a|, \cr
122m+1 & \text{if } m^n < |a|.
123\end{cases} \cr
124\notag \text{Output: } m \cdot \text{sign}(a)
125\end{align}
126$$"#;
127ALGORITHM_ROOT_CEIL_SIGNED = r#"
128The algorithm computes the smallest integer $ m $ such that:
129$$ \large m^n \geq |a|. $$
130Subject to the condition:
131$$ \large a < 0 \quad \text{and} \quad n \\% 2 = 0 \quad \text{is invalid.} $$
132The process is as follows:
1331. Iteratively tests values starting from $ m = 1 $,
134 calculating $ m^n $ until $ m^n > |a| $.
1352. Computes the floored nth root as $ m - 1 $.
1363. Checks if $ (m - 1)^n = |a| $.
137 - If true, returns $ m - 1 \cdot \text{sign}(a) $.
138 - Otherwise, returns $ m \cdot \text{sign}(a) $,
139 the smallest integer such that $ m^n \geq |a| $."#;
140
141FORMULA_ROOT_CEIL_UNSIGNED = r#"$$
142\large \left\lceil a^{\frac{1}{n}} \right\rceil = m $$"#;
143PIECEWISE_ROOT_CEIL_UNSIGNED = r#"
144$$ \large
145\begin{align}
146\notag \text{If } n = 0, \text{ then error.} \cr
147\notag \text{If } n = 1, \text{ then output } a. \cr
148\notag \text{If } a = 0, \text{ then output } 0. \cr
149\notag m = \lfloor a^{\frac{1}{n}} \rfloor \cr
150\notag \left\lceil a^{\frac{1}{n}} \right\rceil =
151\begin{cases}
152m & \text{if } m^n = a, \cr
153m+1 & \text{if } m^n < a.
154\end{cases}
155\end{align}
156$$"#;
157ALGORITHM_ROOT_CEIL_UNSIGNED = r#"
158The algorithm computes the smallest integer $ m $ such that:
159$$ \large m^n \geq a. $$
160It first computes the floored nth root $ \lfloor a^{\frac{1}{n}} \rfloor $ and then:
1611. Checks if $ \lfloor a^{\frac{1}{n}} \rfloor^n = a $.
1622. If true, returns $ m = \lfloor a^{\frac{1}{n}} \rfloor $.
1633. Otherwise, returns $ m = \lfloor a^{\frac{1}{n}} \rfloor + 1 $."#;
164
165FORMULA_ROOT_FLOOR_SIGNED = r#"$$
166\large \left\lfloor |a|^{\frac{1}{n}} \right\rfloor = m \cdot \text{sign}(a) $$"#;
167PIECEWISE_ROOT_FLOOR_SIGNED = r#"$$
168\large
169\begin{align}
170\notag \text{If } n = 0, \text{ then error.} \cr
171\notag \text{If } n = 1, \text{ then output } a. \cr
172\notag \text{If } a = 0, \text{ then output } 0. \cr
173\notag \text{If } a < 0 \text{ and } n \% 2 = 0, \text{ then error.} \cr
174\notag m = \max \{ k \in \Z \mid k^n \leq |a| \} \cr
175\notag \text{Output: } m \cdot \text{sign}(a) &
176\end{align}
177$$"#;
178ALGORITHM_ROOT_FLOOR_SIGNED = r#"
179The algorithm computes the floored nth root,
180$ \left\lfloor |a|^{\frac{1}{n}} \right\rfloor = m \cdot \text{sign}(a) $,
181where $ m $ is the largest integer such that:
182$$ \large m^n \leq |a|, $$
183subject to the condition:
184$$ \large a < 0 \quad \text{and} \quad n \% 2 = 0 \quad \text{is invalid.} $$
185The algorithm incrementally tests values starting from $ m = 1 $
186and continues until the next value $ m+1 $ satisfies:
187$$ \large (m+1)^n > |a|. $$
188The function then returns $ m \cdot \text{sign}(a) $,
189the largest integer such that $ m^n \leq |a| $,
190with the sign adjusted for signed integers."#;
191
192FORMULA_ROOT_FLOOR_UNSIGNED = r#"$$
193\large \left\lfloor a^{\frac{1}{n}} \right\rfloor = m $$"#;
194PIECEWISE_ROOT_FLOOR_UNSIGNED = r#"$$
195\large
196\begin{align}
197\notag \text{If } n = 0, \text{ then error.} \cr
198\notag \text{If } n = 1, \text{ then output } a. \cr
199\notag \text{If } a = 0, \text{ then output } 0. \cr
200\notag m = \max \{ k \in \Z_{\geq 0} \mid k^n \leq a \} \cr
201\notag \text{Output: } m &
202\end{align}
203$$"#;
204ALGORITHM_ROOT_FLOOR_UNSIGNED = r#"
205The algorithm computes the floored nth root,
206$ \left\lfloor a^{\frac{1}{n}} \right\rfloor = m $,
207where $ m $ is the largest integer such that:
208$$ \large m^n \leq a. $$
209It incrementally tests values starting from $ m = 1 $
210and continues until the next value $ m+1 $ satisfies:
211$$ \large (m+1)^n > a. $$
212The function then returns $ m $."#;
213}