Tagged Questions
The pi-calculation tag has no wiki summary.
26
votes
8answers
6k views
C#: Perform Operations on GPU, not CPU (Calculate Pi)
I've recently read a lot about software (mostly scientific/math and encryption related) that moves part of their calculation onto the GPU which causes a 100-1000 (!) fold increase in speed for ...
2
votes
5answers
585 views
find the value of pi till 50 digits
I want to calculate the value of PI till 50 digits.
Here is my code
public class PiCalc {
public static void main(String[] args) {
double nm = 22;
double dn = 7;
double pi = nm/dn;
...
1
vote
2answers
288 views
.NET C# Double equivalent System.Numerics.BigInteger
I'm am currently writing a program that calculates the digits of pi, and I have a problem. After three iterations the number of correct digits exceeds the memory available in a double.
I heard of the ...
0
votes
9answers
618 views
.NET Framework Library for arbitrary digit precision
I'm reviving this question, and making it more specific: Is there a .NET framework library that supports numbers with arbitrary digits of precision?