python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Square root of a u128
How can the square root of a u128 be calculated? The resulting number can be a u128 after some rounding.
f64 has a f64::sqrt function, but I dont think we should be converting u128 to f64.
Nyxynyx
Votes: 0
Answers: 1
What purpose is the lookup table serving in this code?
Below I have adapted code from William Kahan and K.C. Ng (look at the comment block on the bottom) written in 1986 to produce an approximation of 1 / sqrt(x) where x is an IEEE-754 double precision fl...

Adam Hyland
Votes: 0
Answers: 1
Propagation in Python - Pandas Series TypeError
I am trying to propagate uncertainty in Python by adding two columns together of a Pandas data frame and then taking the square root. However, when I try to use Python's math.sqrt function, I receive ...
325
Votes: 0
Answers: 1