How do I approximate the value of pi

Here is what I have so far:
function numberPI=(-1^n)*1/(2*n+1)*3^n
s=0;
n=input('enter value of n= ');
for i=1:n
s=s+i
numberPI
end
disp(['numberPI= ',num2str(numberPI)]);

1 comentario

Dorothy Carter
Dorothy Carter el 8 de Nov. de 2015
function numberPI s=0; n=input('enter value of n= '); for i=1:n s=s+i; numberPI=sqrt(12)* 1./((2*n+1).*(-3).^n; end disp(['numberPI= ',num2str(numberPI)]); Still an error.

Iniciar sesión para comentar.

 Respuesta aceptada

Real Name
Real Name el 8 de Nov. de 2015

0 votos

Are you attempting to use the Leibniz series to approximate pi? That formula you have is not correct.

2 comentarios

Dorothy Carter
Dorothy Carter el 8 de Nov. de 2015
Editada: Dorothy Carter el 8 de Nov. de 2015
What is the formula then? That was what I was given Changed script: function numberPI s=0; n=input('enter value of n= '); for i=1:n s=s+i; numberPI=sqrt(12)* 1./((2*n+1).*(-3).^n; end disp(['numberPI= ',num2str(numberPI)]); Still an error.
Real Name
Real Name el 9 de Nov. de 2015
Editada: Real Name el 9 de Nov. de 2015
The formula is given here:
https://en.wikipedia.org/wiki/Leibniz_formula_for_%CF%80
SUM (-1)^n/(2n+1) = pi/4
So make sure to multiply the final result by 4. I'm not sure why you were given that formula. You should confirm with whomever your instructor is.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Develop Apps Using App Designer en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 8 de Nov. de 2015

Editada:

el 9 de Nov. de 2015

Community Treasure Hunt

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

Start Hunting!

Translated by