Pi (divided by 4) can be approximated by the following infinite series:
pi/4 = 1 - 1/3 + 1/5 - 1/7 + ...
For a given number of terms (n), return the difference between the actual value of pi and this approximation of the constant.
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers1484
Suggested Problems
-
7464 Solvers
-
8146 Solvers
-
657 Solvers
-
11448 Solvers
-
638 Solvers
More from this Author139
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
@goc3
Why this doesn't work correctly to same decimal place ?
-------------------------
format long
y = (4*sum(arrayfun(@(k) ((-1).^k)./(2*k+1),0:n)))-pi;