Is E(A+B|C) Equal to E(A|C) + E(B|C)?

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
5 replies · 4K views
CantorSet
Messages
44
Reaction score
0
Hi everyone,

I have a feeling the following property is true but I can't find it stated in any textbook/online reference. Maybe it's not true... Can someone verify/disprove this equation?

[itex]E(A+B|C) = E(A|C) + E(B|C)[/itex]
 
Physics news on Phys.org
CantorSet said:
Hi everyone,

I have a feeling the following property is true but I can't find it stated in any textbook/online reference. Maybe it's not true... Can someone verify/disprove this equation?

[itex]E(A+B|C) = E(A|C) + E(B|C)[/itex]

Is this a homework question?

Regardless of your answer, what do you know about the definition of expectation and in particular conditional expectation?
 
If you mean E((A+B)|C) by E(A+ B|C) , yes.
 
chiro said:
Is this a homework question?

Regardless of your answer, what do you know about the definition of expectation and in particular conditional expectation?

It's not a homework question.

By definition of conditional expectation, we have in the discrete case
[itex]E(A|C=c) = \sum_{a} a P(A=a|C=c)[/itex]

[itex]E(B|C=c) = \sum_{b} b P(B=b|C=c)[/itex]

[itex]E((A+B)|C=c) = \sum_{a,b} (a+b) P(A=a,B=b|C=c)[/itex]

It doesn't seem like the sum of the first two should equal the last. But maybe my sum formula for the last one is wrong.
 
We should be able to make progress in simplifying:
CantorSet said:
[itex]E((A+B)|C=c) = \sum_{a,b} (a+b) P(A=a,B=b|C=c)[/itex]
because proving [itex]E(A+B) = E(A) + E(B)[/itex] would involve dealing with a similar equation.

[itex]\sum_{a,b}(a+b) P(A=a,B=b|C=c) = \sum_{a,b}a P(A=a,B=b|C=c) + \sum_{a,b} b P(A=a,B=b|C=c)[/itex]

[itex]= \sum_a \sum_b a P(A=a,B=b|C=c) + \sum_a \sum_b b P(A=a,B=b|C=c)[/itex]

[itex]= \sum_a a \sum_b P(A=a,B=b|C=c) = \sum_b b \sum_a P(A=a,B=b|C=c)[/itex]

[itex]= \sum_a a P(A=a|C=c) + \sum_b b P(B=b|C=c)[/itex]
 
Stephen Tashi said:
We should be able to make progress in simplifying:

because proving [itex]E(A+B) = E(A) + E(B)[/itex] would involve dealing with a similar equation.

[itex]\sum_{a,b}(a+b) P(A=a,B=b|C=c) = \sum_{a,b}a P(A=a,B=b|C=c) + \sum_{a,b} b P(A=a,B=b|C=c)[/itex]

[itex]= \sum_a \sum_b a P(A=a,B=b|C=c) + \sum_a \sum_b b P(A=a,B=b|C=c)[/itex]

[itex]= \sum_a a \sum_b P(A=a,B=b|C=c) = \sum_b b \sum_a P(A=a,B=b|C=c)[/itex]

[itex]= \sum_a a P(A=a|C=c) + \sum_b b P(B=b|C=c)[/itex]
Thanks.