Decision Trees Flashcards
1
Q
Ʌ
A
And
2
Q
V
A
Or
3
Q
Y = X_2 X_5
A
If x_2 and x_5 then Y = true, if not then Y = false.
4
Q
Y = X_2 V X_5
A
If x_2 or if x_5 then Y = true, if not then false.
5
Q
¬X_1
A
Not x_1, so if x_1 then Y = false.
6
Q
Y = X_2 X_5 V X_3 ¬X_1
A
If x_2 and x_5 or if x_3 and not x_1, then true, else false.