Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can you test whether the square root of a number will be rational or not?

Is this even possible?

I need this because I need to work out whether to display a number as a surd or not in a maths app I'm developing at the moment.

share|improve this question
This may be more adpt for math.stackexchange.com. They would give you the slgorithm which you can then implement here. – Dheer Nov 16 '11 at 11:11
2  
@Dheer for proof the fact that he's actually searching for perfect squares, yes; but for a computational approach to testing that, this is the right place. After all, for a mathematician the answer to 'is n a perfect square?' is simply 'iff sqrt(n) is an integer', which isn't much help programatically. – AakashM Nov 16 '11 at 11:16
what do you mean by number? integer, rational? floating point? – jk. Nov 16 '11 at 11:20
float/double (in terms of datatype) but it's likely to be an integer (not in terms of the datatype) – Alex Coplan Nov 16 '11 at 11:22
show 1 more comment

4 Answers

up vote 2 down vote accepted

After reading comments and the answers to another question I have since asked, I realised that the problem came from a floating point inaccuracy which meant that some values (eg 0.01) would fail the logical test at the end of the program. I have amended it to use NSDecimalNumber variables instead.

double num, originalnum, multiplier;
int a;

NSLog(@"Enter a number");
scanf("%lf", &num);
//keep a copy of the original number
originalnum = num;

//increases the number until it is an integer, and stores the amount of times it does it in a
for (a=1; fmod(num, 1) != 0 ; a++) {
    num *= 10;
}

a--;
//when square-rooted the decimal points have to be added back in
multiplier = pow(10, (a/2));
if (fmod(originalnum, 1) != 0) {
    multiplier = 10;
}

NSDecimalNumber *temp = [NSDecimalNumber decimalNumberWithDecimal:[[NSNumber numberWithDouble:sqrt(num)/multiplier] decimalValue]];
NSDecimalNumber *result = [temp decimalNumberByMultiplyingBy:temp];
NSDecimalNumber *originum = [NSDecimalNumber decimalNumberWithDecimal:[[NSNumber numberWithDouble:originalnum] decimalValue]];

if ((fmod(sqrt(num), 1) == 0) && ([result isEqualToNumber:originum])) {
    NSLog(@"The square root of %g is %@", originalnum, temp);
}
else {
    NSLog(@"The square root of this number is irrational");
}
share|improve this answer
-1 testing this algorithm with 1f/3f squared, with 0.1f squared, with 0.101f squared results in "The square root of this number is irrational". You need to represent the numerator and devisor exactly as integers and test whether they are exact squares. – Pete Kirkham Nov 22 '11 at 19:19
@PeteKirkham Please see updated answer – Luke Pullman Nov 22 '11 at 21:15

For integer inputs, only the square roots of the square numbers are rationals. So your problem boils down to find if your number is a square number. Compare the question: What's a good algorithm to determine if an input is a perfect square?.

If you have rational numbers as inputs (that is, a number given as the ratio between two integer numbers), check that both divisor and dividend are perfect squares.

For floating-point values, there is probably no solution because you can't check if a number is rational with the truncated decimal representation.

share|improve this answer
2  
-1: You've forgotten that square roots can be taken on any number, not just integers. Quoth Wikipedia: The square root of x is rational if and only if x is a rational number that can be represented as a ratio of two perfect squares.. – sarnold Nov 16 '11 at 11:22
@sarnold: Good point. – thiton Nov 16 '11 at 11:23
Downvote happily removed with edit. :) – sarnold Nov 16 '11 at 11:27
All finite floating point numbers are rational. There's no checking to do. – Stephen Canon Nov 16 '11 at 13:21
@StephenCanon: But each represents an infinite number of rational and irrational numbers that all got the same finite FP representation. – thiton Nov 16 '11 at 13:24
show 2 more comments

From wikipedia: The square root of x is rational if and only if x is a rational number that can be represented as a ratio of two perfect squares.

So you need to find a rational approxmiation for your input number. So far the only algorithm I've nailed down that does this task is written in Saturn Assembler for the HP48 series of calculators.

share|improve this answer

If you're dealing with integers, note that a positive integer has a rational square root if and only if it has an integer square root, that is, if it is a perfect square. For information on testing for that, please see this amazing StackOverflow question.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.