Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
211 views

Python Pari Library?

Pari/GP is an excellent library for functions relating to number theory. The problem is that there doesn't seem to be an up to date wrapper for python anywhere around, (pari-python uses an old version ...
2
votes
0answers
279 views

Compiling with a multi-precision math library in C using Code::Blocks on Windows

I'm having a lot of trouble figuring out how to do this. I need an arbitrary precision library for math in C. I'm good with either CLN or PARI/GP, both of which I've installed. I'm using Windows, so I ...
2
votes
1answer
67 views

Implementing bitwise operations using pari c library

I am new to using the PARI C library. How can I perform bitwise ('and' or 'or') operations on the GEN type variables?
2
votes
1answer
364 views

Python c_types .dll functions (pari library)

Alright, so a couple days ago I decided to try and write a primitive wrapper for the PARI library. Ever since then I've been playing with ctypes library in loading the dll and accessing the functions ...
0
votes
1answer
154 views

Using PARI library for C

I've got all the source code for PARI, but i'm not sure how to use it/generate the pari library. Up to now, i've had to add a couple header files for things such as complex numbers using #include , so ...
0
votes
1answer
46 views

power function in pari library

I am trying to use the PARI library for C. I am new to it. Whenever I try to use any function I get a segmentation fault or stack overflow error. Can anyone please provide me a link with detailed ...
0
votes
1answer
232 views

Is There a Way to Rationalize a Decimal in Pari/GP?

I'm looking for an automated way to turn a decimal value into a fraction in the PARI/GP calculator (gp). For example, I want to turn 0.759765625 into 389/512. I know I can do this manually by typing ...