Quote from larryg003:
The Cox-Rubenstein Model for Calls
is
C = 1/(rr)^n[sum(from k=0, n) of (n!/(k!(n-k)!))(p^k)*(1-p)^(n-k)max(0, u^k*d^(n-k)*U-E]
What does the max(0, u^(k)*(d^(n-k)U-E) mean?
More generally, what does the max() function mean when it follows an infinite series?
Much appreciated,
Quote from larryg003:
What does the max(0, u^(k)*(d^(n-k)U-E) mean?
I am not familiar with this expression for CRR, but, in general, there's nothing alien about it. The max function is under the Sigma (Sum), so this just means you calculate the max for every value of k between 0 and n.Quote from larryg003:
The Cox-Rubenstein Model for Calls
is
C = 1/(rr)^n[sum(from k=0, n) of (n!/(k!(n-k)!))(p^k)*(1-p)^(n-k)max(0, u^k*d^(n-k)*U-E]
What does the max(0, u^(k)*(d^(n-k)U-E) mean?
More generally, what does the max() function mean when it follows an infinite series?
Much appreciated,
Quote from larryg003:
The Cox-Rubenstein Model for Calls
is
C = 1/(rr)^n[sum(from k=0, n) of (n!/(k!(n-k)!))(p^k)*(1-p)^(n-k)max(0, u^k*d^(n-k)*U-E]
What does the max(0, u^(k)*(d^(n-k)U-E) mean?
More generally, what does the max() function mean when it follows an infinite series?
Much appreciated,
Quote from larryg003:
The Cox-Rubenstein Model for Calls
is
C = 1/(rr)^n[sum(from k=0, n) of (n!/(k!(n-k)!))(p^k)*(1-p)^(n-k)max(0, u^k*d^(n-k)*U-E]
What does the max(0, u^(k)*(d^(n-k)U-E) mean?
More generally, what does the max() function mean when it follows an infinite series?
Much appreciated,
You're right, this expression is just to get the max value, because of the complicated expression of the second value, it makes us so incomprehensibleQuote from Equalizer:
max(a, b) simply refers to the largest value in the brackets, either a or b, that's all.
You'll notice that some authors use max(a,b) and (a,b)^+ (i.e., the "+" is a superscript) interchangeably.
Setting one of the values (a or b) to zero simply sets the lowest possible value to be non-negative. Note that this refers to intrinsic value only, hence for a simple call it cannot be negative.