do not understand the integration result
Mostrar comentarios más antiguos
when I integrate this via: int(1/4624*exp(12028*(2367-t/643*t+2199060)),t,0,360)
I get this result: 1933501^(1/2)*pi^(1/2)*erf((720*1933501^(1/2))/643)*exp(26478763956))/55617472
What does this number mean? why am I getting a value like this?
4 comentarios
darova
el 21 de Abr. de 2020
This is very big number
exp(12028*(2367-t/643*t+2199060))
David Welling
el 21 de Abr. de 2020
exp(12028*(2367-t/643*t+2199060))=
exp(12028*(2367-t^2/643+2199060))=
exp(12028*(2199060+2367-t^2/643))=
exp(12028*(2201427-t^2/643))=
exp(12028*2201427-12028*t^2/643)=
exp(26478763956-12028*t^2/643)=
exp(26478763956-12028/643*t^2)=
exp(26478763956)/exp(12028/643*t^2)
Are you srue that is what you meant, or did you make a mistake with the brackets?
cemile basgul
el 29 de Abr. de 2020
Editada: darova
el 29 de Abr. de 2020
cemile basgul
el 29 de Abr. de 2020
Respuestas (1)
Nishant Gupta
el 27 de Mayo de 2020
syms t;
>> expr = 1/4624*exp(12028*(2367-t/643*t+2199060));
>> F = int(expr,[0 360])
F =
(1933501^(1/2)*pi^(1/2)*erf((720*1933501^(1/2))/643)*exp(26478763956))/55617472
>> vpa(F)
ans =
Inf
1 comentario
cemile basgul
el 4 de Jun. de 2020
Categorías
Más información sobre Calculus en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!