简体   繁体   中英

Proving the Associativity of OR

I need help proving the following:

(a ∨ b) ∨ c = a ∨ (b ∨ c)

I don't want the answer... just a hint that will help me understand the process of proving this.

Thank you.

Why not just prove it by doing all possible values of a , b and c = True , False ? -- there are only 2^3 = 8 different cases.

Here's a start, for a=T , b=F , c=T

(a v b) v c = a ∨ (b ∨ c)
(T v F) v T = T v (F v T)
      T v T = T v T
          T = T

(However, this isn't really a programming question...)

What is your axiom set?

Not knowing the set, you could build a truth table

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM