plz help me with the integration of this eq from 0 to infinity e(^(-ax))(1+jx/b)^-ndx where n>0

조회 수: 1 (최근 30일)
somebody plz help me with the integration of eq shown in the image where n > 0

채택된 답변

Walter Roberson
Walter Roberson 2019년 7월 12일
>> syms a b x
>> syms n positive
>> int(exp(-a*x)*(1 + x*1i/b)^(-n), x,0,inf)
ans =
piecewise(angle(1i/b) < pi & (angle(a) in Dom::Interval(-pi/2, pi/2) | angle(a) in {-pi/2, pi/2}) & a ~= 0, (b*exp(-(a*b*1i)/2)*(a*b*1i)^(n/2)*whittakerM(n/2, 1/2 - n/2, a*b*1i))/(a*b - a*b*n) + (pi*exp(-a*b*1i)*(-a*b*1i)^n)/(a*sin(pi*n)*gamma(n)), angle(1i/b) == pi | ~angle(a) in Dom::Interval(-pi/2, pi/2) & ~angle(a) in {-pi/2, pi/2} | a == 0, int(exp(-x*a)/((x*1i)/b + 1)^n, x, 0, Inf), angle(1i/b) < pi & (angle(a) in Dom::Interval(-pi/2, pi/2) | angle(a) in {-pi/2, pi/2}) & a ~= 0 & n == 1/2, (b*pi^(1/2)*exp(-a*b*1i)*(erf((-a*b*1i)^(1/2)) - 1)*1i)/(-a*b*1i)^(1/2))
You can get an unconditional result if you are able to put constraints on a and b, such as
syms a b n positive
syms x

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Numeric Solvers에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by