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.
|
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. |
|||
| show 1 more comment |
|
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
|
|||||
|
|
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. |
|||||||||||||
|
|
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. |
|||
|
|
|
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. |
||||
|
|
na perfect square?' is simply 'iffsqrt(n)is an integer', which isn't much help programatically. – AakashM Nov 16 '11 at 11:16