Tagged Questions

6
votes
18answers
11k views

How do I calculate PI in C#?

How can I calculate the value of PI using C#? I was thinking it would be through a recursive function, if so, what would it look like and are there any math equations to back it up? I'm not too ...
4
votes
4answers
586 views

Computing π to “infinite” binary precision in C#

So far it looks like Fabrice Bellard's base 2 equation is the way to go Ironically this will require a BigReal type; do we have this for .Net? .Net 4.0 has BigInteger. Anyone have a Haskell ...
3
votes
1answer
236 views

How to get decimal to n places precision in C# program for Pi

With reg to this question Pi in C# I coded the below code and gives a output with last 6 digits as 0. So I want to improve the program by converting everything to decimal. I have never used decimal ...
3
votes
2answers
131 views

Need a data type to hold 1 million+ digits in C#

I am calculating PI in C#, and so far its perfect except my data types are limiting me. If i use a double i get results like below. k=0, delta= 3,14176587301587, pi=3,14176587301587 k=1, ...
3
votes
3answers
2k views

C# Math vs. XNA MathHelper

Ever since I needed to work with PI (3.1415...) in C# I have used Math.PI to get the value. Usually I would just use values like Math.PI/2.0 or 2.0*Math.PI, but now I have just noticed that XNA ...
1
vote
1answer
63 views

Arbitrary Precision for decimals in C# help?

Here is my current code for computing Pi using the chudnovsky method in c#: using System; using System.Diagnostics; using System.IO; using java.math; namespace pi.chudnovsky { public class ...
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 ...
1
vote
2answers
138 views

How can I show a decimal in a text field?

I am creating a simple console application that shows the value of PI up to a certain number of decimals. For now, I have written the following code: namespace PIApplication { static void Main() ...
1
vote
3answers
1k views

Trying to calculate Pi to N number of decimals with C#

Note: I've already read this topic, but I don't understand it and it doesn't provide a solution I could use. I'm terrible with number problems. What's a simple way to generate Pi to what number of ...
0
votes
1answer
615 views

Calculating pi using infinite series in C#

I tried to write the following program in C# to calculate pi using infinite recursion, but I keep getting confused about integer/double/decimal division. I really have no clue why this isn't working, ...