How can i get the mean of the function using symbolic maths in MATLAB

8 次查看(过去 30 天)
i am interested to find the mean of the distribution but I am unable to get it.Could anybody help me to figure out where I am doing the mistake?
f=@(a,b,x)1./(x*b*sqrt(2*pi)).*exp(-((log(x)-a)./(sqrt(2)*b)).^2)
I am interested to find E(X) in symbolic form.
i know from the existing literature E(X)=exp(a+b^2/2) but i am not getting this answer. I am using the the function int(f,x,[0,inf]) by assuming that a is real value constant, b is greater and equal to zero.
Thanks

回答(1 个)

John D'Errico
John D'Errico 2017-4-26
Note that if P(x) is a PDF on the domain [0,inf], then the expected value of the corresponding random variable is gotten from
int(P(x)*x,x,[0,inf])
To start with, it looks like you forgot to multiply by x.
A quick look at the PDF shows that you seem to be looking for the expected value of a lognormal distribution.
  1 个评论
zahid
zahid 2017-4-26
Thank you very much John D'Errico for answering this question i did this but i am getting the following answer int((2251799813685248*exp(-(a - log(x))^2/(2*b^2)))/(5644425081792261*b), x, 0, Inf) which is not the same as required. Could you please this why?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Assumptions 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by