Tagged Questions
The sqrt tag has no wiki summary.
13
votes
12answers
1k views
Why do most programming languages only give one answer to square root of 4?
Most programming languages give 2 as the answer to square root of 4. However, there are two answers: 2 and -2. Is there any particular reason, historical or otherwise, why only one answer is usually ...
9
votes
1answer
197 views
Can I change this macro to an inline function without a performance hit?
(EDIT: Let's title this, "Lessons in how measurements can go wrong." I still haven't figured out exactly what's causing the discrepancy though.)
I found a very fast integer square root function ...
8
votes
4answers
165 views
How to improve fixed point square-root for small values
I am using Anthony Williams' fixed point library described in the Dr Dobb's article "Optimizing Math-Intensive Applications with Fixed-Point Arithmetic" to calculate the distance between two ...
8
votes
2answers
237 views
How to diagnose ambiguous call to sqrt(int&) in g++ 4.3.4
My code is as follows:
#include <cmath>
#include <iostream>
float foo(float f) {
std::cout << "float\n";
return f;
}
double foo(double d) {
std::cout << ...
8
votes
4answers
655 views
Is it possible to roll a significantly faster version of sqrt
In an app I'm profiling, I found that in some scenarios this function is able to take over 10% of total execution time.
I've seen discussion over the years of faster sqrt implementations using sneaky ...
5
votes
2answers
295 views
I don't understand number conversions in Haskell
Here is what I'm trying to do:
isPrime :: Int -> Bool
isPrime x = all (\y -> x `mod` y /= 0) [3, 5..floor(sqrt x)]
(I know I'm not checking for division by two--please ignore that.)
Here's ...
5
votes
8answers
1k views
What's the way to determine if an Int is a perfect square in Haskell?
I need a simple function
is_square :: Int -> Bool
which determines if an Int N a perfect square (is there an integer x such that x*x = N).
Of course I can just write something like
is_square n ...
4
votes
2answers
88 views
Hardware implementation of square root?
I'm trying to find a little bit more information for efficient square root algorithms which are most likely implemented on FPGA. A lot of algorithms are found already but which one are for example ...
4
votes
2answers
721 views
Finding log2() using sqrt()
This is an interview question I saw on some site.
It was mentioned that the answer involves forming a recurrence of log2() as follows:
double log2(double x )
{
if ( x<=2 ) return 1;
if ( ...
4
votes
6answers
615 views
Square root in PHP
Why is the output of sqrt not an integer for "16" in PHP?
Example
php > $fig = 16;
php > $sq = sqrt($fig); //should be 4
php > echo $sq;
4
php > echo is_int($sq); // should ...
3
votes
8answers
750 views
Estimating the square root
I am writing an iPhone app that needs to calculate the square root of a number about 2000 times every 1/30th of a second. sqrt() works fine on a computer, but the frame rate drops to around 10 FPS on ...
3
votes
5answers
401 views
sqrt() function not working with variable arguments
I don't know if I'm missing something obvious, but it appears that I'm unable to compute square roots of a variable in C; the sqrt() function only seems to work on constants. This is my code:
...
3
votes
6answers
668 views
Doesn't the Visual Studio 2008 compiler autocast to double with sqrt in C++?
Shouldn't the compiler automatically cast to a double in the following? At least according to Walter Savitch.
#include <iostream>
#include <cmath>
using namespace std;
int main(){
...
2
votes
1answer
58 views
get # of rows and # of columns of a square matrix from vector c++
I have a vector of size lets say 4:
vector <double> example;
example.push_back(3.0);
example.push_back(10.1);
example.push_back(33.1);
example.push_back(23.3);
so I have [3 10.1 33.1 23.3];
...
2
votes
3answers
256 views
Haskell get sqrt from Int
How can i get sqrt from Int.
I try so:
sqrt . fromInteger x
But get error with types compatibility.
How can i make it?
Thank you.
2
votes
1answer
215 views
Inverse sqrt for fixed point
I am looking for the best inverse square root algorithm for fixed point 16.16 numbers. The code below is what I have so far(but basically it takes the square root and divides by the original number, ...
2
votes
2answers
537 views
accuracy of long double sqrt()
I have noticed a problem with the accuracy of the long double version of sqrt(). The following code demonstrates the problem.
#include <iostream>
#include <cmath>
#include <cfloat>
...
2
votes
4answers
1k views
Java: Performance SQRT Calculations
I have this code:
package math;
import java.io.IOException;
import java.util.Scanner;
public class Main
{
public static void main(String[] args) throws IOException
{
...
1
vote
3answers
287 views
c++ practical computational complexity of <cmath> SQRT()
What is the difference in CPU cycles (or, in essence, in 'speed') between
x /= y;
and
#include <cmath>
x = sqrt(y);
EDIT: I know the operations aren't equivalent, I'm just arbitrarily ...
1
vote
1answer
36 views
Approach 2D position
I started working on a concept that requires me to find a way to move a rectangle toward a given point at a given speed. I'm developing for Android so this is relatively speed critical (it's going to ...
1
vote
2answers
190 views
sqrt() returning INF
Hi I'm trying to do some calculations with long doubles and I am getting INF from sqrt() function.
Code:
#include <math.h>
#include <stdio.h>
int main()
{
long double bigNUMBER;
...
1
vote
6answers
618 views
C++ sqrt returns -1.#IND000000000000
In specific:
Im doing some math operations, and the application keeps crashing because a double that is widely used happens to get the value: -1.#IND000000000000 when "some" numbers are sqrt'ed...
...
1
vote
3answers
265 views
How can I account for round-off errors in floating-point arithmetic for inverse trig (and sqrt) functions (in C)?
I have a fairly complicated function that takes several double values that represent two vectors in 3-space of the form (magnitude, latitude, longitude) where latitude and longitude are in radians, ...
0
votes
2answers
60 views
undefined reference to `sqrt'
Part of my program is to calculate sqrt of float number.
When I write sqrt(1.0f); I success to compile the program,but when I write sqrt(-1.0f);
the compilation fails with undefined reference to ...
0
votes
1answer
67 views
How do i get Math.Sqrt to return a Bignum and not a Float?
I'm trying to calculate the square root of a really big number in Ruby. The problem I have is that the Math.sqrt function looks like this
sqrt(numeric) → float
If I feed it a really big number, it ...
0
votes
4answers
101 views
C# high precision calculations
Consider this code:
double result = Math.Sqrt(4746073226998689451);
For result I get 2178548422 instead of 2178548421.999999854etc... How can I get more precise result?
0
votes
6answers
83 views
using only certain functions from a library?
i would like to use only certain functions from math.h (WITHOUT including the entire library)
for example, i need to use "sqrt" and "exp", but i have variables named "y1" (and possibly others) which ...
0
votes
4answers
93 views
Negative square root
How do you take the square root of a negative number in c++? I know it should return a real and a complex part, I get a nan? How do I take the real part?
0
votes
2answers
287 views
Need an algorithm for square root that provides a “remainder”
I'm writing a calculator without using decimals (supports only Rational numbers), but I'd like to be able to do a version of square root.
When a square root function is pressed for (say) the number ...
0
votes
3answers
169 views
php sqrt function that returns an integer?
I'm creating a simple PHP program that does an action if (and only if) three random numbers compute to an integer. The random numbers are all integers, created with the rand() function. Without going ...
0
votes
5answers
1k views
Implement double sqrt(double x) in C++
Implement double sqrt(double x) in C++ without using std library.
This is a facebook interview question I saw here. ...
0
votes
4answers
307 views
finding objects within radius
Looking for a lightweight way to find objects within a radius.
So far the answer that is obvious to me is go through each object, comparing its x and y position with the center of the radius.
...
-1
votes
5answers
238 views
while (i<=sqrt(static_cast<double>(n))
In the "C++ Without Fear: A Beginner's Guide That Makes You Feel Smart" book, in Chapter (2): Decisions, Decisions, you can see this lin of code as part of the prime number program:
while ...
-1
votes
3answers
233 views
sqrt turn out to be 4.9999 , instead of 5 [closed]
Possible Duplicate:
Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273?
sqrt(25.0)
turns out to be 4.99999 ,instead of 5
how would I fix this ...
-2
votes
5answers
70 views
output of c code
Why output is giving 3 , expecting -3. How to handle such preprocessing in c?
#include<stdio.h>
#include<math.h>
#define sq(x) ((x<0)?sqrt(-x):sqrt(x))
int main()
{
int x;
...