Expected value of a variable given a probability distributionNormal Distribution Quantiles and Value at RiskLimit of Beta distribution on $[0, A]$ as $Arightarrow infty$ with constant expectation and variancepoisson distribution problem, expected value and variance calculationExpected value from variance?Random increment through a probability distribution functionExpected value of exponential functionIs the maximum of a probability distribution function of a Binomial distribution always the expected value?calculate the probability of normal distribution variable with conditionsGamma distribution and probability less then expected value?What is the expected value in a non-normal distribution?

School performs periodic password audits. Is my password compromised?

Is it appropriate to ask a former professor to order a book for me through an inter-library loan?

Writing text next to a table

Why restrict private health insurance?

Is there a logarithm base for which the logarithm becomes an identity function?

Under what conditions can the right to be silence be revoked in the USA?

Do Paladin Auras of Differing Oaths Stack?

If sound is a longitudinal wave, why can we hear it if our ears aren't aligned with the propagation direction?

Can the Witch Sight warlock invocation see through the Mirror Image spell?

Logistic regression BIC: what's the right N?

What does *dead* mean in *What do you mean, dead?*?

Are small insurances worth it?

What can I do if someone tampers with my SSH public key?

Difference between `nmap local-IP-address` and `nmap localhost`

When an outsider describes family relationships, which point of view are they using?

Are all players supposed to be able to see each others' character sheets?

How do I increase the number of TTY consoles?

Are these two graphs isomorphic? Why/Why not?

Professor forcing me to attend a conference, I can't afford even with 50% funding

How do we create new idioms and use them in a novel?

How can a demon take control of a human body during REM sleep?

What should I do when a paper is published similar to my PhD thesis without citation?

Why is there an extra space when I type "ls" on the Desktop?

Cycles on the torus



Expected value of a variable given a probability distribution


Normal Distribution Quantiles and Value at RiskLimit of Beta distribution on $[0, A]$ as $Arightarrow infty$ with constant expectation and variancepoisson distribution problem, expected value and variance calculationExpected value from variance?Random increment through a probability distribution functionExpected value of exponential functionIs the maximum of a probability distribution function of a Binomial distribution always the expected value?calculate the probability of normal distribution variable with conditionsGamma distribution and probability less then expected value?What is the expected value in a non-normal distribution?













0












$begingroup$


I have fitted some data with a normal and gamma distribution. But I need to find the expected value of my variable. For example is x is my data (mine is not normal) and fit them into a normal and gamma distribution. My expected value is not the same as the mean? Also for the gamma distribution the mean is alpha/beta which gives me the same as the mean.



x=rnorm(100)
m=mean(x)
v=var(x)
no=dnorm(x,m,sqrt(v))
gama=dgamma(x, ((m^2)/v),m/(v))


PS: But I think what my professor wanted me to do was: I was given a dataset of two variables and I needed to see which distribution fitted better, (it was a gamma), but after doing this the problem asked for the two distributions(Normal and gamma) to find the expected value. But I don't get if it has to be equal to the mean(x) in R. Or if I have to make an integral for this



PS2: I think for a simple way to ask. If I already fitted my data lets say to a normal(4,8) then my expected value isn't equal to 4? The same is for the gamma distribution, given alpha and beta, my mean isn't equal to alpha/beta?










share|cite|improve this question









$endgroup$











  • $begingroup$
    There is no reason why your sample's average will exactly equal the distribution's mean (expected value). Usually it will be close to it, but not exactly the same.
    $endgroup$
    – Minus One-Twelfth
    yesterday











  • $begingroup$
    @MinusOne-Twelfth Exactly, but this is the code that the professor gave us. So i don't know how to extract the expected value if those are the parameters.
    $endgroup$
    – Lexie Walker
    yesterday










  • $begingroup$
    Given only a data set, you have no way of knowing (with certainty) the expected value of the underlying distribution. It sounds like maybe your prof. wants you to fit both normal and gamma distributions, and report the means of the two fit distributions.
    $endgroup$
    – David M.
    yesterday















0












$begingroup$


I have fitted some data with a normal and gamma distribution. But I need to find the expected value of my variable. For example is x is my data (mine is not normal) and fit them into a normal and gamma distribution. My expected value is not the same as the mean? Also for the gamma distribution the mean is alpha/beta which gives me the same as the mean.



x=rnorm(100)
m=mean(x)
v=var(x)
no=dnorm(x,m,sqrt(v))
gama=dgamma(x, ((m^2)/v),m/(v))


PS: But I think what my professor wanted me to do was: I was given a dataset of two variables and I needed to see which distribution fitted better, (it was a gamma), but after doing this the problem asked for the two distributions(Normal and gamma) to find the expected value. But I don't get if it has to be equal to the mean(x) in R. Or if I have to make an integral for this



PS2: I think for a simple way to ask. If I already fitted my data lets say to a normal(4,8) then my expected value isn't equal to 4? The same is for the gamma distribution, given alpha and beta, my mean isn't equal to alpha/beta?










share|cite|improve this question









$endgroup$











  • $begingroup$
    There is no reason why your sample's average will exactly equal the distribution's mean (expected value). Usually it will be close to it, but not exactly the same.
    $endgroup$
    – Minus One-Twelfth
    yesterday











  • $begingroup$
    @MinusOne-Twelfth Exactly, but this is the code that the professor gave us. So i don't know how to extract the expected value if those are the parameters.
    $endgroup$
    – Lexie Walker
    yesterday










  • $begingroup$
    Given only a data set, you have no way of knowing (with certainty) the expected value of the underlying distribution. It sounds like maybe your prof. wants you to fit both normal and gamma distributions, and report the means of the two fit distributions.
    $endgroup$
    – David M.
    yesterday













0












0








0





$begingroup$


I have fitted some data with a normal and gamma distribution. But I need to find the expected value of my variable. For example is x is my data (mine is not normal) and fit them into a normal and gamma distribution. My expected value is not the same as the mean? Also for the gamma distribution the mean is alpha/beta which gives me the same as the mean.



x=rnorm(100)
m=mean(x)
v=var(x)
no=dnorm(x,m,sqrt(v))
gama=dgamma(x, ((m^2)/v),m/(v))


PS: But I think what my professor wanted me to do was: I was given a dataset of two variables and I needed to see which distribution fitted better, (it was a gamma), but after doing this the problem asked for the two distributions(Normal and gamma) to find the expected value. But I don't get if it has to be equal to the mean(x) in R. Or if I have to make an integral for this



PS2: I think for a simple way to ask. If I already fitted my data lets say to a normal(4,8) then my expected value isn't equal to 4? The same is for the gamma distribution, given alpha and beta, my mean isn't equal to alpha/beta?










share|cite|improve this question









$endgroup$




I have fitted some data with a normal and gamma distribution. But I need to find the expected value of my variable. For example is x is my data (mine is not normal) and fit them into a normal and gamma distribution. My expected value is not the same as the mean? Also for the gamma distribution the mean is alpha/beta which gives me the same as the mean.



x=rnorm(100)
m=mean(x)
v=var(x)
no=dnorm(x,m,sqrt(v))
gama=dgamma(x, ((m^2)/v),m/(v))


PS: But I think what my professor wanted me to do was: I was given a dataset of two variables and I needed to see which distribution fitted better, (it was a gamma), but after doing this the problem asked for the two distributions(Normal and gamma) to find the expected value. But I don't get if it has to be equal to the mean(x) in R. Or if I have to make an integral for this



PS2: I think for a simple way to ask. If I already fitted my data lets say to a normal(4,8) then my expected value isn't equal to 4? The same is for the gamma distribution, given alpha and beta, my mean isn't equal to alpha/beta?







probability






share|cite|improve this question













share|cite|improve this question











share|cite|improve this question




share|cite|improve this question










asked yesterday









Lexie WalkerLexie Walker

1597




1597











  • $begingroup$
    There is no reason why your sample's average will exactly equal the distribution's mean (expected value). Usually it will be close to it, but not exactly the same.
    $endgroup$
    – Minus One-Twelfth
    yesterday











  • $begingroup$
    @MinusOne-Twelfth Exactly, but this is the code that the professor gave us. So i don't know how to extract the expected value if those are the parameters.
    $endgroup$
    – Lexie Walker
    yesterday










  • $begingroup$
    Given only a data set, you have no way of knowing (with certainty) the expected value of the underlying distribution. It sounds like maybe your prof. wants you to fit both normal and gamma distributions, and report the means of the two fit distributions.
    $endgroup$
    – David M.
    yesterday
















  • $begingroup$
    There is no reason why your sample's average will exactly equal the distribution's mean (expected value). Usually it will be close to it, but not exactly the same.
    $endgroup$
    – Minus One-Twelfth
    yesterday











  • $begingroup$
    @MinusOne-Twelfth Exactly, but this is the code that the professor gave us. So i don't know how to extract the expected value if those are the parameters.
    $endgroup$
    – Lexie Walker
    yesterday










  • $begingroup$
    Given only a data set, you have no way of knowing (with certainty) the expected value of the underlying distribution. It sounds like maybe your prof. wants you to fit both normal and gamma distributions, and report the means of the two fit distributions.
    $endgroup$
    – David M.
    yesterday















$begingroup$
There is no reason why your sample's average will exactly equal the distribution's mean (expected value). Usually it will be close to it, but not exactly the same.
$endgroup$
– Minus One-Twelfth
yesterday





$begingroup$
There is no reason why your sample's average will exactly equal the distribution's mean (expected value). Usually it will be close to it, but not exactly the same.
$endgroup$
– Minus One-Twelfth
yesterday













$begingroup$
@MinusOne-Twelfth Exactly, but this is the code that the professor gave us. So i don't know how to extract the expected value if those are the parameters.
$endgroup$
– Lexie Walker
yesterday




$begingroup$
@MinusOne-Twelfth Exactly, but this is the code that the professor gave us. So i don't know how to extract the expected value if those are the parameters.
$endgroup$
– Lexie Walker
yesterday












$begingroup$
Given only a data set, you have no way of knowing (with certainty) the expected value of the underlying distribution. It sounds like maybe your prof. wants you to fit both normal and gamma distributions, and report the means of the two fit distributions.
$endgroup$
– David M.
yesterday




$begingroup$
Given only a data set, you have no way of knowing (with certainty) the expected value of the underlying distribution. It sounds like maybe your prof. wants you to fit both normal and gamma distributions, and report the means of the two fit distributions.
$endgroup$
– David M.
yesterday










0






active

oldest

votes











Your Answer





StackExchange.ifUsing("editor", function ()
return StackExchange.using("mathjaxEditing", function ()
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
);
);
, "mathjax-editing");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "69"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3140467%2fexpected-value-of-a-variable-given-a-probability-distribution%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Mathematics Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

Use MathJax to format equations. MathJax reference.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3140467%2fexpected-value-of-a-variable-given-a-probability-distribution%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Lowndes Grove History Architecture References Navigation menu32°48′6″N 79°57′58″W / 32.80167°N 79.96611°W / 32.80167; -79.9661132°48′6″N 79°57′58″W / 32.80167°N 79.96611°W / 32.80167; -79.9661178002500"National Register Information System"Historic houses of South Carolina"Lowndes Grove""+32° 48' 6.00", −79° 57' 58.00""Lowndes Grove, Charleston County (260 St. Margaret St., Charleston)""Lowndes Grove"The Charleston ExpositionIt Happened in South Carolina"Lowndes Grove (House), Saint Margaret Street & Sixth Avenue, Charleston, Charleston County, SC(Photographs)"Plantations of the Carolina Low Countrye

random experiment with two different functions on unit interval Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)Random variable and probability space notionsRandom Walk with EdgesFinding functions where the increase over a random interval is Poisson distributedNumber of days until dayCan an observed event in fact be of zero probability?Unit random processmodels of coins and uniform distributionHow to get the number of successes given $n$ trials , probability $P$ and a random variable $X$Absorbing Markov chain in a computer. Is “almost every” turned into always convergence in computer executions?Stopped random walk is not uniformly integrable

How should I support this large drywall patch? Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?How do I cover large gaps in drywall?How do I keep drywall around a patch from crumbling?Can I glue a second layer of drywall?How to patch long strip on drywall?Large drywall patch: how to avoid bulging seams?Drywall Mesh Patch vs. Bulge? To remove or not to remove?How to fix this drywall job?Prep drywall before backsplashWhat's the best way to fix this horrible drywall patch job?Drywall patching using 3M Patch Plus Primer