Top "Square-root" questions

A square root of a number A is a number y such that y^2 = A, or, in other words, a number y whose square (the result of multiplying the number by itself, or y × y) is A.

Print a square root symbol (√) in java

I am just wondering how do you print a square root(√) character in Java? I am assuming you use its …

java unicode printing square-root
Binary Search to Compute Square root (Java)

I need help writing a program that uses binary search to recursively compute a square root (rounded down to the …

java recursion binary-search square-root
How does the computer calculate Square roots?

How does the computer calculate Square roots ? I mean what is going on there! How does it process it!! Does …

c++ math process low-level square-root
Finding Square Root in C programming

I am trying to find the square root in C programming. But I am getting error as undefined reference to …

c square-root
square numbers Java

"An array is used to store ten integer numbers. Write a Java program that determines and print the square numbers …

java square-root
How to include Square root sign as depicted in the following image in android?

I need to include the following square root sign in my android as a Text resource in Button control. Any …

android square-root
Why is my call of the CUDA math library sqrt() function failing?

I am new to Cuda, I have the following function: __global__ void square(float *myArrayGPU) { myArrayGPU[threadIdx.x] = sqrt(threadIdx.…

c++ c math cuda square-root
Distance between two points without using the square root

Is it possible to calculate the distance between two points without having to use the math.h library? I know …

c distance points square-root
square root by bit shift

I am studying the fast square root algorithm by bit shift. I was stuck by the code from wikipedia. short …

bit-shift square-root
Difference between **(1/2), math.sqrt and cmath.sqrt?

What is the difference between x**(1/2) , math.sqrt() and cmath.sqrt()? Why does cmath.sqrt() get complex roots of a …

python math square-root sqrt