Tagged Questions
20
votes
9answers
662 views
Does a range of integers contain at least one perfect square?
Given two integers a and b, is there an efficient way to test whether there is another integer n such that a ≤ n2 < b?
I do not need to know n, only whether at least one such n ...
6
votes
6answers
1k views
5
votes
5answers
198 views
Calculate Nth root with integer arithmetic
There are a couple of ways to find integer square roots using only integer arithmetic. For example this one. It makes for interesting reading and also a very interesting theory, particularly for my ...
4
votes
3answers
116 views
Finding square root as float from int and remainder?
I'm looking right now at particular algorithm for calculating square root which returns the integer part of the square root and the remainder.
So for example: mysqrt(140) = 11*11 + 19 = integer 11, ...
2
votes
2answers
917 views
How to Calculate the Square Root of a Float in C#
How to Calculate the Square Root of a Float in C# .. Like Core.Sqrt in XNA
2
votes
6answers
1k views
How do I compute the square root of a number without using builtins?
how can i create method which return sqrt of given nunber? for example sqrt(16) returns 4
and sqrt(5) returns 2.3... please help i am using java and know Math.sqrt() API function but i need ...
2
votes
3answers
642 views
How to do the square root in PowerPoint VBA?
Here is some math code that adds A to B:
Sub math()
A = 23
B = 2
ABSumTotal = A + B
strMsg = "The answer is " & "$" & ABSumTotal & "."
MsgBox strMsg
End Sub
But how ...
1
vote
4answers
133 views
Finding square root of 2 upto more than 100 decimal places
i tried to get this work by using Newton's method as described here: wiki using the following code, but the problem is that it is giving accurate result only upto 16 decimal places. I tried to ...
1
vote
3answers
265 views
Fastest algorithm of getting precise answer (not approximated) when square-rooting
Sorry for unclear title, but I don't know how to state it properly (feel free to edit), so I will give example:
sqrt(108) ~ 10.39... BUT I want it to be like this sqrt(108)=6*sqrt(3) so it means ...
0
votes
5answers
80 views
Can a square root of a non-integer become an integer due to floating point rounding errors?
In another unrelated Internet forum a question was asked on how to check if a square root of a given number is an integer. Now in and of itself that is a trivial homework question, but I started to ...
0
votes
3answers
563 views
Simplify radical expression in java
Here is my method so far:
public static int[] simplifyRadical(int number) {
int[] result = new int[2];
for (int i = 1; i < number / 2; i++) {
if ((i % number == 0)) {
...