How to solve differential equation with MATLAB
Show older comments
Hi,
I have a problem related to solving differential equation. The equation is:
(3/2)lnX + 3886/x = 19
I can not solve this equation. I must find 'x' value..
How can I solve this with Matlab?
Thanks for your help.
1 Comment
Torsten
on 11 Nov 2015
X and x are the same ?
Why is your problem related to solving a differential equation ? The equation you wrote is an algebraic equation.
Best wishes
Torsten.
Accepted Answer
More Answers (5)
nancy
on 11 Nov 2015
0 votes
Torsten
on 11 Nov 2015
Does this work ?
syms x
eqn = 1.5*log(x)+3886/x-19 == 0;
sol = solve(eqn,x);
The result should be some expression containing the Lambert-W-function.
Best wishes
Torsten.
nancy
on 12 Nov 2015
0 votes
nancy
on 13 Nov 2015
0 votes
Categories
Find more on Mathematics in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!