finding probability of joint distribution.
I am given a joint density function of two random variables $X$ and $Y$ which is as follows:
$$
f(x,y) = left{
begin{array}{ll}
frac{1}{210}(2x+y) & quad 2<x <6, 0<y<5 \
0 & quadtext{otherwise}
end{array}
right.
$$
Now I want to calculate the probability $P(X+Y < 4)$. Will I do it like this?:
$$ int_{0}^{4}int_{2}^{4} frac{1}{210}(2x+y) dxdy $$
probability probability-distributions
add a comment |
I am given a joint density function of two random variables $X$ and $Y$ which is as follows:
$$
f(x,y) = left{
begin{array}{ll}
frac{1}{210}(2x+y) & quad 2<x <6, 0<y<5 \
0 & quadtext{otherwise}
end{array}
right.
$$
Now I want to calculate the probability $P(X+Y < 4)$. Will I do it like this?:
$$ int_{0}^{4}int_{2}^{4} frac{1}{210}(2x+y) dxdy $$
probability probability-distributions
add a comment |
I am given a joint density function of two random variables $X$ and $Y$ which is as follows:
$$
f(x,y) = left{
begin{array}{ll}
frac{1}{210}(2x+y) & quad 2<x <6, 0<y<5 \
0 & quadtext{otherwise}
end{array}
right.
$$
Now I want to calculate the probability $P(X+Y < 4)$. Will I do it like this?:
$$ int_{0}^{4}int_{2}^{4} frac{1}{210}(2x+y) dxdy $$
probability probability-distributions
I am given a joint density function of two random variables $X$ and $Y$ which is as follows:
$$
f(x,y) = left{
begin{array}{ll}
frac{1}{210}(2x+y) & quad 2<x <6, 0<y<5 \
0 & quadtext{otherwise}
end{array}
right.
$$
Now I want to calculate the probability $P(X+Y < 4)$. Will I do it like this?:
$$ int_{0}^{4}int_{2}^{4} frac{1}{210}(2x+y) dxdy $$
probability probability-distributions
probability probability-distributions
edited Dec 26 '18 at 18:17
APC89
1,926418
1,926418
asked Dec 26 '18 at 18:16
Ahmad Qayyum
555
555
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
This is technically an exercise on multiple integrals, and in these cases you would realise that your job becomes easier if you can picture the desired region of integration.
Proceed step by step to focus on the domain of integration.
begin{align}
P(X+Y<4)&=Eleft[mathbf1_{X+Y<4}right]
\&=iint mathbf1_{x+y<4},f(x,y),dx,dy
\&=frac{1}{210}iint mathbf1_{x+y<4},(2x+y)mathbf1_{2<x<6,,0<y<5},dx,dy
\&=frac{1}{210}iint (2x+y),mathbf1_{x+y<4,,2<x<6,,0<y<5},dx,dy
end{align}
This is how the region ${(x,y):x+y<4,,2<x<6,,0<y<5}$ looks like:
Can you evaluate the double integral now, keeping any one of $x$ and $y$ fixed at a time depending on ease of computation ?
so what will be the limits over the integrals?
– Ahmad Qayyum
Dec 26 '18 at 19:25
@AhmadQayyum You tell me.
– StubbornAtom
Dec 26 '18 at 19:26
will these be the limits?: $$ int_{0}^{4-x}int_{2}^{4} frac{1}{210}(2x+y) dxdy $$
– Ahmad Qayyum
Dec 26 '18 at 19:28
after i solved it i got the final expression as: $ frac{1}{210}(x-16)(x-4) $. Is it correct or do I have to solve it further?
– Ahmad Qayyum
Dec 26 '18 at 19:40
1
@AhmadQayyum Sorry, it is rather $$int_2^4 int_0^{4-x}...,dy,dx$$ Since you are keeping $x$ free and $y$ dependent on $x$, you have to integrate wrt $y$ first and then $x$.
– StubbornAtom
Dec 26 '18 at 19:49
|
show 1 more comment
No, that integral gives $mathbb{P}(2leq Xleq 4,, 0leq Y leq 4)$. For example, this includes $(4,4)$ which clearly does not satisfy $X + Y < 4$. You're integrating over a rectangular region, you should be integrating over a triangular region. Try
$$
int_2^4int_0^{4-x} frac{1}{210}(2x+y),dy,dx
$$
You're right, edited. Thanks!
– Alex
Dec 26 '18 at 21:18
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3053171%2ffinding-probability-of-joint-distribution%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
This is technically an exercise on multiple integrals, and in these cases you would realise that your job becomes easier if you can picture the desired region of integration.
Proceed step by step to focus on the domain of integration.
begin{align}
P(X+Y<4)&=Eleft[mathbf1_{X+Y<4}right]
\&=iint mathbf1_{x+y<4},f(x,y),dx,dy
\&=frac{1}{210}iint mathbf1_{x+y<4},(2x+y)mathbf1_{2<x<6,,0<y<5},dx,dy
\&=frac{1}{210}iint (2x+y),mathbf1_{x+y<4,,2<x<6,,0<y<5},dx,dy
end{align}
This is how the region ${(x,y):x+y<4,,2<x<6,,0<y<5}$ looks like:
Can you evaluate the double integral now, keeping any one of $x$ and $y$ fixed at a time depending on ease of computation ?
so what will be the limits over the integrals?
– Ahmad Qayyum
Dec 26 '18 at 19:25
@AhmadQayyum You tell me.
– StubbornAtom
Dec 26 '18 at 19:26
will these be the limits?: $$ int_{0}^{4-x}int_{2}^{4} frac{1}{210}(2x+y) dxdy $$
– Ahmad Qayyum
Dec 26 '18 at 19:28
after i solved it i got the final expression as: $ frac{1}{210}(x-16)(x-4) $. Is it correct or do I have to solve it further?
– Ahmad Qayyum
Dec 26 '18 at 19:40
1
@AhmadQayyum Sorry, it is rather $$int_2^4 int_0^{4-x}...,dy,dx$$ Since you are keeping $x$ free and $y$ dependent on $x$, you have to integrate wrt $y$ first and then $x$.
– StubbornAtom
Dec 26 '18 at 19:49
|
show 1 more comment
This is technically an exercise on multiple integrals, and in these cases you would realise that your job becomes easier if you can picture the desired region of integration.
Proceed step by step to focus on the domain of integration.
begin{align}
P(X+Y<4)&=Eleft[mathbf1_{X+Y<4}right]
\&=iint mathbf1_{x+y<4},f(x,y),dx,dy
\&=frac{1}{210}iint mathbf1_{x+y<4},(2x+y)mathbf1_{2<x<6,,0<y<5},dx,dy
\&=frac{1}{210}iint (2x+y),mathbf1_{x+y<4,,2<x<6,,0<y<5},dx,dy
end{align}
This is how the region ${(x,y):x+y<4,,2<x<6,,0<y<5}$ looks like:
Can you evaluate the double integral now, keeping any one of $x$ and $y$ fixed at a time depending on ease of computation ?
so what will be the limits over the integrals?
– Ahmad Qayyum
Dec 26 '18 at 19:25
@AhmadQayyum You tell me.
– StubbornAtom
Dec 26 '18 at 19:26
will these be the limits?: $$ int_{0}^{4-x}int_{2}^{4} frac{1}{210}(2x+y) dxdy $$
– Ahmad Qayyum
Dec 26 '18 at 19:28
after i solved it i got the final expression as: $ frac{1}{210}(x-16)(x-4) $. Is it correct or do I have to solve it further?
– Ahmad Qayyum
Dec 26 '18 at 19:40
1
@AhmadQayyum Sorry, it is rather $$int_2^4 int_0^{4-x}...,dy,dx$$ Since you are keeping $x$ free and $y$ dependent on $x$, you have to integrate wrt $y$ first and then $x$.
– StubbornAtom
Dec 26 '18 at 19:49
|
show 1 more comment
This is technically an exercise on multiple integrals, and in these cases you would realise that your job becomes easier if you can picture the desired region of integration.
Proceed step by step to focus on the domain of integration.
begin{align}
P(X+Y<4)&=Eleft[mathbf1_{X+Y<4}right]
\&=iint mathbf1_{x+y<4},f(x,y),dx,dy
\&=frac{1}{210}iint mathbf1_{x+y<4},(2x+y)mathbf1_{2<x<6,,0<y<5},dx,dy
\&=frac{1}{210}iint (2x+y),mathbf1_{x+y<4,,2<x<6,,0<y<5},dx,dy
end{align}
This is how the region ${(x,y):x+y<4,,2<x<6,,0<y<5}$ looks like:
Can you evaluate the double integral now, keeping any one of $x$ and $y$ fixed at a time depending on ease of computation ?
This is technically an exercise on multiple integrals, and in these cases you would realise that your job becomes easier if you can picture the desired region of integration.
Proceed step by step to focus on the domain of integration.
begin{align}
P(X+Y<4)&=Eleft[mathbf1_{X+Y<4}right]
\&=iint mathbf1_{x+y<4},f(x,y),dx,dy
\&=frac{1}{210}iint mathbf1_{x+y<4},(2x+y)mathbf1_{2<x<6,,0<y<5},dx,dy
\&=frac{1}{210}iint (2x+y),mathbf1_{x+y<4,,2<x<6,,0<y<5},dx,dy
end{align}
This is how the region ${(x,y):x+y<4,,2<x<6,,0<y<5}$ looks like:
Can you evaluate the double integral now, keeping any one of $x$ and $y$ fixed at a time depending on ease of computation ?
edited Dec 26 '18 at 19:22
answered Dec 26 '18 at 18:57
StubbornAtom
5,29211138
5,29211138
so what will be the limits over the integrals?
– Ahmad Qayyum
Dec 26 '18 at 19:25
@AhmadQayyum You tell me.
– StubbornAtom
Dec 26 '18 at 19:26
will these be the limits?: $$ int_{0}^{4-x}int_{2}^{4} frac{1}{210}(2x+y) dxdy $$
– Ahmad Qayyum
Dec 26 '18 at 19:28
after i solved it i got the final expression as: $ frac{1}{210}(x-16)(x-4) $. Is it correct or do I have to solve it further?
– Ahmad Qayyum
Dec 26 '18 at 19:40
1
@AhmadQayyum Sorry, it is rather $$int_2^4 int_0^{4-x}...,dy,dx$$ Since you are keeping $x$ free and $y$ dependent on $x$, you have to integrate wrt $y$ first and then $x$.
– StubbornAtom
Dec 26 '18 at 19:49
|
show 1 more comment
so what will be the limits over the integrals?
– Ahmad Qayyum
Dec 26 '18 at 19:25
@AhmadQayyum You tell me.
– StubbornAtom
Dec 26 '18 at 19:26
will these be the limits?: $$ int_{0}^{4-x}int_{2}^{4} frac{1}{210}(2x+y) dxdy $$
– Ahmad Qayyum
Dec 26 '18 at 19:28
after i solved it i got the final expression as: $ frac{1}{210}(x-16)(x-4) $. Is it correct or do I have to solve it further?
– Ahmad Qayyum
Dec 26 '18 at 19:40
1
@AhmadQayyum Sorry, it is rather $$int_2^4 int_0^{4-x}...,dy,dx$$ Since you are keeping $x$ free and $y$ dependent on $x$, you have to integrate wrt $y$ first and then $x$.
– StubbornAtom
Dec 26 '18 at 19:49
so what will be the limits over the integrals?
– Ahmad Qayyum
Dec 26 '18 at 19:25
so what will be the limits over the integrals?
– Ahmad Qayyum
Dec 26 '18 at 19:25
@AhmadQayyum You tell me.
– StubbornAtom
Dec 26 '18 at 19:26
@AhmadQayyum You tell me.
– StubbornAtom
Dec 26 '18 at 19:26
will these be the limits?: $$ int_{0}^{4-x}int_{2}^{4} frac{1}{210}(2x+y) dxdy $$
– Ahmad Qayyum
Dec 26 '18 at 19:28
will these be the limits?: $$ int_{0}^{4-x}int_{2}^{4} frac{1}{210}(2x+y) dxdy $$
– Ahmad Qayyum
Dec 26 '18 at 19:28
after i solved it i got the final expression as: $ frac{1}{210}(x-16)(x-4) $. Is it correct or do I have to solve it further?
– Ahmad Qayyum
Dec 26 '18 at 19:40
after i solved it i got the final expression as: $ frac{1}{210}(x-16)(x-4) $. Is it correct or do I have to solve it further?
– Ahmad Qayyum
Dec 26 '18 at 19:40
1
1
@AhmadQayyum Sorry, it is rather $$int_2^4 int_0^{4-x}...,dy,dx$$ Since you are keeping $x$ free and $y$ dependent on $x$, you have to integrate wrt $y$ first and then $x$.
– StubbornAtom
Dec 26 '18 at 19:49
@AhmadQayyum Sorry, it is rather $$int_2^4 int_0^{4-x}...,dy,dx$$ Since you are keeping $x$ free and $y$ dependent on $x$, you have to integrate wrt $y$ first and then $x$.
– StubbornAtom
Dec 26 '18 at 19:49
|
show 1 more comment
No, that integral gives $mathbb{P}(2leq Xleq 4,, 0leq Y leq 4)$. For example, this includes $(4,4)$ which clearly does not satisfy $X + Y < 4$. You're integrating over a rectangular region, you should be integrating over a triangular region. Try
$$
int_2^4int_0^{4-x} frac{1}{210}(2x+y),dy,dx
$$
You're right, edited. Thanks!
– Alex
Dec 26 '18 at 21:18
add a comment |
No, that integral gives $mathbb{P}(2leq Xleq 4,, 0leq Y leq 4)$. For example, this includes $(4,4)$ which clearly does not satisfy $X + Y < 4$. You're integrating over a rectangular region, you should be integrating over a triangular region. Try
$$
int_2^4int_0^{4-x} frac{1}{210}(2x+y),dy,dx
$$
You're right, edited. Thanks!
– Alex
Dec 26 '18 at 21:18
add a comment |
No, that integral gives $mathbb{P}(2leq Xleq 4,, 0leq Y leq 4)$. For example, this includes $(4,4)$ which clearly does not satisfy $X + Y < 4$. You're integrating over a rectangular region, you should be integrating over a triangular region. Try
$$
int_2^4int_0^{4-x} frac{1}{210}(2x+y),dy,dx
$$
No, that integral gives $mathbb{P}(2leq Xleq 4,, 0leq Y leq 4)$. For example, this includes $(4,4)$ which clearly does not satisfy $X + Y < 4$. You're integrating over a rectangular region, you should be integrating over a triangular region. Try
$$
int_2^4int_0^{4-x} frac{1}{210}(2x+y),dy,dx
$$
edited Dec 26 '18 at 21:18
answered Dec 26 '18 at 18:22
Alex
1777
1777
You're right, edited. Thanks!
– Alex
Dec 26 '18 at 21:18
add a comment |
You're right, edited. Thanks!
– Alex
Dec 26 '18 at 21:18
You're right, edited. Thanks!
– Alex
Dec 26 '18 at 21:18
You're right, edited. Thanks!
– Alex
Dec 26 '18 at 21:18
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3053171%2ffinding-probability-of-joint-distribution%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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