The largenumber tag has no wiki summary.
0
votes
1answer
28 views
Finding Log of a large BigInteger not working correctly?
I'm trying to find the logarithm of a very large BigInteger in C#.
I don't care what the base of the logarithm is.
When I try this:
BigInteger b = 1000; // the base
// myBigInt is a huge BigInt i ...
0
votes
3answers
69 views
Compare very large numbers stored in string
What is the best way to compare two very large numbers contained in string literals?
For example I want to compare the followings:
...
0
votes
1answer
35 views
.NET Conversion of very large numbers to different number base
Is there any way to convert very large binary, decimal and hexadecimal numbers to each other?
I have to use it to simulate addressing process up to 256 bits.
I want to do the following conversions ...
3
votes
0answers
41 views
Karatsuba Multiplication for unequal size, non-power-of-2 operands
What's the most efficient way to implement Karatsuba large number multiplication with input operands of unequal size and whose size is not a power of 2 and perhaps not even an even number? Padding the ...
0
votes
2answers
81 views
Toom-Cook multiplication algorithm implementation
I have a task to implement Toom-Cook 3-way multiplication algorithm. I'm following description on wikipedia http://en.wikipedia.org/wiki/Toom%E2%80%93Cook_multiplication , and I managed to store two ...
0
votes
1answer
21 views
SQL Factorial ErlangC
I am trying to use this factorial in an ErlangC Function.. However my number of Agents can get up to the 300s. With this you can get pretty large numbers. For example. My question is how do I store ...
-5
votes
4answers
52 views
Int64 arithmetic error c#
Why is the output "0 and 0"? How do I fix it?
Int64 small= (long)0.25 * (long)Int64.MaxValue;
Int64 large = (long)0.75 * (long)Int64.MaxValue;
System.Console.WriteLine(small + " and " + large);
...
4
votes
3answers
146 views
How do I iterate over large numbers in Python using range()? [duplicate]
I want to iterate a large number such as 600851475143 using the range() function in Python. But whenever I run the program it gives me an OverflowError.
I have used the following code -
um = ...
3
votes
1answer
58 views
Android SQLiteDatabase - Storing and Comparing Large Numbers
I'm trying to store a very large number that is bigger than the 8 bytes that the INTEGER and REAL field types can hold. I need to be able to return the rows that contain a number in this field that's ...
-2
votes
4answers
76 views
Converting a large string of numbers requiring more than 64 bit representation without bigInteger [closed]
In java, I have to do math with numbers that require more than 64 bit representation.
Problem is, we have to act as if we don't know about BigInteger. So, without bigInteger, how could I convert the ...
0
votes
3answers
96 views
Converting a string array to a large number array
So, in Java I have a large number in the command argument, let's say 12345678910, and I cannot use bigInteger, and I already did:
String[] g = args[1].split("");
So, my string is put in a string ...
0
votes
3answers
123 views
PHP code is taking very much time in executing when handling large number
This is a simple program to find prime numbers which check for the division of a number at later stage.
I tried to short it by initially taking the integer square root of the number to break down the ...
2
votes
0answers
38 views
Workaround needed, PHP dechex maximum integer [duplicate]
I need to convert some large integers to hex but I am only getting partial results due to the dechex maximum integer limitation.
eg 1:
echo dechex(319259235818);
returns: 555555ea when it should ...
0
votes
5answers
126 views
Best coding language for dealing with large numbers (50000+ digits)
Can you recommend good languages to do math with large numbers in?
So far I've used Actionscript 2 and Objective-c and with Objective-c even using NSDecimalNumbers I was limited to 32 digits in my ...
1
vote
1answer
124 views
Finding the Nth term of Fibonacci for very large N
I have used the iterative method as well as the recursion method but in both cases I am not getting the result of fibo(10^6) faster ie. with O(logN) complexity.
Iterative method:
static BigInteger ...
1
vote
2answers
127 views
Binary Converter Not Working for Large Numbers
I'm writing C code that converts from an integer to its binary representation, reverses the binary and then converts back to an integer. It's working well, but I need it to work for input values up to ...
0
votes
0answers
72 views
Parsing large numbers in array with PHP
I have an array like this:
Array
(
[metadata] => Array
(
[count] => 1
[params] => Array
(
)
[timestamp] => ...
2
votes
2answers
107 views
How should I store a 256 bit number in C# and perform math operations on it?
I need to store a 256bit number in memory and perform basic math operations on it.
How do I go about doing this in C#? Is there a library I should be using?
0
votes
2answers
116 views
Surprising result from Math.pow(65,17) % 3233
For some reason when dealing with large numbers, the modulus operator doesnt give me the correct output, have a look at the code
double x = Math.pow(65,17) % 3233;
The output is supposed to be 2790
...
0
votes
1answer
627 views
How to calculate nCr modulo 1000000007 when n < 400000? [duplicate]
Possible Duplicate:
How can we compute N choose K modulus a prime number without overflow?
Modified paths Counting in a Rectangle
nCr mod p for large n and p is prime
A 2-D array of ...
1
vote
1answer
77 views
Having trouble with large numbers in Python
running into problems with:
from pylab import *
x=arange(0,365,1)
y = []
for j in x:
y.append(1-((math.factorial(365)/math.factorial(365-j))/(365**j)))
plot(x,y)
show()
Any thoughts? I'm ...
6
votes
3answers
311 views
Compute 4^x mod 2π for large x
I need to compute sin(4^x) with x > 1000 in Matlab, with is basically sin(4^x mod 2π) Since the values inside the sin function become very large, Matlab returns infinite for 4^1000. How can I ...
3
votes
1answer
180 views
Javascript: toString(36) for large integers
15955067621307336078.toString(36); returns '3d7vzfy5k2as8' in Javascript because the large integer cannot be represented (the correct answer is '3d7vzfy5k29ou').
Does someone have a clever function ...
4
votes
1answer
77 views
How can you handle absurdly large numbers?
There are some scenarios where programmers need or want to find grossly large numbers. These are often so large that they defy the programmer's comprehension. I'm talking about things like the ...
0
votes
3answers
132 views
android R.integer returns incorrect Extremely large value causing out of mem while creating array
I have declared few integer values in an xml and need to use the values in a Class to define the array size of an object.
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- ...
0
votes
0answers
57 views
Survivor pool probability of wining
This is a question of personal interest so not really important.
I am in a Survivor pool where you pick 10 people and get one point each week for each survivor on your list that is not eliminated. ...
0
votes
0answers
131 views
Arduino Mudolar Arithmetic for Large Numbers
I have written a code to go around the big numbers: The problem is, there is a slight problem I cant seem to catch it. It is accurate till exponent or b is 2, then 3-4, it is slightly off, then 5-6 it ...
0
votes
4answers
246 views
How to deal with very large numbers in python (19 digits) [closed]
In python I need to be able to cycle through a 19 digit number; what is the typical way of doing this? I'm using python 2.7.x; but will use python 3.x if there is a viable solution.
I have a large ...
0
votes
1answer
126 views
Passing large integers from Python to C/C++ with scipy.weave.inline
I found that a portion of my code written in python could be done faster in C. I used scipy.weave.inline to do this. seek_pos, one of the integers that I needed to pass into my C code, was (at ...
-5
votes
1answer
74 views
Can I input very large number with only integer variables(java)? [closed]
I want to calculate(sum) with very large two numbers
But when I use Scanner method there was the IOException when I input very large numbers.
There are some rules.
I can't use BigInterger
I can use ...
2
votes
1answer
809 views
C++ Large Number Arithmetic
I'm developing a class for large number arithmetic, it now knows how to do addition, handle cin and cout.
It, however has very limited and basic subtraction functionality, and does not know how to ...
0
votes
1answer
222 views
C++ data type for storing large number
I have a program whihch needs to store several numbers. The largest one can be of the order 10^15. How should I go about storing the number.
I'm using Gcc 4.3.2 compiler.
0
votes
4answers
147 views
Windows Application with many users and a single SQL database
I'm creating a windows application which is being used by many users say around 2000. I'm comparatively new to these kind of large volume database access projects. There are possibilities of multiple ...
2
votes
2answers
628 views
Coding Competitions: How to store large numbers and find its all combination modulus P
I have started doing competitive programming and most of the time i find that the input size of numbers is like
1 <= n <= 10^(500).
So i understand that it would be like 500 digits ...
1
vote
3answers
186 views
Multiplying a huge number times random() (Python)
Problem: Generate large binary strings (length 2000+). Do it quickly, as this generateRandom() function will be called 300,000 times in the algorithm.
Attempted Solutions: Generate 3 or 4 binary ...
3
votes
3answers
2k views
finding binomial co-effecient modulo prime number,Interview street challenge
I have done a lot of work on this but couldnt find the answer for larger test cases
Problem statement
In mathematics, binomial coefficients are a family of positive integers that occur as ...
2
votes
6answers
1k views
Find factorial of large numbers in Java
I tried to find the factorial of a large number e.g. 8785856 in a typical way using for-loop and double data type.
But it is displaying infinity as the result, may be because it is exceeding its ...
4
votes
1answer
361 views
What data structure to use with arbitrarily large integer numbers? [duplicate]
Possible Duplicate:
What data-structure should I use to create my own “BigInteger” class?
Out of pure interest, I am trying to design a type that can hold an arbitrarily large ...
4
votes
5answers
336 views
Best way to store large base B numbers?
What is the best way to store large base B numbers so that the operations like right shift and checking the least significant bit can be done efficiently?
Actually, I have came across an interview ...
0
votes
0answers
92 views
Using MySQL I’d like to pack 3, 63-bit numbers into a Decimal(65,0).
Using MySQL I’d like to pack 3, 64-bit numbers into a Decimal(65,0). I’ve tried things like:
DECLARE Pack DECIMAL(65,0);
SET Pack = first63bits;
SET Pack = Pack << 127;
SET Pack = Pack | ...
0
votes
0answers
107 views
c, hash, bignumber
I need to generate the hash of a string, sum two hashes, and calculate the power of the result.
I found a solution that generates a hash array[5], and I can calculate the power of big numbers with ...
0
votes
1answer
118 views
Large integers division error in python
I'm doing some calculations with large integers in Python and I'm getting some weird results.
>>> 94970389L * 94958913L / 775920493L
11622692L
>>> 94970389L * 94958913L
...
1
vote
3answers
455 views
Multiplication of large number with small number
I'm trying to compute a rather ugly integral using MATLAB. What I'm having problem with though is a part where I multiply a very big number (>10^300) with a very small number (<10^-300). MATLAB ...
3
votes
2answers
1k views
Summing Large Numbers
I have being doing some problems on the Project Euler website and have come across a problem. The Question asks,"Work out the first ten digits of the sum of the following one-hundred 50-digit ...
0
votes
1answer
151 views
Adding numbers of the type String? [closed]
Good morning all, I'm doing an assignment on Linked Data Structures and am having a problem adding two large numbers of the type String??? From a doubly linked list.
Adds a input HugeNumber to this ...
0
votes
2answers
346 views
java BigDecimal arithmaticException invalid operation
i cant find why i got a java.lang.ArithmeticException: Invalid operation while using big decimal
public static String E (int exponent, String value){
BigDecimal ten= new BigDecimal("10");
BigDecimal ...
1
vote
2answers
608 views
Counting Inversions for an Array of 100,000 Integers, Why Get a Negative Output?
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class InversionCounter {
public static void main(String[] args) {
Scanner scanner = null;
...
2
votes
1answer
178 views
GMP Overflow when using large numbers
I'm working on a program to factor very large numbers (20 digits or more) in C++ and am using GMP to deal with overflow issues. My program is working well for numbers of about 10 digits or less, but ...
3
votes
3answers
142 views
what options are there for representing numbers with more than 2^81 digits?
I came across an interesting math problem that would require me to do some artithmetic with numbers that have more than 281 digits. I know that its impossible to represent a number this large with a ...
-2
votes
3answers
260 views
Adding huge numbers in C [closed]
how could i prompt the user to enter two very large numbers and then calculate the sum?
like,
Enter the first number
1999999999999999999999999999999999999999999996667766999999
Enter the second ...




