LImit is not corrcet
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi All, I am trying to find the limit of below function in matlab :
limit(( -24*sin(x)+6*x*exp(x)+30*x*sin(x)+6*x*cos(x)-exp(x)*(x^3)-((x^3))*sin(x)-((x^3))*cos(x)-24+4*((x^3))-6*((x^2))*sin(x))/(6* ((x^4))* sin(x)),x,0)
and ans is
NaN
But Actual answer is 26/120. Can anyone help me...how to write in matlab?
1 comentario
Respuestas (1)
Jan
el 20 de En. de 2017
Editada: Jan
el 20 de En. de 2017
My first guess is that you have a typo in your formula. The second guess is, that the source of your opinion, that 26/120 is the correct limit, is wrong.
What about checking the formula manually?
x = -0.01:0.000001:0.01;
y = -24.*sin(x)+6*x.*exp(x)+30*x.*sin(x)+6*x.*cos(x)-exp(x).*(x.^3)-(x.^3).*sin(x) - ...
(x.^3).*cos(x)-24+4*(x.^3) - 6.*((x.^2)).*sin(x))./(6* (x.^4).* sin(x);
plot(x, y);
It does not look like the equation has a limit at the position 0. I know this is not a mathematical proof, but a strong hint to get more doubts.
0 comentarios
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!