Borrar filtros
Borrar filtros

How can I write the taylor series expansion for the function (1+x^2)^(-1/2) in code

2 visualizaciones (últimos 30 días)

Hello. I am trying to get this taylor series expansion in code but I am having a hard time. I attached a picture of the function and its taylor series expansion. I thought of using the factorial function but I don't think that will work here. Thank you for the help.

  2 comentarios
Geoff Hayes
Geoff Hayes el 5 de Jul. de 2018
Joshua - no, you probably don't need to use the factorial function here. But from what you have shown, what is the pattern? Once you figure that out then the expansion should be easy.

Iniciar sesión para comentar.

Respuesta aceptada

Torsten
Torsten el 5 de Jul. de 2018
Editada: Torsten el 5 de Jul. de 2018
a0 = 1
an = -a(n-1) * (2*n-1)/(2*n)
  4 comentarios
JoshT_student
JoshT_student el 5 de Jul. de 2018
Thank you Torsten, now to get 50 terms of it, I just need to put it in a for loop?
Torsten
Torsten el 6 de Jul. de 2018
x=0.5;
f=1.0;
a=1.0;
xn=1.0;
n=25;
for i=1:n
a=-a*(2*i-1)/(2*i);
xn=xn*x^2;
f=f+xn*a;
end

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Mathematics en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by