1
vote
2answers
49 views
Calculating roots with bc_math or GMP
I'm having trouble calculating roots of rather large numbers using bc_math, example:
- pow(2, 2) // 4, power correct
- pow(4, 0.5) // 2, square root correct
- bcpow(2, 2) …
1
vote
2answers
25 views
Handling expressions in GMP
I introduced myself to the GMP library for high precision arithmetic recently. It seems easy enough to use but in my first program I am running into practical problems. How are exp …
5
votes
12answers
436 views
In PHP, how do I generate a big pseudo-random number?
I'm looking for a way to generate a big random number with PHP, something like:
mt_rand($lower, $upper);
The closer I've seen is gmp_random() however it doesn't allow me to spec …
0
votes
1answer
52 views
Optimizing Comparisons of Arbitrary Length Numbers in PHP
Related to this question, I've a class that wrapps the gmp and bc_math extensions aswell as built-in integer support, but I find it kinda hard to do comparisons on big numbers comp …
1
vote
3answers
133 views
Are integers in C assumed to be handled by a hardware spec or handled in software?
Are integers in C assumed to be handled by a hardware spec or handled in software?
By integer, I am referring to the primitive "int"
The underlying idea being that if integers in …
0
votes
1answer
432 views
MinGW library converted to Windows library gives odd link in VC++6
I used the MinGW .a to Windows .lib transformation process as detailed in a
thread on the gmp-discuss list, as below (acting against a library created with --disable-shared --enabl …
0
votes
1answer
49 views
Is this a bug in GMP 4.1.2 or is it something I’m doing wrong?
To this bit of code I pass the string "kellogs special k" and I get 1 which means that the string is an integer. What on earth am I doing wrong? Or is it a GMP problem?
#define F …
1
vote
6answers
288 views
Can one know how large a factorial would be before calculating it?
I'm using GMP to calculate very large factorials (e.g. 234234!). Is there any way of knowing, before one does the calculation, how many digits long the result will (or might) be?
0
votes
1answer
313 views
Building GMP library with Visual Studio?
Is there an easy way to build the GMP (GNU Multiple Precision Arithmetic Library, http://gmplib.org) under Windows, using Visual Studio 2005? I tried to find information about buil …
1
vote
2answers
196 views
Square root of bignum using GMP
I need to get the square root of a 210 digit number accurately, I thought GMP was the right tool for the job, what am I doing wrong?
#include <stdlib.h>
#include <stdio.h …
0
votes
6answers
240 views
why would freeing calloc’ed memory crash my VC6 project?
Compare these two largely identical functions. In the first, the memory for buff is allocated using _alloca. This works fine. In the second, calloc and free are used instead of _al …
1
vote
1answer
86 views
How to detect mantissa precision overflow in GMP, before or after it happens?
The question I meant to ask concerned the mantissa, not the exponent, and has lots to do with the question I asked earlier in the week regarding "missing" digits on the sum of two …
0
votes
1answer
102 views
Lost precision on GMP mpf_add. Where have my digits gone?
I'm summing two negative floats:
char * lhs = "-2234.6016114467412141";
char * rhs = "-4939600281397002.2812";
According to Perl, using bignum and Math::BigFloat, the answer is
…
1
vote
1answer
76 views
GMP can’t cope with a leading “+”?
Consider the following code
// BOGP.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "gmp-static\gmp.h"
#include <stdlib.h> …
0
votes
5answers
270 views
How does one calculate 2 ^ -18 using GMP?
I've just discovered, to my embarrassment, that feeding negative exponents to mpz_pow_ui doesn't work very well. ("The manual does say unsigned long, you know.") For the other mpz_ …
