Roots and powers playing nicely together... - Printable Version +- QB64 Phoenix Edition (https://staging.qb64phoenix.com) +-- Forum: Chatting and Socializing (https://staging.qb64phoenix.com/forumdisplay.php?fid=11) +--- Forum: General Discussion (https://staging.qb64phoenix.com/forumdisplay.php?fid=2) +--- Thread: Roots and powers playing nicely together... (/showthread.php?tid=929) |
RE: Roots and powers playing nicely together... - PhilOfPerth - 09-30-2022 Excuse me if I'm wrong, but should that be x^(1/100) ? I think powers are resolved before / without parenthesis. RE: Roots and powers playing nicely together... - Pete - 09-30-2022 Example: 8^.02 To do that using long division requires making a fraction of .02 as 02/100 = 2 /1000 = 1/500. So now here is the labor intensive part, 8 root of 500 to the power of 1. Even the structure needed in Pascal's triangle is huge at 500 iterations. As tested, I can get 8 to the root of 200 in a couple of seconds, but beyond that, things are hanging again, and will need to be investigated. So imagine the system strain with 8^.0002. 50,000 iterations. To address the speed issues, yes, you do things similar to what you are proposing. The rabbit hole we have here is just how many conditions need to be meet to break down the excessive iterations. Pete Edit: It worked, it was just very slow at 8 root 500. RE: Roots and powers playing nicely together... - bplus - 09-30-2022 (09-30-2022, 04:51 AM)PhilOfPerth Wrote: Excuse me if I'm wrong, but should that be x^(1/100) ? I think powers are resolved before / without parenthesis. You are correct. But my point was that if you can do x ^ (1/100 = .01) you could do x ^ (3/100 = .03) = (x^.01) * (x^.01) * (x^.01) To show Pete that doing x ^ (.0y) calculations are possible (just not practical but we know already string math is the definition of NOT practical). RE: Roots and powers playing nicely together... - Kernelpanic - 09-30-2022 (09-30-2022, 04:51 AM)PhilOfPerth Wrote: Excuse me if I'm wrong, but should that be x^(1/100) ? I think powers are resolved before / without parenthesis. Why should not that be right? I do not understand. I see no violation of a mathematical law. Code: (Select All) 'Beispiel x ^ (a/b) - 30. Sept. 2022 RE: Roots and powers playing nicely together... - Pete - 09-30-2022 Well math manipulation for this process would have to be on the front end. Speed is not the issue on the back end, where the root calculations are now just raised to a power a single time, or multiplied together, as bplus has demonstrated. The real slow down in long division root math is the binomial expansion equation. Those calculations get longer and longer with the component numbers getting larger and larger each iteration. So for .1, we use just 10 iterations, not bad, but with .001 we need 1,000 comprised with very huge numbers. That takes minutes to calculate, not seconds. Remember in regular long division where you bring down just one number per iteration to combine with the remainder? In root long division of .001, you would need to bring down 1,000 digits for every iteration. So if your remainder is something small like 3, your next division step is to find the binomial expansion that is closest to 3.0e+1000. So thinking this through... 8^.001 can be root calculated as (8 root 1000) ^ 1 = 1.0020816050796327943603513248911. I wonder if there is a way to reduce the root 1000 while keeping the power as a WHOLE number? Also... As a hybrid model, we could always use numeric computer math DOUBLE to produce results to 16-digits for numbers 8-digits or less and get a slightly inaccurate result like: (8 root 1000) ^ 1 = 1.002081605079633 but that last digit should be a 2, not a 3, but the whole concept of using string math is to avoid these inaccuracies. Pete RE: Roots and powers playing nicely together... - Pete - 09-30-2022 Got it. So as Mark was pointing out, factoring. I just need to apply it to the front end where... 8 root 1000 becomes three iterations: 8 root 10 = 1.2311444133 root 10 = 1.0210121257 root 10 = 1.0020816051. That will speed this up "exponentially" but how about other conditions that are not as straight forward? I'm wondering how much A.I. (conditional routines) will need to be added to keep chopping apart powers / roots? Pete RE: Roots and powers playing nicely together... - Kernelpanic - 09-30-2022 (09-30-2022, 04:51 AM)PhilOfPerth Wrote: Excuse me if I'm wrong, but should that be x^(1/100) ? I think powers are resolved before / without parenthesis. And back to the roots: Code: (Select All) 'Beispiel x ^ (a/b) - 30. Sept. 2022 RE: Roots and powers playing nicely together... - Pete - 09-30-2022 Okay, so for something like 8 root of 1025 = 1.0020307827 let's try... 10 * 10 * 10 * 1.025 8 root 10 = 1.2311444133 root of 10 = 1.0210121257 root 10 = 1.0020816051 root 1.025 = 1.0020307827 Pete RE: Roots and powers playing nicely together... - Pete - 09-30-2022 Well to continue this, I have to put together some sort of an algorithm that limits roots to 10 and factors out ever root above 10 to a number of given iterations. Pete RE: Roots and powers playing nicely together... - bplus - 09-30-2022 (09-30-2022, 08:08 PM)Pete Wrote: Okay, so for something like 8 root of 1025 = 1.0020307827 let's try... 10 * 10 * 10 * 1.025You sure have funny way of saying X to the power of Y! (09-30-2022, 09:06 PM)Pete Wrote: Well to continue this, I have to put together some sort of an algorithm that limits roots to 10 and factors out ever root above 10 to a number of given iterations. Here's another approach, the cornerstone being what we rejected earlier ie natural logs and e^x: Code: (Select All) Option _Explicit |