Trouble solving for extreme values of a differential equation.
Show older comments
Hello,
I'm trying to solve the most probable energy for this probability density function, P(E) = A.*sinh(sqrt(2.*E)).*exp(-E). I solved for A in my code but when I take the derivative and try to solve it at zero I get a large, relative to the expectation, negative number. For the situation the function is from the energy cannot be negative. I'm unsure what I'm doing wrong could you help me? Here's my code:
%% Problem 3
% Part A
syms E
P = @(E) sinh(sqrt(2.*E)).*exp(-E);
A = double(1./int(P(E), 0, Inf));
disp(A);
% Part B
dPdE = @(E) diff(A.*P(E));
solution = solve(dPdE(E));
4 Comments
darova
on 25 Mar 2021
Can you please attach the picture of expected result? What is wrong with your result now?
Patrick Myers
on 25 Mar 2021
Edited: Patrick Myers
on 25 Mar 2021
darova
on 25 Mar 2021
DO you have original equations?
Patrick Myers
on 25 Mar 2021
Edited: Patrick Myers
on 25 Mar 2021
Answers (1)
darova
on 25 Mar 2021
0 votes
You are trying to solve your equation symbolically (to get analytical expression). I think it's impossible
Try fsolve or vpasolve
1 Comment
Patrick Myers
on 29 Mar 2021
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!