Lines Matching full:uses
3 This `bc` uses the math algorithms below:
7 This `bc` uses brute force addition, which is linear (`O(n)`) in the number of
12 This `bc` uses brute force subtraction, which is linear (`O(n)`) in the number
17 This `bc` uses two algorithms: [Karatsuba][1] and brute force.
35 This `bc` uses Algorithm D ([long division][2]). Long division is polynomial
42 chunking method, it only uses subtraction to find a quotient digit. It avoids
72 This `bc` uses the series
78 to calculate `sin(x)` and `cos(x)`. It also uses the relation
96 This `bc` uses the series
102 to calculate `e^x`. Since this only works when `x` is small, it uses
118 This `bc` uses the series
125 and uses the relation
141 This `bc` uses the series
161 This `bc` uses the series
169 It also uses the relation
183 This `dc` uses the [Memory-efficient method][8] to compute modular
359 The algorithm uses the formula `a*b/gcd(a,b)`.
367 The algorithm uses the formula `4*a(1)`.
375 The algorithm uses the formula `s(x)/c(x)`.
383 The algorithm uses the [standard formulas][11].