how to make an infinite sum
조회 수: 6 (최근 30일)
이전 댓글 표시
Hi guys,
I have an infintite sum, I write the following code, but it doesn't compute the values.
function y=Phiplus(p,k,delta,alpha)
h=0;
for n=1:1000,
f=2^p*exp(-alpha/2)*(alpha/2)^n*(gamma(k/2)-gamma(p+delta/2+n)*gammainc(p+delta/2+n,k/2))/(factorial(n)*gamma(delta/2+n));
h=h+f;
end
y=h;
end
Pleas help! I use this function to calculate the price of a call option:
Call(i,j,m,n)=exp(-q(j)*T(i))*S*Phiplus(0,k(i,j,n)^2/tau(i,j), delta(m), x^2/tau(i,j))-exp(-(r(j)+b(j))*T(i))*K(n)*(x^2/tau(i,j))^(1/(2*abs(beta)))* Phiplus(-0.5/abs(beta),k(i,j,n)^2/tau(i,j),delta(m),x^2/tau(i,j));
If you need any additional info I'm ready to provide it.
댓글 수: 2
dpb
2013년 6월 9일
Instead of using a fixed upper limit on the loop, consider using a conditional loop, stopping when the additional term no longer adds more than some preset tolerance (say 0.1% or so?) to the value.
factorial(1000) (and long before then) is going to be inf so at that point the term is going to be identically zero and since there are negative exponentials, they're going to zero as well and so I presume you're getting NaN as a result owing to adding 0/0 to the result.
The answer is to only compute the minimum number of terms you need and to probably eliminate the factorial function entirely but instead simply divide each time by the next N in the sequence.
I'd think you probably will need only a few terms at most to get the result but that will depend upon the magnitude of the various coefficients. If both numerator and denominator are small from the git-go, you may need to recast entirely, but try the obvious first.
채택된 답변
Roger Stafford
2013년 6월 9일
편집: Roger Stafford
2013년 6월 9일
I'll expand on dpb's good advice. With regard to the factor contained in the terms you are adding which I will call F(n)
F(n) = (alpha/2)^n/factorial(n)/gamma(delta/2+n)
you can obtain the next value using the iteration
F(n+1) = F(n)*alpha/2/(n+1)/(delta/2+n)
If you carry out the increase of n by 1 at each step using this technique, you will not encounter the difficulties of a very large (alpha/2)^n divided by a very large factorial(n) and a large gamma(delta/2+n) which will all too soon give you "inf" values.
This way you can hopefully go sufficiently far out in your series so that they become small enough to legitimately halt your iteration without prematurely encountering inf values from the computer.
As for the factor involving the incomplete gamma function perhaps a similar strategy can be devised. Incidentally in case there is any confusion here, I will remind you that matlab's incomplete gamma function is both normalized and gives its arguments in the reverse order from the way it is often defined in mathematics.
댓글 수: 5
Roger Stafford
2013년 6월 9일
If k/2 is the upper limit of integration in the incomplete gamma function, it strikes as curious that in your expression you have also called on the complete gamma function using k/2 as its parameter. Is that what you intended?
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Special Functions에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!