| New Reply |
challenge: can you take the sqrt (n) using only one operation |
Share Thread | Thread Tools |
| Apr26-12, 09:02 AM | #18 |
|
|
challenge: can you take the sqrt (n) using only one operation
Here is how one takes the square root of 2 by using addition, the square root of 2 00 is 14 sums of the odd numbers 1+3+5+7+9+11+13+15+17+19+21+23+25+ 27=196
square root of 2 00 00 1s 141 sums, 2 00 00 00 is 1414 sums, etc. Not to say it's efficient, but it will work with only addition. |
| Apr26-12, 11:53 PM | #19 |
|
|
46225 -1, -3, -5.....etc. It would take (x =) 215 operations, using this elementary logics. But subtraction can be more efficient, as it allows to improve the basic, simple algorithm. Remember you have the right, following B (or N) scheme, ( see wiki-link above), to find a suitable x0, performing micro-operations in your mind. If you guess the first digit and the number of digits (4'62'25 [itex]\rightarrow[/itex] 2 | 0 | 0|), you may start subtracting 4 | 00 | 00 | : 46225 - 40000 = 6225, and then continue subtracting (200 x 2 +1) 401,...etc: (n² - 40000 = ) 6225 - 401, - 403, - 405....etc. That would take only 15 + 1 operations But, of course, it takes a more ingenious method, a more sophisticated logic to outwit Newton and Babylonian logics, weighted mean is simple but powerful. |
| Apr27-12, 01:35 AM | #20 |
|
|
I am no expert here at all, but is there a reason why no one posted this algorithm: http://www.homeschoolmath.net/teachi...-why-works.php on square roots?? It appears to use the least amount of operations that the OP was asking for. It was used back in the days of elementary school of the old days before the calculator was around.
|
| Apr27-12, 09:52 AM | #21 |
|
Mentor
|
I was taught this algorithm back when I was in about the 7th grade or so (in the 50s).
|
| Apr27-12, 11:38 AM | #22 |
|
|
This is exactly the same algorithm I posted here. I think it is likely the easiest one to use with pencil and paper. DonAntonio |
| Apr27-12, 04:46 PM | #23 |
|
|
I don't know if this is considered "Newton" a = x^2 +2x +1 then the square root of a = x+1
doing some manipulation we are left with x = (a - 1)/(x+2), seed x with something close or just use a, remember to add "1" for the result. In 10 iterations a=2, 1.414213584 calculator = 1.414213562 in 13 iterations same as calculator |
| Apr27-12, 11:46 PM | #24 |
|
|
); using only micro-operations, we had fun taking square/cube roots without pen and paper. LD is surely better then N: that isn't much, since N can be catastrophic (266 ops.!), if you choose the wrong x0. The weak point in LD is that the number of operations (*Nt=o) depends on individual skills (and luck) as it includes "trial-and-error", (the great advantage is that it requires only 3/4-digit ops). Mark44 , you are the greatest expert on algorithms, could you tell Altrepair if he can put that algorithm (LD) on a pocket calculator? What do you think of Newton's, could it be used in a more efficient way, skipping useless iterations? * The OP appeared confusing to a hasty reader because N[umber of operations] means 4 different things: a [square]root is found with Nt ops., iterating Ni times an algorithm that requires No ops. using N+ different op-signs. Nt = Ni * No (in the OP): if No = 1 [itex]\rightarrow[/itex] (N+ = 1, Nt = Ni), in the title: N+ =1 [itex]\rightarrow[/itex] No = 1 EDIT : [itex]\sqrt{354.045^2}[/itex]; (N) N+ = 3 , Nt = 20 (5*4); (B) N+ = 3, Nt = 15 (5*3); (LD, if Ni = 1 [itex]\rightarrow[/itex] Nt = No) N+ = 2, Nt=o = ?? |
| Apr28-12, 01:18 AM | #25 |
|
Mentor
|
|
| Apr29-12, 09:10 AM | #26 |
|
|
I used that term in the OP only beacause I read it in other threads, but I was afraid it was not appropriate, as , AFAIK, N (or B) is just an iterative method, and an iterated formula requires no logical decisions such as : "if A, ...then GOTO; if B...." Lastly, to explain the sense of my question ("could you tell Altrepair..."): LD is surely less expensive than N and B, especially if we count micro-operations, but is surely more cumbersome than both: my challenge was to find the most simple (and fastest), formula: LD is much more complex than N (B). 'Only one operation' may seem a tall order, but not only it is possible , it is not too difficult if you examine the structure of a square |
| Apr29-12, 12:55 PM | #27 |
|
|
Many languages have conditional expressions in addition to conditional statements: e.g. a function satisfying:
[tex]\textrm{Choose}(P, x, y) = \begin{cases} x & P \\ y & \neg P \end{cases}[/tex] where P is a truth value. In other languages, conditions return numeric values; e.g. true is 1 and false is 0, but sometimes the opposite. You can implement absolute value, for example, by [tex] |x| = x (1 - 2(x<0) )[/tex] Sometimes, various operations can be used as substitutes for tests. e.g. if you have the sign function available, you can use it in ways similar to what I just described when you just care about orderings: [tex] |x| = x \mathop{\textrm{sign}}(x)[/tex] |
| Apr29-12, 06:28 PM | #28 |
|
|
|
| Apr29-12, 11:45 PM | #29 |
|
|
, if you help me edit the OP, can you (or Mark44, or ... anyone) do it?
|
| Apr30-12, 12:51 PM | #30 |
|
Mentor
|
Wievers - ?? What does that mean? It's not in my dictionary. Did you mean "viewers"?
|
| May1-12, 12:54 AM | #31 |
|
|
It can be done in one step provided you specify the precision in advance.
You use the number as the index into an array containing the root. As long as the precision is specified, each real number is represented by an integer. Most modern computers will perform the indexed register load as an atomic operation (single step). |
| May2-12, 01:24 AM | #32 |
|
|
I suggested: (edited OP) |
| New Reply |
| Thread Tools | |
Similar Threads for: challenge: can you take the sqrt (n) using only one operation
|
||||
| Thread | Forum | Replies | ||
| Prove that the limit of sin(sqrt(x+1))-sin(sqrt(x-1)) at infinity doesn't exist | Calculus & Beyond Homework | 10 | ||
| Prove series is divergent (sqrt(n+1) - sqrt(n))/sqrt(n) | Calculus & Beyond Homework | 5 | ||
| Iterative square root? sqrt(2+sqrt(2+sqrt(... | General Math | 6 | ||
| Is there a way to show that sqrt(2)+sqrt(3)+sqrt(5) is algebraic over Q? | General Math | 4 | ||
| Proof that sqrt(6)-sqrt(2)-sqrt(3) is irrational | General Math | 10 | ||