\begin{cases}
E_0 = V_0 N(d_1) - L e^{-rt}N(d_2),\quad \quad V_0, \sigma_V -? \\
\sigma_E E_0 = N(d_1) \sigma_V V_0
\end{cases}
where $$d_2 = d_1 - \sigma_V \sqrt{t} = \frac{\log\frac{V_0}{K} + \frac{1}{2}\sigma^2t}{\sigma_V \sqrt{t}} - \sigma_V \sqrt{t}$$
But, using matlabs' fsolve function, even with feeding analytical Jacobian for different data inputs sometimes returns me:
No solutions found
or
Equation solved, fsolve stalled
This is even worse if I use more complex equations below. Could somebody give some hint how to solve this system?
or Could somebody give tips, ideas or reference how to choose good initial conditions for fsolve?
Finally, I eager to be able to solve more complex model than the written above.
Thanks!
This is actual problem I want to do:
$$
\begin{cases}
E_0 = V_0 N(x_1) - Le^{-rt} N(x_1 - \sigma \sqrt{t})
- V_0 (K/V_0)^{2\lambda} N(y_1) + Ke^{-rt}(K/V_0)^{2\lambda-2} N(y_1 - \sigma \sqrt{t})
\\
\sigma_E E_0 = \frac{\partial E_0}{ \partial V_0} \sigma_V V_0
\end{cases}
$$
The variables: $$x_1 = x_1(V_0,\sigma_V),y_1 = y_1(V_0,\sigma_V)$$
N(x) - cumulative distribution function of x, rest of variables are known.
I have added a plot of the sum of squares of the last system. From this figure, I assume that finding a solution is difficult because of quite a flat bottom.