Estimating the value of pi using a summation through creation of an m.file by using a loop.

4 vues (au cours des 30 derniers jours)
My script is missing something. Perhaps I do not understand the meaning of 'while' or 'for' correctly. But here is my code:
{% this script approximates the value of pi
n=0;
x=0;
while n<100000 % loop ends at 10^6
n=n+2; % n will always be a multiple of 2
while x<3.14
x=4*((-1).^n/(2*n+1)) +x; % the summation formula
end
disp(x)
end }
I want it such that my value of pi in this case 'x' is no greater than 1e-6 away from the actual value of pi. So when it satisfies this condition the script will cease. However my script gives me endless loop of 3.2 and it pissing me off, all day on this crap :S . Why is matlab so hard?????

Réponse acceptée

Roger Stafford
Roger Stafford le 13 Déc 2012
Adam, your while-within-a-while construct is certainly not going to work for you. The terms "4*(-1).^n/(2*n+1)" are supposed to be added once for each successive value of n, starting with n = 0, but, as it is, your code will add this term for an unchanging n a number of times before going on to the next n because of your inner while-loop arrangement. Also the n = n+2 is wrong. It should be for each successive n, n = n + 1, not every multiple of 2.
This approximation is based on the infinite series expansion of arctan:
arctan(t) = t - 1/3*t^3 + 1/5*t^5 - 1/7*t^7 + ...
with t set to 1 giving
pi/4 = arctan(1) = 1 - 1/3 + 1/5 - 1/7 + ...
With t equal to 1 this is a very, very slowly converging series, and you should have a single while-loop with the condition that 1/(2*n+1) < 1e-6 to achieve the accuracy you desire, which will require a great many loops. You should start with n = 0 and compute your first x before adding 1 to n. (Your present code erroneously uses n = 2 for its first term.)
Note that if you were to use t = 1/sqrt(2) instead of t = 1, your series would converge much, much faster, but the added terms would have to be changed to 6*(-1)^n/(2*n+1)*t^(2*n+1), since arctan(1/sqrt(2)) = pi/6.
Note 2: Sean is teasing you. He starts with pi itself and his loop never executes.
Roger Stafford
  5 commentaires
A K
A K le 16 Déc 2012
Modifié(e) : A K le 16 Déc 2012
%e
n=0;
x=0;
k=4*((-1)^n/(2*n+1));
while k>1e-6
n= n+1;
x=x+k;
k=4*((-1)^n/(2*n+1));
end
x
This doesn't work either and i only want n to increase by 2 each time through the loop. It still won't converge anywhere near pi... I don't get what i'm missing.
A K
A K le 16 Déc 2012
yes!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
i got it!
% if true
n=0;
x=0;
k=4*((-1)^n/(2*n+1));
while abs(k)>1e-6
n= n+1;
x=x+k;
k=4*((-1)^n/(2*n+1));
end
x

Connectez-vous pour commenter.

Plus de réponses (2)

Sean de Wolski
Sean de Wolski le 13 Déc 2012
function myPi = piEst()
myPi = pi;
for ii = 1:0
myPi = myPi+ii;
end
end
  4 commentaires
Sean de Wolski
Sean de Wolski le 13 Déc 2012
I used a loop!
3.141592653589793238466 is still an approximation to actual pi. So my code meets all of your constraints!
A K
A K le 13 Déc 2012
Yes i had completely forgotten on the for loop because I felt so adamant on using the while loop.

Connectez-vous pour commenter.


A K
A K le 13 Déc 2012
why did u create a vector 1:0

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by