Omnimaga

Calculator Community => TI Calculators => TI-BASIC => Topic started by: AngelFish on February 16, 2011, 03:03:09 am

Title: Arbitrary precision operations
Post by: AngelFish on February 16, 2011, 03:03:09 am
(http://img.removedfromgame.com/imgs/Add_it.gif)

I made this little utility in response to a topic on TI-BASIC Developer. It's an addition utility that can get around the OS imposed arithmetic limit of 14 digits of precision. Nothing special and not worth releasing on Ticalc.org, but I hope someone finds it useful.
Title: Re: Arbitrary precision operations
Post by: meishe91 on February 16, 2011, 04:14:41 pm
What exactly is it doing? I'm having a hard time following the code.
Title: Re: Arbitrary precision operations
Post by: Builderboy on February 16, 2011, 06:45:15 pm
I'm a bit confused as well...  isn't 123456789+1 perfectly within the realms of what the calc can do?
Title: Re: Arbitrary precision operations
Post by: Deep Toaster on February 16, 2011, 07:06:42 pm
Are you saying it rounds to a certain precision? I'm a bit confused as to how it works, though.
Title: Re: Arbitrary precision operations
Post by: Ashbad on February 16, 2011, 07:09:33 pm
I'm a bit confused as well...  isn't 123456789+1 perfectly within the realms of what the calc can do?

(methinks he just used it as a quick example)
Title: Re: Arbitrary precision operations
Post by: Builderboy on February 16, 2011, 07:11:46 pm
but how could the program have calculated 123456789+1 if he typed that into the homescreen and not into the program?  What is this doing exactly?
Title: Re: Arbitrary precision operations
Post by: AngelFish on February 16, 2011, 07:19:43 pm
I used 123456789+1 as an example to prove that the program gets the correct results. If I had used 1E23+1, you would have a more difficult time confirming it. The program basically works by entering digits of the number into the list entries (notice L1(1)=123, L1(2)=456, etc...) and then running the program. It returns the answer in L1.
Title: Re: Arbitrary precision operations
Post by: Builderboy on February 16, 2011, 07:23:42 pm
Oooooh I get it now :D I didn't connect that what was on the homescreen was just a demonstration and not actual program XD Nice!  How high have you tested it with?
Title: Re: Arbitrary precision operations
Post by: Deep Toaster on February 16, 2011, 07:26:18 pm
Oh, I see. I didn't notice L1 changed after running prgmADD :D

EDIT: 3001: Final Odyssey
Title: Re: Arbitrary precision operations
Post by: meishe91 on February 16, 2011, 08:12:25 pm
Ah ok. I gotcha. Didn't make the connection that what was in L1 was the number separated. I have no idea what this would be used for really though.

Just curious, but once you reassemble a number that is greater than fourteen digits won't it just round it anyways when it is displayed?
Title: Re: Arbitrary precision operations
Post by: AngelFish on February 16, 2011, 09:03:12 pm
Oooooh I get it now :D I didn't connect that what was on the homescreen was just a demonstration and not actual program XD Nice!  How high have you tested it with?

Um, 123456789 :P

The principle is sound as long as the values in each cell don't exceed 14 digits. In theory, it can handle numbers up to 10^13986, which is 10^13786 times larger than a Googleplex. In short, feel free to enumerate all of the atoms in the universe in your calculator  ;D

@Meishe, the number displayed is not the number stored. You can still recall L1(A) and get the proper answer, even if the display is truncated.
Title: Re: Arbitrary precision operations
Post by: ztrumpet on February 16, 2011, 09:05:18 pm
Then, isn't the max 10^2997 because of the limit of the dimensions of a list?
Title: Re: Arbitrary precision operations
Post by: AngelFish on February 16, 2011, 09:06:41 pm
Nope. It's 10^(Precision of list elements*999)

Either way, it's insanely high. 10^2997 is still larger than all of the atoms in the universe.

EDIT: My respect is the answer to Life, the Universe, and Everything.
Title: Re: Arbitrary precision operations
Post by: Deep Toaster on February 16, 2011, 10:37:16 pm
Nope. It's 10^(Precision of list elements*999)

Either way, it's insanely high. 10^2997 is still larger than all of the atoms in the universe.

EDIT: My respect is the answer to Life, the Universe, and Everything.

Nah, it's a bit more.

But back to the topic, there's still a practical limit based on how much free RAM you have ;)

Still, this is a lot more accurate than the calculator usually holds, great for calculating large operations. Mind if I look in your code? :D
Title: Re: Arbitrary precision operations
Post by: AngelFish on February 16, 2011, 10:39:01 pm
Nope. Be prepared to cringe at my abuse of the DSC<( command, though.
Title: Re: Arbitrary precision operations
Post by: Deep Toaster on February 16, 2011, 10:43:42 pm
As long as it's not with labels I think I'd be fine :)

EDIT: Oh ... oh God...

EDIT2: Still pretty fast, so great job :D

EDIT3: Those are some awesome optimizations...
Title: Re: Arbitrary precision operations
Post by: AngelFish on February 16, 2011, 10:44:30 pm
Er...

>_>
<_<

EDIT: Optimizations?  ???
Title: Re: Arbitrary precision operations
Post by: Deep Toaster on February 16, 2011, 10:47:03 pm
Er...

>_>
<_<

EDIT: Optimizations?  ???

I mean the way you set it up. Coulda used some For(s, though ;)
Title: Re: Arbitrary precision operations
Post by: AngelFish on February 16, 2011, 10:48:48 pm
For( loops would have required that I update more variables than were necessary and I didn't want to destroy to many global variables when there are only 37 available. DSC<( loops were better in my opinion.
Title: Re: Arbitrary precision operations
Post by: Deep Toaster on February 16, 2011, 10:49:22 pm
Hmm, for

Code: (TI-BASIC) [Select]
:Lbl 01
:L1(D)+L2(D→L1(D
:DS<(D,1
:Goto 01

why not just L1+L2→L1?
Title: Re: Arbitrary precision operations
Post by: AngelFish on February 16, 2011, 10:50:15 pm
No idea. It was like 1 AM when I wrote that  :P
Title: Re: Arbitrary precision operations
Post by: Deep Toaster on February 16, 2011, 10:53:33 pm
Oh, and another huge optimization:

Instead of

Code: (TI-BASIC) [Select]
:DelVar Bdim(L1→D
:dim(L2→E
:If D>E:Then
:L2→L3
:L1→L2
:0L2→L2
:dim(L3→B
:D→C
:Lbl 00
:L3(B→L2(C
:C-1→C
:DS<(B,1
:Goto 00
:End

just

Code: (TI-BASIC) [Select]
:DelVar L3D-E→dim(L3
:augment(L3,L2→L2

Smaller and faster? :)
Title: Re: Arbitrary precision operations
Post by: AngelFish on February 16, 2011, 10:55:41 pm
/me facepalms

Thanks DThought
Title: Re: Arbitrary precision operations
Post by: Deep Toaster on February 16, 2011, 10:58:11 pm
Actually...

Code: (TI-BASIC) [Select]
:dim(L1)-dim(L2
:If Ans
:not(binomcdf(Ans,0→L2
:L1+L2→L1

Destroys no variables. At all. And only 36 bytes :D

EDIT: I really miss programming BASIC now...

EDIT2: Edited to fix a bug. Now at 40 bytes.
Title: Re: Arbitrary precision operations
Post by: Hot_Dog on February 16, 2011, 11:17:41 pm
Can you show a screenshot of 15-digit precision?
Title: Re: Arbitrary precision operations
Post by: AngelFish on February 16, 2011, 11:22:07 pm
Sure. I'll post something later tonight when I build up an interface around this.

EDIT: DThought, Neither of our routines propagates the carry correctly. I'll fix it in the update.
Title: Re: Arbitrary precision operations
Post by: Deep Toaster on February 16, 2011, 11:39:37 pm
Hmm, you have something figured out already?

And yeah, forgot about the carry...
Title: Re: Arbitrary precision operations
Post by: AngelFish on February 17, 2011, 03:19:11 am
(http://img.removedfromgame.com/imgs/ADD.gif)

The operation 31,415,926,535,897,932,384+115.

Both my program and wolfram alpha return 31,415,926,535,897,932,499 which is an odd number. TI-OS returns that the number is even.

I'm working on converting the answer back to a more easily readable string format, but that's not yet finished.

BTW: For the curious, yes, that is indeed pi*10^20.

EDIT: Also, to demonstrate carrying:
(http://img.removedfromgame.com/imgs/ADD2.gif)
Title: Re: Arbitrary precision operations
Post by: Hot_Dog on February 17, 2011, 03:49:50 am
Once you get the string format done, this is going to rock!  It does already, but still
Title: Re: Arbitrary precision operations
Post by: AngelFish on February 17, 2011, 03:50:36 am
Thanks  :)
Title: Re: Arbitrary precision operations
Post by: meishe91 on February 17, 2011, 03:48:51 pm
No offence but I'm still incredibly confused on what this does exactly ??? Could someone please explain?
Title: Re: Arbitrary precision operations
Post by: Builderboy on February 17, 2011, 03:50:32 pm
You have a number in L1, and a number in L2, the program merely does arithmetic on them.  The difference is that since you are storing them in a List, you have an arbitrary amount of digits to work with.  (123456789 would be stored as {123,456,789})
Title: Re: Arbitrary precision operations
Post by: meishe91 on February 17, 2011, 07:23:17 pm
Ah ok, that's what I thought but it sounded like Qwerty said that isn't what happened. What is the number in L2 for?
Title: Re: Arbitrary precision operations
Post by: AngelFish on February 17, 2011, 07:24:41 pm
That's the second operand. The program basically does this:

<Number in L1> + <Number in L2> ->L1
Title: Re: Arbitrary precision operations
Post by: meishe91 on February 17, 2011, 08:08:28 pm
Ah ok. Just curious, but why does there need to be an operation preformed? Couldn't you just take the number and store it?
Title: Re: Arbitrary precision operations
Post by: AngelFish on February 17, 2011, 08:09:51 pm
Um, the point of the program is to do arbitrary precision arithmetic. If it didn't perform arbitrary precision operations (+,-,*,/), it wouldn't need to exist.

EDIT: Finished the List-> String converter. It's slow, but I kind of had to abuse the math commands to get it to work at all because of the 7 digits per cell formatting.
Title: Re: Arbitrary precision operations
Post by: meishe91 on February 17, 2011, 09:05:24 pm
Ohhhh ok. Sorry, been quite tired. I got it now. I thought the point was just to be able to store arbitrarily large numbers.

And cool, do you mind posting the list to string converter?

Edit:
Is it something like:

Code: [Select]
{0,1→L3
"_→Str1
For(A,1,dim(L1
{0,L1(A→L4
LinReg(ax+b) L3,L4,Y1
Equ►String(Y1,Str2
Str1+sub(Str2,1,length(Str2)-3→Str1
End
sub(Ans,2,length(Ans)-1→Str1
Title: Re: Arbitrary precision operations
Post by: AngelFish on February 17, 2011, 09:59:48 pm
That's the general idea, although there's obviously some extra code to account for zero extensions.

EDIT: I accidentally my sentence.
Title: Re: Arbitrary precision operations
Post by: meishe91 on February 17, 2011, 10:06:12 pm
Ah ok. Ya, I would have incorporated that but I don't know how you are storing just zeros into one list element so wasn't sure what to do.
Title: Re: Arbitrary precision operations
Post by: Xeda112358 on February 17, 2011, 10:07:45 pm
Wait so it is always 7 digits or is it just uniform digits?
Title: Re: Arbitrary precision operations
Post by: AngelFish on February 17, 2011, 10:09:53 pm
It's always 7 digits per list element, although the user can enter as many or as few digits as they'd like (up to 6,993 digits per operand). The program itself handles all of the aligning. You just need to tell it what to operate on.
Title: Re: Arbitrary precision operations
Post by: Xeda112358 on February 17, 2011, 10:11:49 pm
Okay, so that program >_> It might be easier now... I thought it had to look for the longest string of numbers and make each element use that many digits :D
Title: Re: Arbitrary precision operations
Post by: Deep Toaster on February 17, 2011, 11:00:38 pm
It's always 7 digits per list element, although the user can enter as many or as few digits as they'd like (up to 6,993 digits per operand). The program itself handles all of the aligning. You just need to tell it what to operate on.

Hmm, why not 6? That shows up the best in the list editor.

But then since you're converting it to a string anyway, I guess it doesn't matter. You could use 12 for more data in fewer bytes :D
Title: Re: Arbitrary precision operations
Post by: ztrumpet on February 17, 2011, 11:04:42 pm
You could use up to 13 if you really wanted to conserve space. ;)

I like the output as a String idea. :)
Title: Re: Arbitrary precision operations
Post by: AngelFish on February 17, 2011, 11:20:06 pm
Okay, torture test demo time.

(http://img.removedfromgame.com/imgs/ADDdemo.gif)


Here's a pre-alpha version, using horrible coding techniques that I'll improve by the final version.
Title: Re: Arbitrary precision operations
Post by: calcdude84se on February 22, 2011, 07:43:48 am
Nice. :D
What are its current speeds? (Especially for multiplication and division)
Title: Re: Arbitrary precision operations
Post by: AngelFish on March 05, 2011, 05:00:54 pm
Added support for signed numbers and I'm working on decimals. It also eliminates the need for a a separate subtraction routine from the addition routine, as all I have to do for subtraction is set a flag variable in the addition routine.
Title: Re: Arbitrary precision operations
Post by: willrandship on March 05, 2011, 08:54:50 pm
So, now can I haz RSA cracker on my calc? :P

Hey, it can handle numbers that large :P Nice work.
Title: Re: Arbitrary precision operations
Post by: AngelFish on March 05, 2011, 11:44:15 pm
So, now can I haz RSA cracker on my calc? :P

Hey, it can handle numbers that large :P Nice work.

Sure, if you don't mind 10 minutes a number  <_<
Title: Re: Arbitrary precision operations
Post by: calcdude84se on March 06, 2011, 10:48:51 pm
Only 10 minutes to factor the Nspire key? :P
More seriously, can't wait to see further features and speed increases. :D