Ʌ
And
V
Or
Y = X_2 X_5
If x_2 and x_5 then Y = true, if not then Y = false.
Y = X_2 V X_5
If x_2 or if x_5 then Y = true, if not then false.
¬X_1
Not x_1, so if x_1 then Y = false.
Y = X_2 X_5 V X_3 ¬X_1
If x_2 and x_5 or if x_3 and not x_1, then true, else false.