restart;
Digits := 32;
t0 := 1;
eq := 1-w*v^2-2*v*exp(-t/v);
equ := eval(eq, v = -t/ln(u));
us := solve(eval(equ, t = t0), u);
vs := -t0/ln(us);
plot(Re(vs), w = 0 .. 10, view = 0 .. 1)
I want to plot the solution of this equation, but it doesn't quite work. I tried to transform it, because I thought the singularity in the denominator of the exponential causes the issues.
any suggestions?