Hi there,
I would like to find the variables V0 and sv that can solve the 2 given equations (eq1 and eq2) but I keep on getting error result with the Erfc function or 'False' in all my attempts.
My constraints and my equations are:
se = 0.5
K = 5
r = 0.02
E0 = 3
d1 = 1/se (Log [V0/K] + (r + 0.5 sv^2))
d2 = d1 - sv
eq1 = V0 CDF[NormalDistribution[0, 1], d1] -
K Exp[-r] CDF[NormalDistribution[0, 1], d2] - E0 == 0
eq2 = sv == (se E0)/(V0 CDF[NormalDistribution[0, 1], d1])
FindRoot {{eq1, eq2}, {{V0, 12}, {sv, 0.1}}
I apologize if the question is too trivial but i literally just started using Mathematica and definitely a lot to learn :)