TU Wien:Statistik und Wahrscheinlichkeitstheorie UE (Levajkovic)/Übungen 2023W/HW01.3

Aus VoWi
Zur Navigation springen Zur Suche springen
Independent events/disjoint events

For three events , and we know that and are independent, and are independent, and and are disjoint. The probabilities , ,

are also given. Find , and .

Dieses Beispiel ist als solved markiert. Ist dies falsch oder ungenau? Aktualisiere den Lösungsstatus (Details: Vorlage:Beispiel)


Lösungsvorschlag von Lessi[Bearbeiten | Quelltext bearbeiten]

--Lessi 2024-02-07T13:04:11Z

Using Inclusion-Exclusion-Principle the given probabilities can be expanded:

Since A and B are disjoint we can expand and using the first two equations. After subtraction of probabilities we get:

Since A and C are independent we can deduce as follows:

ac <- 2 / 3
bc <- 3 / 4
abc <- 11 / 12

c(ac, bc, abc)

# calculate P(C)
c <- ac + bc - abc

# calculate P(A)
a <- (ac - c) / (1 - c)

# calculate P(B)
b <- (bc - c) / (1 - c)

c(a, b, c)

# checking
a + c - (a * c)

b + c - (b * c)

a + b + c - (a * c) - (b * c)