wj097
Thanks Received: 0
Atticus Finch
Atticus Finch
 
Posts: 123
Joined: September 10th, 2012
 
 
 

or // Either or // Either or but not both // Either or else

by wj097 Thu Feb 21, 2013 4:42 am

Hello,

I came across 4 different usage of "or" phrases, and understanding the differences was basically getting the problem right/wrong.
Would be great to verify!

1) A or B => A, B, A & B
2) Either A or B => A, B
3) Either A or B (but not both) => A, B
4) Either A or else B => A, B


Thx
 
patrice.antoine
Thanks Received: 35
Atticus Finch
Atticus Finch
 
Posts: 111
Joined: November 02nd, 2010
 
This post thanked 1 time.
 
 

Re: or // Either or // Either or but not both // Either or else

by patrice.antoine Thu Feb 21, 2013 11:27 am

wj097 Wrote:Hello,

I came across 4 different usage of "or" phrases, and understanding the differences was basically getting the problem right/wrong.
Would be great to verify!

1) A or B => A, B, A & B
2) Either A or B => A, B
3) Either A or B (but not both) => A, B
4) Either A or else B => A, B


Thx


Not an instructor but I thought the following:

2. Either A or B = can also mean A & B (similar to your first scenario)

4. Either A or else B = I thought this mean ~A --> B/~B --> A. Meaning both CANNOT be out.