Computing conditional expectation of independent uniform rv












3












$begingroup$



Suppose $X$ and $Y$ are two independent uniform random variables on $[0,1]$. Compute



$$ E[X^2 mid X+Y = a ] $$



where $ain (0,2)$.




Try.



First, we can find density of $Z=X^2$. We have



$$ P(X^2 leq z ) = P( - sqrt{z} leq X leq sqrt{z}) = int_{- sqrt{z}}^{sqrt{z}} dx =2 sqrt{z}$$



Therefore,



$$ f_Z(z) = frac{1}{sqrt{z}}.$$



Now, here is where the trouble starts since I always get confused when computing the conditional expectation. Do they mean that I need to compute



$$ int int_{sqrt{z}+y=a} z frac{1}{sqrt{z} } dy dz$$?










share|cite|improve this question











$endgroup$








  • 1




    $begingroup$
    @gd1035 That's wrong. Actually it should be $E([a-Y]^2 | X+Y=a)$ .. which of course is not easier than the original :-)
    $endgroup$
    – leonbloy
    Dec 16 '18 at 3:43
















3












$begingroup$



Suppose $X$ and $Y$ are two independent uniform random variables on $[0,1]$. Compute



$$ E[X^2 mid X+Y = a ] $$



where $ain (0,2)$.




Try.



First, we can find density of $Z=X^2$. We have



$$ P(X^2 leq z ) = P( - sqrt{z} leq X leq sqrt{z}) = int_{- sqrt{z}}^{sqrt{z}} dx =2 sqrt{z}$$



Therefore,



$$ f_Z(z) = frac{1}{sqrt{z}}.$$



Now, here is where the trouble starts since I always get confused when computing the conditional expectation. Do they mean that I need to compute



$$ int int_{sqrt{z}+y=a} z frac{1}{sqrt{z} } dy dz$$?










share|cite|improve this question











$endgroup$








  • 1




    $begingroup$
    @gd1035 That's wrong. Actually it should be $E([a-Y]^2 | X+Y=a)$ .. which of course is not easier than the original :-)
    $endgroup$
    – leonbloy
    Dec 16 '18 at 3:43














3












3








3


1



$begingroup$



Suppose $X$ and $Y$ are two independent uniform random variables on $[0,1]$. Compute



$$ E[X^2 mid X+Y = a ] $$



where $ain (0,2)$.




Try.



First, we can find density of $Z=X^2$. We have



$$ P(X^2 leq z ) = P( - sqrt{z} leq X leq sqrt{z}) = int_{- sqrt{z}}^{sqrt{z}} dx =2 sqrt{z}$$



Therefore,



$$ f_Z(z) = frac{1}{sqrt{z}}.$$



Now, here is where the trouble starts since I always get confused when computing the conditional expectation. Do they mean that I need to compute



$$ int int_{sqrt{z}+y=a} z frac{1}{sqrt{z} } dy dz$$?










share|cite|improve this question











$endgroup$





Suppose $X$ and $Y$ are two independent uniform random variables on $[0,1]$. Compute



$$ E[X^2 mid X+Y = a ] $$



where $ain (0,2)$.




Try.



First, we can find density of $Z=X^2$. We have



$$ P(X^2 leq z ) = P( - sqrt{z} leq X leq sqrt{z}) = int_{- sqrt{z}}^{sqrt{z}} dx =2 sqrt{z}$$



Therefore,



$$ f_Z(z) = frac{1}{sqrt{z}}.$$



Now, here is where the trouble starts since I always get confused when computing the conditional expectation. Do they mean that I need to compute



$$ int int_{sqrt{z}+y=a} z frac{1}{sqrt{z} } dy dz$$?







probability probability-distributions






share|cite|improve this question















share|cite|improve this question













share|cite|improve this question




share|cite|improve this question








edited Jan 14 at 19:21









Ethan Bolker

45.4k553120




45.4k553120










asked Dec 16 '18 at 2:19









Jimmy SabaterJimmy Sabater

2,560325




2,560325








  • 1




    $begingroup$
    @gd1035 That's wrong. Actually it should be $E([a-Y]^2 | X+Y=a)$ .. which of course is not easier than the original :-)
    $endgroup$
    – leonbloy
    Dec 16 '18 at 3:43














  • 1




    $begingroup$
    @gd1035 That's wrong. Actually it should be $E([a-Y]^2 | X+Y=a)$ .. which of course is not easier than the original :-)
    $endgroup$
    – leonbloy
    Dec 16 '18 at 3:43








1




1




$begingroup$
@gd1035 That's wrong. Actually it should be $E([a-Y]^2 | X+Y=a)$ .. which of course is not easier than the original :-)
$endgroup$
– leonbloy
Dec 16 '18 at 3:43




$begingroup$
@gd1035 That's wrong. Actually it should be $E([a-Y]^2 | X+Y=a)$ .. which of course is not easier than the original :-)
$endgroup$
– leonbloy
Dec 16 '18 at 3:43










1 Answer
1






active

oldest

votes


















6












$begingroup$

Find joint density function of $U=X$ and $V=X+Y$ via transformation rule. Then we have
$$
f_{U,V}(u,v) = 1_{{0<u<1,; 0<v-u<1}}.
$$
We can compute conditional pdf $f_{U|V}(u|v)$ as follows.
$$
f_{U|V}(u|v)=frac{f_{U,V}(u,v)}{f_V(v)} = begin{cases}frac{1}{v}1_{{0<u<1,; 0<v-u<1}} text{ for }vin (0,1)\frac{1}{2-v}1_{{0<u<1,; 0<v-u<1}}text{ for }vin (1,2)
end{cases}$$
What is left is to actually calculate $E[U^2|V=v]$ as follows.
$$
E[U^2|V=v] = int u^2f_{U|V}(u|v)du = frac{1}{v}int_{{0<u<1,; v-1<u<v}} u^2 du = frac{1}{v}int_0^v u^2du = frac{v^2}{3}
$$
for $vin (0,1)$ and
$$
frac{1}{2-v}int_{{0<u<1,; v-1<u<v}} u^2 du = frac{1}{2-v}int_{v-1}^1 u^2 du = frac{1}{2-v}frac{u^3}{3}Big|^{u=1}_{u=v-1} = frac{v^2-v+1}{3}.
$$






share|cite|improve this answer









$endgroup$













  • $begingroup$
    It's very nice!! Thank you!!
    $endgroup$
    – Jimmy Sabater
    Dec 16 '18 at 18:58










  • $begingroup$
    but, question, why do you condition on $V=v$? Isnt it a constant $a$?
    $endgroup$
    – Jimmy Sabater
    Dec 16 '18 at 18:59










  • $begingroup$
    Oh, it's my mistake. Maybe it was for notational consistency. But it may not cause problem because one can read $v$ appearing in all the expressions as $a$.
    $endgroup$
    – Song
    Dec 16 '18 at 19:09











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%2f3042167%2fcomputing-conditional-expectation-of-independent-uniform-rv%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









6












$begingroup$

Find joint density function of $U=X$ and $V=X+Y$ via transformation rule. Then we have
$$
f_{U,V}(u,v) = 1_{{0<u<1,; 0<v-u<1}}.
$$
We can compute conditional pdf $f_{U|V}(u|v)$ as follows.
$$
f_{U|V}(u|v)=frac{f_{U,V}(u,v)}{f_V(v)} = begin{cases}frac{1}{v}1_{{0<u<1,; 0<v-u<1}} text{ for }vin (0,1)\frac{1}{2-v}1_{{0<u<1,; 0<v-u<1}}text{ for }vin (1,2)
end{cases}$$
What is left is to actually calculate $E[U^2|V=v]$ as follows.
$$
E[U^2|V=v] = int u^2f_{U|V}(u|v)du = frac{1}{v}int_{{0<u<1,; v-1<u<v}} u^2 du = frac{1}{v}int_0^v u^2du = frac{v^2}{3}
$$
for $vin (0,1)$ and
$$
frac{1}{2-v}int_{{0<u<1,; v-1<u<v}} u^2 du = frac{1}{2-v}int_{v-1}^1 u^2 du = frac{1}{2-v}frac{u^3}{3}Big|^{u=1}_{u=v-1} = frac{v^2-v+1}{3}.
$$






share|cite|improve this answer









$endgroup$













  • $begingroup$
    It's very nice!! Thank you!!
    $endgroup$
    – Jimmy Sabater
    Dec 16 '18 at 18:58










  • $begingroup$
    but, question, why do you condition on $V=v$? Isnt it a constant $a$?
    $endgroup$
    – Jimmy Sabater
    Dec 16 '18 at 18:59










  • $begingroup$
    Oh, it's my mistake. Maybe it was for notational consistency. But it may not cause problem because one can read $v$ appearing in all the expressions as $a$.
    $endgroup$
    – Song
    Dec 16 '18 at 19:09
















6












$begingroup$

Find joint density function of $U=X$ and $V=X+Y$ via transformation rule. Then we have
$$
f_{U,V}(u,v) = 1_{{0<u<1,; 0<v-u<1}}.
$$
We can compute conditional pdf $f_{U|V}(u|v)$ as follows.
$$
f_{U|V}(u|v)=frac{f_{U,V}(u,v)}{f_V(v)} = begin{cases}frac{1}{v}1_{{0<u<1,; 0<v-u<1}} text{ for }vin (0,1)\frac{1}{2-v}1_{{0<u<1,; 0<v-u<1}}text{ for }vin (1,2)
end{cases}$$
What is left is to actually calculate $E[U^2|V=v]$ as follows.
$$
E[U^2|V=v] = int u^2f_{U|V}(u|v)du = frac{1}{v}int_{{0<u<1,; v-1<u<v}} u^2 du = frac{1}{v}int_0^v u^2du = frac{v^2}{3}
$$
for $vin (0,1)$ and
$$
frac{1}{2-v}int_{{0<u<1,; v-1<u<v}} u^2 du = frac{1}{2-v}int_{v-1}^1 u^2 du = frac{1}{2-v}frac{u^3}{3}Big|^{u=1}_{u=v-1} = frac{v^2-v+1}{3}.
$$






share|cite|improve this answer









$endgroup$













  • $begingroup$
    It's very nice!! Thank you!!
    $endgroup$
    – Jimmy Sabater
    Dec 16 '18 at 18:58










  • $begingroup$
    but, question, why do you condition on $V=v$? Isnt it a constant $a$?
    $endgroup$
    – Jimmy Sabater
    Dec 16 '18 at 18:59










  • $begingroup$
    Oh, it's my mistake. Maybe it was for notational consistency. But it may not cause problem because one can read $v$ appearing in all the expressions as $a$.
    $endgroup$
    – Song
    Dec 16 '18 at 19:09














6












6








6





$begingroup$

Find joint density function of $U=X$ and $V=X+Y$ via transformation rule. Then we have
$$
f_{U,V}(u,v) = 1_{{0<u<1,; 0<v-u<1}}.
$$
We can compute conditional pdf $f_{U|V}(u|v)$ as follows.
$$
f_{U|V}(u|v)=frac{f_{U,V}(u,v)}{f_V(v)} = begin{cases}frac{1}{v}1_{{0<u<1,; 0<v-u<1}} text{ for }vin (0,1)\frac{1}{2-v}1_{{0<u<1,; 0<v-u<1}}text{ for }vin (1,2)
end{cases}$$
What is left is to actually calculate $E[U^2|V=v]$ as follows.
$$
E[U^2|V=v] = int u^2f_{U|V}(u|v)du = frac{1}{v}int_{{0<u<1,; v-1<u<v}} u^2 du = frac{1}{v}int_0^v u^2du = frac{v^2}{3}
$$
for $vin (0,1)$ and
$$
frac{1}{2-v}int_{{0<u<1,; v-1<u<v}} u^2 du = frac{1}{2-v}int_{v-1}^1 u^2 du = frac{1}{2-v}frac{u^3}{3}Big|^{u=1}_{u=v-1} = frac{v^2-v+1}{3}.
$$






share|cite|improve this answer









$endgroup$



Find joint density function of $U=X$ and $V=X+Y$ via transformation rule. Then we have
$$
f_{U,V}(u,v) = 1_{{0<u<1,; 0<v-u<1}}.
$$
We can compute conditional pdf $f_{U|V}(u|v)$ as follows.
$$
f_{U|V}(u|v)=frac{f_{U,V}(u,v)}{f_V(v)} = begin{cases}frac{1}{v}1_{{0<u<1,; 0<v-u<1}} text{ for }vin (0,1)\frac{1}{2-v}1_{{0<u<1,; 0<v-u<1}}text{ for }vin (1,2)
end{cases}$$
What is left is to actually calculate $E[U^2|V=v]$ as follows.
$$
E[U^2|V=v] = int u^2f_{U|V}(u|v)du = frac{1}{v}int_{{0<u<1,; v-1<u<v}} u^2 du = frac{1}{v}int_0^v u^2du = frac{v^2}{3}
$$
for $vin (0,1)$ and
$$
frac{1}{2-v}int_{{0<u<1,; v-1<u<v}} u^2 du = frac{1}{2-v}int_{v-1}^1 u^2 du = frac{1}{2-v}frac{u^3}{3}Big|^{u=1}_{u=v-1} = frac{v^2-v+1}{3}.
$$







share|cite|improve this answer












share|cite|improve this answer



share|cite|improve this answer










answered Dec 16 '18 at 4:02









SongSong

18.5k21651




18.5k21651












  • $begingroup$
    It's very nice!! Thank you!!
    $endgroup$
    – Jimmy Sabater
    Dec 16 '18 at 18:58










  • $begingroup$
    but, question, why do you condition on $V=v$? Isnt it a constant $a$?
    $endgroup$
    – Jimmy Sabater
    Dec 16 '18 at 18:59










  • $begingroup$
    Oh, it's my mistake. Maybe it was for notational consistency. But it may not cause problem because one can read $v$ appearing in all the expressions as $a$.
    $endgroup$
    – Song
    Dec 16 '18 at 19:09


















  • $begingroup$
    It's very nice!! Thank you!!
    $endgroup$
    – Jimmy Sabater
    Dec 16 '18 at 18:58










  • $begingroup$
    but, question, why do you condition on $V=v$? Isnt it a constant $a$?
    $endgroup$
    – Jimmy Sabater
    Dec 16 '18 at 18:59










  • $begingroup$
    Oh, it's my mistake. Maybe it was for notational consistency. But it may not cause problem because one can read $v$ appearing in all the expressions as $a$.
    $endgroup$
    – Song
    Dec 16 '18 at 19:09
















$begingroup$
It's very nice!! Thank you!!
$endgroup$
– Jimmy Sabater
Dec 16 '18 at 18:58




$begingroup$
It's very nice!! Thank you!!
$endgroup$
– Jimmy Sabater
Dec 16 '18 at 18:58












$begingroup$
but, question, why do you condition on $V=v$? Isnt it a constant $a$?
$endgroup$
– Jimmy Sabater
Dec 16 '18 at 18:59




$begingroup$
but, question, why do you condition on $V=v$? Isnt it a constant $a$?
$endgroup$
– Jimmy Sabater
Dec 16 '18 at 18:59












$begingroup$
Oh, it's my mistake. Maybe it was for notational consistency. But it may not cause problem because one can read $v$ appearing in all the expressions as $a$.
$endgroup$
– Song
Dec 16 '18 at 19:09




$begingroup$
Oh, it's my mistake. Maybe it was for notational consistency. But it may not cause problem because one can read $v$ appearing in all the expressions as $a$.
$endgroup$
– Song
Dec 16 '18 at 19:09


















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%2f3042167%2fcomputing-conditional-expectation-of-independent-uniform-rv%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

Human spaceflight

Can not write log (Is /dev/pts mounted?) - openpty in Ubuntu-on-Windows?

File:DeusFollowingSea.jpg