Designing bayesian networks

Posted by devoured elysium on Stack Overflow See other posts from Stack Overflow or by devoured elysium
Published on 2010-01-27T08:52:14Z Indexed on 2010/04/14 0:03 UTC
Read the original article Hit count: 378

I have a basic question about Bayesian networks.

  1. Let's assume we have an engine, that with 1/3 probability can stop working. I'll call this variable ENGINE.
  2. If it stops working, then your car doesn't work. If the engine is working, then your car will work 99% of the time. I'll call this one CAR.
  3. Now, if your car is old(OLD), instead of not working 1/3 of the time, your engine will stop working 1/2 of the time.

I'm being asked to first design the network and then assign all the conditional probabilities associated with the table.

I'd say the diagram of this network would be something like

OLD -> ENGINE -> CAR

Now, for the conditional probabilities tables I did the following:

OLD   |ENGINE
------------
True  | 0.50
False | 0.33

and

ENGINE|CAR
------------
True  | 0.99
False | 0.00

Now, I am having trouble about how to define the probabilities of OLD. In my point of view, old is not something that has a CAUSE relationship with ENGINE, I'd say it is more a characteristic of it. Maybe there is a different way to express this in the diagram? If the diagram is indeed correct, how would I go to make the tables?

Thanks

© Stack Overflow or respective owner

Related posts about homework

Related posts about bayesian-networks