TheAlgorithms/C++ 1.0.0
All the algorithms implemented in C++
Loading...
Searching...
No Matches
addition_rule.cpp
Go to the documentation of this file.
1
5#include <iostream>
6
14double addition_rule_independent(double A, double B) {
15 return (A + B) - (A * B);
16}
17
25double addition_rule_dependent(double A, double B, double B_given_A) {
26 return (A + B) - (A * B_given_A);
27}
28
30int main() {
31 double A = 0.5;
32 double B = 0.25;
33 double B_given_A = 0.05;
34
35 std::cout << "independent P(A or B) = " << addition_rule_independent(A, B)
36 << std::endl;
37
38 std::cout << "dependent P(A or B) = "
39 << addition_rule_dependent(A, B, B_given_A) << std::endl;
40
41 return 0;
42}
double addition_rule_independent(double A, double B)
double addition_rule_dependent(double A, double B, double B_given_A)
int main()