Here is given an example of conditional probability. If you look at this part:
If they want to find the probabilities they have written out after the graph, they're supposed to do the following calculations:
Let events $L = \text{ Launch a Project }$, $S = \text{ Stock price increases }$
Then $P(L|S)=\frac{P(S|L)P(L)}{P(S)}$
$P(S|L)= 0.75$
$P(L)= 0.6$
$P(S)=P(S|L)P(L)+P(S|L^c)P(L^c)=0.75*0.6+0.4*0.3=0.45+0.12=0.57$
So $P(L|S) = \frac{0.75*0.6}{0.57}=0.45/0.57= 0.78$
So the way they write $P( \text{ Launch a project }|\text{ Stock increases })=0.75 * 0.6 = 0.45$, is wrong.
Am I correct?


Also according to me it is wrong, even if I am not used to these tree representation (but sounds intuitive).
One can make also a calculation without Bayes:
$p(L|S)=\frac{p(L,S)}{p(S)}=\frac{0.75*0.6}{0.75*0.6+0.4*0.3}=\frac{0.45}{0.57}\sim 0.79$
that is what you get. The calculation they did considers only the numerator for some reason ?