vote up 0 vote down star
1

Hello,

I am trying to work out the expression for a probability distribution (related to bioinformatics), and am having trouble combining the information about a random variable from two different sources. Essentially, here is the scenario: There are 3 discrete random variables X, A & B. X depends on A and B. A and B are related only through X, i.e. A and B are independent given X. Now, I have derived the expressions for: P(X, A) and P(X, B). I need to calculate P(X, A, B) - this is not a straightforward application of the chain rule.

I can derive P(X | A) from the first expression since P(A) is available. B is never observed independently of A, P(B) is not readily available - at best I can approximate it by marginalizing over A, but the expression P(A, B) does not have a closed form so the integration is tricky.

Any thoughts on how P(X, A, B) can be derived, without discarding information? Many thanks in advance.

Amit

flag
Every bit of probability work that I've ever done has been in the context of developing software. Thus, I don't understand why anyone would vote to close this question. – Mark Brittingham Mar 19 at 20:46

3 Answers

vote up 0 vote down check

What you're dealing with here is an undirected acyclic graph. A is conditionally independent of B given X, but X depends (I assume directly) on A and B. I'm a little confused about the nature of your problem, i.e. what form your probability distributions are specified in, but you could look at belief propagation.

link|flag
Thanks a lot. I found a reaally useful lecture on belief propagation - mlg.eng.cam.ac.uk/teaching/4f13/… I had studied belief propagation at the uni (a while ago now), but using it here never occurred to me. – unknown (google) Mar 20 at 12:44
vote up 0 vote down

Your question is very unclear in terms of what you observe and what are unknowns. It seems like the only fact that you state clearly is A and B are independent given X. That is,

Assumption: P(A,B|X)=P(A|X)P(B|X)

Hence: P(A,B,X)=P(A,B|X)P(X)=P(A|X)P(B|X)P(X)=P(A,X)P(X)=P(B,X)P(X)

Take your pick of factorizations.

link|flag
The problem is to deduce the genetic information in the father of a child, given the genetic make-up of the mother & child. X is the kid's genome while A & B are the parents'. We have observed B, and have a distribution available for A. Genetic inheritance rules that let us derive P(X,A) and P(X,B). – unknown (google) Mar 20 at 12:51
dsimcha's tip about belief networks proved very useful - the whole theory appears to be tailor-made for this scenario! Thanks. – unknown (google) Mar 20 at 12:52
vote up 0 vote down

Ok, it has been a long time since I've done joint probabilities so take this with a big grain of salt but the first place I would start looking, given that A and B are orthogonal, is for an expression something like:

P(X, A, B) = P(X,A) + (P(X,B) * (1-P(X,A)));

Again, this is just to give you an idea to explore as it has been a very long time since I did this type of work!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.