BigInteger is an arbitrary-precision arithmetic type in Java, C#, and other languages. It behaves like a signed integer whose size is limited only by available memory.

learn more… | top users | synonyms

1
vote
1answer
30 views

Java - Public-private key encryption - how to calculate private key in RSA - UNSOLVED

I know there are lots of threads on this topic, but I could not find one that actually answers my question cohesively. I worked on a code for an RSA algorithm and it returns the incorrect number, ...
0
votes
0answers
13 views

BigInteger ModInverse

Is this VB calculation Dim s As BigInteger = (BigInteger.ModPow(k,q - 2,q) * (m + x * r)) Mod q a proper implementation of this written calculation I'm basing my calculation of the fact that ...
-2
votes
1answer
32 views

Biginteger in Schema Builder Laravel 4

How can I do a biginteger type in a table row with Schema builder in Laravel 4. Thx for all.
1
vote
3answers
39 views

Multiply long or BigInteger by double without loss of precision

I want to multiply a high precision integer (long or BigInteger) by a small double (think about something > 0 and < 1) and get the arithmetically rounded integer (long or BigInteger) of the exact ...
0
votes
0answers
42 views

Compute Generator(Primitive root) of large prime number

I was implementing diffie hellman based ring signature algorithm where I have to choose a large prime number and then its generator(primitive root) g. I am unable to understand how to write java code ...
0
votes
2answers
72 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
0answers
52 views

Bignum libraries

In considering a (C++ library) project, I've been looking at my options to represent signed/unsigned numbers where, while I expect the vast majority will be under 64-bits, I can't accept any fixed ...
3
votes
0answers
54 views

use nextprobableprime() of java to get previousprobableprime

I want to use nextProbablePrime() method of biginteger to get the prime that is lower than the given number instead of higher. Is it possible to get it using just one nextProbablePrime call?
1
vote
1answer
42 views

python long number data loss

i am just starting with python (python3) because i read its good for the euler project since it can handle very big numbers. now i am struggling with a quite simple problem of converting float to ...
3
votes
2answers
105 views

Why bigint lacks bitwise NOT operator (~~~) in F#?

Recently I've spotted an oddity in System.Numerics.BigInteger type definition that seemingly lacks a justification - this type does not support bitwise NOT operator (~~~ in F#). While other integer ...
6
votes
4answers
179 views

Calculate count of ones in result of 11^n

The following problem was asked in an interview. Given a number 11n (where n ∈ [0, 1000]), get the count of 1s in the result. For example, n=3, 113 = 1331, so the expected result would be 2. Or given ...
-1
votes
1answer
33 views

ECC inverse modulo strange time execution

hi guys and excuse my english i developed a big integer function c : #ifndef __BIGINTEGER_H #define __BIGINTEGER_H #include <stdlib.h> #include<stdint.h> #include <stdio.h> ...
0
votes
1answer
68 views

Adding two big numbers in x86 assembly

I need help with adding two big numbers (by big I mean that don't fit into eax for example). I know I have to use adc but it doesn't give me good results. SYSCALL = 0X80 STDIN = 0 STDOUT = 1 SYSREAD ...
0
votes
2answers
245 views

RSA Implementation in C#

I am trying to implement the RSA Algorithm in C#. The code below works when p and q are small, but not when trying to replicate RSA-100 or greater where p and q are very large. For example when: p = ...
0
votes
1answer
99 views

BigInteger source code

I'm trying to make a fast Fibonacci algorithm. It often needs to assign a BigInteger to another variable and because the C# BigInteger is implemented as a struct, it needs to copy the entire array, ...
-1
votes
2answers
91 views

brute force BigInteger Factorization

as you can tell by the title, I am working on trying to brute force the factorization of large integers whose factors are 2 primes. I was wondering if there was a way to use a for loop inside a for ...
0
votes
1answer
25 views

using java default binarysearch on biginteger

I have used the binarySearch on array of BigInteger, I tested with a few numbers, seems working fine. So I assume I don't need to implement/override any methods (e.g. Comparator) for it to work ...
0
votes
1answer
54 views

java BigInteger manipulation

The following code is for debugging: public static void main(String[] args) { BigInteger n = new BigInteger("10000000001"); String sn = n.toString(); char[] array = sn.toCharArray(); ...
2
votes
1answer
139 views

Getting a precise percent from two Big Integers

This obviously doesn't work. BigInteger Total = 1000000000000000000000000000000000000000000000000000022234235423534543; BigInteger Actual = 83450348250384508349058934085; string Percent = ...
0
votes
0answers
85 views

Bignum Arithmetic. C++ class

I recently started to study classes and operator overloading in C++, and wrote following Bignum class in order to pratice. Link: http://pastebin.com/cQNwRChx. It's not a final version, for example ...
0
votes
0answers
91 views

BigIntegers, gcd , modulus inverse to find public key

So, Im using java to find the public key of a RSA password. Right now Im unsure what I'm doing and also if it's correct. I have this information for the public key. C = 5449089907 n = p*q = ...
0
votes
1answer
38 views

Usage of BigIntegers and to the power off i

I found out longs wont cut it, as the numbers I'm calculating are to huge to fit. I'm struggling with the concept of BigInts. Lets say I have the following equation to perform. int p = 11549 int n ...
0
votes
4answers
135 views

Performace of BigDecimal vs. BigInteger and BigDecimal

I was debating whether to use BigDecimal and BigInteger or only BigDecimal to make my life easier and less converting back and forth. Is there a downside to only using BigDecimal in regards to ...
0
votes
0answers
63 views

GNU MP BigInt returns wrong results in ModPow method

I'm using the high-performance C++ GNU MP BigNum lib in C# with Emil's wrapper for some arbitrary-precision integer arithmetic. However the ModPow function is returning incorrect results, results that ...
-2
votes
3answers
61 views

JavaScript does not find object BigInteger [closed]

This is the first time I am trying to write javaScript. I have copied this code from the Internet var polynomial = function( x ){ alert(x); x = new BigInteger( x.toString,10); var y = new ...
0
votes
4answers
242 views

String to BigInteger java

I'm trying to read some really big numbers from stdin and adding them together. However, to add to BigInteger, i need to use BigInteger.valueOf(long);: private BigInteger sum = ...
3
votes
4answers
125 views

Storing a really large number in SQL Server

How would I store a large number like 92233720368547758079223372036854775807922337203699 in SQL Server 2008? Max bigint allows is 9223372036854775807 I guess one approach I could take is to do ...
1
vote
2answers
80 views

How to obtain the precision of BigInteger in Java

I'm implementing a custom validator in my web application that can validate a BigInteger property of a bean. This property is mapped to a Number(8, 0) type of Oracle table. Like BigDecimal, I don't ...
0
votes
0answers
38 views

How to make a Full text search Against BigInt?

Yesterday, I have done search based on vedio id, and based on text separately. But Now, I was asked to remove the searchType and search the given text against all id,title,description,keywords. ...
0
votes
1answer
73 views

How to use BigInteger with an array?

I'm working on altering my Fibonacci sequencer so that the numbers after reaching ~100th term don't wrap around and become negative. How do I use BigInteger in this code that I wrote: package ...
0
votes
0answers
15 views

Choosing position for Embedding

I have public key {e,n} which is generated at Receiver side and it is sent to sender for finding the pixel positions to embed the secret message as c = P^ e mod n, e is 65535 ...
-4
votes
2answers
75 views

BigInteger array with loop. Can't add

package fibonacci; import java.math.BigInteger; import java.math.*; public class fibo { public static void main(String[] args) { //number of elements to generate in a series ...
2
votes
3answers
250 views

Encrypting and Decrypting a 19-digits long BigInteger

How can I take a maximum 19-digits long BigInteger and encrypt it with the following rules: The result must be based on digits and lower-case English letters only. All outputs must have the same ...
2
votes
5answers
90 views

What is the point of using an int for the sign?

Because I needed to look at some methods in BigInteger, I DotPeeked into the assembly. And then I found something rather odd: internal int _sign; Why would you use an int for the sign of a number? ...
2
votes
1answer
35 views

Minimilaity of magnitude of BigInteger

The source code of BigInteger class has to say this regarding the representation of the magnitude of the BigInteger: The magnitude of this BigInteger, in big-endian order: the zeroth element of ...
0
votes
3answers
124 views

Are negative numbers that are left shifted *always* filled in with “1” instead of “0”?

I'm independently studying bit-shifting by porting some C++ functions to .NET's BigInteger. I noticed that when I shifted BigInteger the void was filled in with ones. I believe this has to do with ...
0
votes
1answer
70 views

How come I can't add 1 to a large number in javascript

var i = 20040115102010000; i++; returns 20040115102010000; Do I have to use a Big Number Library? Is there a bignum library for JavaScript? This number was already in floating point format and I ...
2
votes
4answers
154 views

How much space does BigInteger use?

How many bytes of memory does a BigInteger object use in general ?
1
vote
1answer
36 views

JPA primary key for MySQL

I have a table which has the primary key of type BIGINT UNSIGNED. Now, how can I model this key in JPA? If I use java.math.BigInteger, JPA will not accept it. If I use Long, then the type of JPA ...
-1
votes
3answers
145 views

Serializing and then de-serializing an arrayList<BigInteger> written to a file [closed]

I have an ArrayList of BigInteger which I am writing to a ByteArrayOutputStream and then a file. The problem is that during deserialization I get this error: java.util.ArrayList; local class ...
1
vote
2answers
48 views

Converting small number to BigInteger type in C#

I need to convert small number to a BigInteger type but it results zero. consider following code: BigInteger x = new BigInteger(0.6); var res = BigInteger.Pow(x, 10) / Factorial(30); in the first ...
15
votes
2answers
373 views

How do I implement BN_num_bytes() (and BN_num_bits() ) in C#?

I'm porting this line from C++ to C#, and I'm not an experienced C++ programmer: unsigned int nSize = BN_num_bytes(this); In .NET I'm using System.Numerics.BigInteger BigInteger num = ...
-1
votes
3answers
131 views

Should I be able to bit-shift >> a byte array?

I am trying to understand why BigInteger is throwing an overflow exception. I tried to visualize this by converting the BigInteger to a byte[] and iteratively incrementing the shift until I see where ...
3
votes
3answers
140 views

BigInteger.ToString(“x”) doesn't properly print negative hex numbers

I need to print out a BigInteger as a negative number, however the Hex overload of ToString("X") is incorrect. BigInteger be1 = new BigInteger(); be1 = 0x7e; ...
1
vote
0answers
93 views

Converting C++ bitwise and OpenSSL BigNumber operations to C#

I'm trying to port a C++ function that uses Bitwise operations to C#, but am running into issues. Namely when the input is 0x01123456 the C# returns zero, but it should be 12 BN_set_word and other ...
0
votes
2answers
111 views

BigInteger Modulo '%' Operation & Less Than / More Than Operations

Hi I have an algorithm in which I need to apply operations to BigInt's. I understand that BigInt's can be manipulated using the Maths class such as: import java.math.*; BigInteger a; BigInteger b = ...
1
vote
0answers
32 views

Converting Java to Perl (BigInteger)

I am trying converting java code to perl code. ------------------------- BigInteger(byte[] val) ------------------------- BigInteger This is Java BigInteger constructor. Perl Math::BigInt doesn't ...
2
votes
2answers
119 views

Very Very Large Number Python

I've searched the databases and cookbooks but can't seem to find the right answer. I have a very simple python code which sums up self powers in a range. I need the last ten digits of this very, very ...
0
votes
1answer
65 views

Serialization BigInteger: signum-magnitude mismatch

I'm encrypting data using Kaffe JVM (equivalent to java 1.1) and trying decrypting data with JDK7. In my algorithm I use BigInteger (RSA encription). When I tested the application in JDK, all its OK, ...
0
votes
3answers
64 views

Dynamic initialisation of array name in java?

I want to initialise a lot of arrays.The name of the array follows a sequence like array12,array13,array14,......array19,array22,array23...........array99. Actually I have an array1 which contains ...

1 2 3 4 5 11