Big num representation

wavic

New member
Joined
Jul 6, 2016
Messages
2
Hello! This is my first post here.
First of I want to appologize for my English.
I don't know if here is the place for this post

I want to represent a really big number like sum of bases and powers.
For example: Big_Num = 60613**3184 + 775**43 + 7910**631 + 730771**11 + 9162*665 - or + 74

I am not a math guy nor study mathematics. I want to write a program and all is done except this final piece. It is not homework. I think it will need a heavy math here and I hope someone can help.
I need a general way to do this.
 
Hello! This is my first post here.
First of I want to appologize for my English.
I don't know if here is the place for this post

I want to represent a really big number like sum of bases and powers.
For example: Big_Num = 60613**3184 + 775**43 + 7910**631 + 730771**11 + 9162*665 - or + 74

I am not a math guy nor study mathematics. I want to write a program and all is done except this final piece. It is not homework. I think it will need a heavy math here and I hope someone can help.
I need a general way to do this.
Your question is probably:

How do I perform arithmetic operations on big numbers - correct to the last unit digit?

Ask a student of "computer science" - or professor - in your nearby university or community college. As far as I remember, you need to play around with bits and bytes to work with generally big numbers.
 
Top