Borrar filtros
Borrar filtros

Why is the output of my function infinity?

3 visualizaciones (últimos 30 días)
Nicholas Gillam
Nicholas Gillam el 7 de Abr. de 2019
Respondida: Torsten el 8 de Abr. de 2019
I'm doing code for the trapezoidal rule. I checked my code with simple functions at first to make sure it was outputting correctly. However when I am attempting what I need to do, my output says it's infinity, when it should not be. The solution I got from Wolfram Alpha and my TI89 was 0.00958. Could it be the "1/n" in the x definition? I needed 10 steps for the trapezoids I'm setting up.
The function being applied is: cos^2((pi*cos(x))/2)*csc(x).
n = 10;
x = 0:1/n:1/2;
y=cos((pi*cos(x))/2).^2.*csc(x);
z=trapz(x,y)

Respuestas (2)

Star Strider
Star Strider el 7 de Abr. de 2019
The cosecant is , so at integral multiples of π (such as 0, π, ...) the cosecant will approach .
  4 comentarios
Nicholas Gillam
Nicholas Gillam el 7 de Abr. de 2019
Hmm, there must be something I can do to simplify it, especially if Wolfram Alpha and my TI89 are giving me a finite number.
Star Strider
Star Strider el 8 de Abr. de 2019
Wolfram Alpha and your Ti89 are wrong.

Iniciar sesión para comentar.


Torsten
Torsten el 8 de Abr. de 2019
Since your function tends to 0 as x -> 0 by L'Hospital, you can integrate
y = cos((pi*cos(x))/2).^2.*csc(x).*(x > 0);

Categorías

Más información sobre Numerical Integration and Differential Equations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by