Hello,
Can anybody tell me why the following code produces an insufficient memory error, and what can be done to avoid this error?
F[x_,y_,g_]:=x-(Exp[y]-Exp[-g*y]);
y0=2*ArcSinh[x];
x=10;
g=10^10;
FindRoot[F[x,y,g],{y,y0},WorkingPrecision->50,PrecisionGoal->30,AccuracyGoal->∞];
I don't understand why the Newton method requires so much memory; what has to be stored during the calculations? The requested precision also does not seem to me to be too demanding, and for a large value of gy there should be Exp[-gy] negligible in comparison with Exp[y], which should lead to a trivial solution y=Log[x].
Leslaw