Why this is not working in sage?
f=-V+exp(V)-w-1; g=0.5*V-w; sol=solve(f==0,g==0],V,w,solution_dict=True)
It does not return numerical solutions when there are two.
Thanks
1 | initial version |
Why this is not working in sage?
f=-V+exp(V)-w-1; g=0.5*V-w; sol=solve(f==0,g==0],V,w,solution_dict=True)
It does not return numerical solutions when there are two.
Thanks
2 | No.2 Revision |
Why this is not working in sage?
f=-V+exp(V)-w-1;
g=0.5*V-w;
It does not return numerical solutions when there are two.
Thanks
3 | formatting |
Why this is not working in sage?
f=-V+exp(V)-w-1;
g=0.5*V-w;
sol=solve(f==0,g==0],V,w,solution_dict=True)
sol=solve([f==0,g==0],V,w,solution_dict=True)
It does not return numerical solutions when there are two.
Thanks