Advertisement
Guest User

giantmath

a guest
Mar 5th, 2014
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.55 KB | None | 0 0
  1. --[[This API is solely built for performing with
  2. numbers beyond normal levels (where floating-point
  3. precision errors, the thing that so happens to be
  4. the cause of the Far Lands begin to occur). It is
  5. not advised to use this for small math problems.]]
  6.  
  7. --[[All math is done in tables, so it is
  8. impossible to work with normal numbers.]]
  9.  
  10. --[[giantmath.convert() turns normal numbers to
  11. table numbers.]]
  12.  
  13. function convert(n)
  14.  
  15.   ntable = {}
  16.   d = math.floor(math.log10(n)) + 1
  17.   for i = 1, d do
  18.     set = d-(i-1)
  19.     enzyme = (n % 10^(set) - n % 10^(set-1)) / 10^(set-1)
  20.     ntable[i] = enzyme
  21.   end
  22.   return ntable  
  23. end
  24.    
  25.  
  26. --[[giantmath.move() is essential for keeping the
  27. table system stable.]]
  28.  
  29. function move(ntable)
  30.  
  31.   if ntable[0] ~= nil then
  32.     ntable[0] = nil
  33.   end
  34.  
  35.   if ntable[1] == 0 then
  36.     repeat
  37.       table.remove(ntable, 1)
  38.     until ntable[1] ~= 0
  39.   end
  40.   return ntable
  41. end
  42.        
  43. --[[giantmath.check() is required for checking
  44. carry-outs and borrows.]]
  45.  
  46. function check(ntable)
  47.  
  48.   --Carryout
  49.   local i = 0
  50.   repeat
  51.     i = i + 1
  52.     local itst = #ntable - (i - 1)
  53.     if ntable[itst] >= 10 then
  54.      
  55.       local ndivide = math.floor(ntable[itst] / 10)
  56.       local nmod = ntable[itst] % 10
  57.      
  58.       ntable[itst] = nmod
  59.       if not ntable[itst-1] then
  60.         ntable[itst-1] = 0
  61.       end
  62.       ntable[itst-1] = ntable[itst-1] + ndivide
  63.       move(ntable)
  64.      
  65.       --Can also be used for transforming whole
  66.       --numbers into segmented table numbers
  67.     end
  68.   until i == #ntable
  69.  
  70.   --Borrow
  71.   for i = 1, #ntable do
  72.     itst = #ntable - (i - 1)
  73.     if ntable[itst] < 0 then
  74.      
  75.       ntable[itst-1] = ntable[itst-1] - 1
  76.       ntable[itst] = ntable[itst] + 10
  77.    
  78.     end
  79.   end
  80.   return ntable
  81. end
  82.  
  83. --[[giantmath.align() is a base function used to
  84. align two tables to be prepared for
  85. manipulation.]]
  86.  
  87. function align(ntable1, ntable2)
  88.  
  89.   local x = #ntable1
  90.   local y = #ntable2
  91.   local state = 0
  92.  
  93.   if x == y then
  94.     state = 0
  95.   elseif x > y then
  96.     state = 1
  97.   elseif x < y then
  98.     state = 2
  99.   end
  100.  
  101.   local count = x - y
  102.   if state == 1 then
  103.     repeat
  104.       table.insert(ntable2, 1, "0")
  105.     until ntable2[x] ~= nil
  106.   elseif state == 2 then
  107.     repeat
  108.       table.insert(ntable1, 1, "0")
  109.     until ntable1[y] ~= nil
  110.   elseif state == 0 then
  111.     return ntable1, ntable2
  112.   end
  113.   return ntable1, ntable2
  114. end        
  115.  
  116.        
  117. --[[giantmath.add() well... adds up two GiantMath
  118. numbers.]]
  119.    
  120. function add(num, num2)
  121.  
  122.   local num, num2 = align(num, num2)
  123.   local numb = #num
  124.   num3 = {}
  125.  
  126.   for i = 1, numb do
  127.     num3[i] = num[i] + num2[i]
  128.   end
  129.   check(num3)
  130.   return num3
  131. end
  132.  
  133. function sub(num, num2)
  134.  
  135.   local num, num2 = align(num, num2)
  136.   local numb = #num
  137.   num3 = {}
  138.  
  139.   for i = 1, numb do
  140.     num3[i] = num[i] - num2[i]
  141.   end
  142.   check(num3)
  143.   return num3
  144. end
  145.  
  146. --giantmath.mul() multiplies.
  147.  
  148. function mul(num, num2)  
  149.   num3 = {}
  150.   for i1 = 1, #num2 do
  151.     calc = {}
  152.     --Multiplication
  153.     for i21 = 1, #num do
  154.       calc[i21] = num[i21] * num2[i1]
  155.       check(calc)
  156.     end
  157.    
  158.     --Appending
  159.     app = #calc
  160.     for i22 = 1, #num2-i1 do
  161.       calc[app+i22] = 0
  162.     end
  163.    
  164.     --Adding to num3
  165.     if num3[1] == nil then
  166.       local dig = #calc
  167.       for i23 = 1, dig do
  168.         num3[i23] = calc[i23]
  169.       end
  170.     else
  171.       num3 = add(calc, num3)
  172.     end
  173.   end
  174.   return(num3)
  175. end
  176.  
  177. num = convert(4321)
  178. num2 = convert(2396)
  179. num3 = mul(num, num2)
  180.  
  181. for i = 1, 7 do
  182.   write(num3[i])
  183. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement