FearlessFaa
FearlessFaa t1_j24vms7 wrote
Reply to comment by cthulhu944 in ELI5 How do calculators get the square root of random numbers? by Mikinak77
I think to the question it is unrelevant how physical calculators do it since physical calculators are not used much anymore. We are interested how to calculate square root i.e. different algorithms (=methods) used to calculate square root. It’s unrelevant what specific method calculators use.
FearlessFaa t1_j248t9v wrote
Reply to comment by mfb- in ELI5 How do calculators get the square root of random numbers? by Mikinak77
I state here two mathematical facts used in the answer:
- for any positive numbers m and n, where m < n and m, n > 0, the following is true:
- m < (m + n) / 2 < n,
- where (m + n) / 2 is the average of numbers m and n
- m < (m + n) / 2 < n,
- for any numbers x > 1, it is true that:
- x < x * x = x^2,
- where x^2 is the square of x
- x < x * x = x^2,
FearlessFaa t1_j2455m7 wrote
Reply to comment by cthulhu944 in ELI5 How do calculators get the square root of random numbers? by Mikinak77
Although partial sums of Taylor series use basic arithmetic operations so one could post an answer that calculates partial sums of Taylor series. We could then compare that with the average method described by other answers.
FearlessFaa t1_j2444p8 wrote
Reply to comment by mfb- in ELI5 How do calculators get the square root of random numbers? by Mikinak77
I'm not OP but thanks for your amazing answer!
FearlessFaa t1_j2agxgm wrote
Reply to comment by cthulhu944 in ELI5 How do calculators get the square root of random numbers? by Mikinak77
Thanks for you answer!