Formal Logic help!! Forum
-
- Posts: 35
- Joined: Sat May 12, 2012 2:51 pm
Formal Logic help!!
I am having difficulty in making FL diagram involving either or. How do you make FL diagram and its contrapositive with the 3 cases listed below? Thanks in advance
1. Either A or B or both
Ex) if either A or B or both are present, then so is C.
2. Either A or B but not both
Ex) if either A or B but not both are present, then C is.
3. If it is not the case that both A and B are present, then C is.
1. Either A or B or both
Ex) if either A or B or both are present, then so is C.
2. Either A or B but not both
Ex) if either A or B but not both are present, then C is.
3. If it is not the case that both A and B are present, then C is.
- Cerebro
- Posts: 235
- Joined: Thu Aug 09, 2012 9:22 pm
Re: Formal Logic help!!
A or B --> Ckky215 wrote: 1. Either A or B or both
Ex) if either A or B or both are present, then so is C.
If you prefer function syntax:
OR(A,B) --> C
you can do:kky215 wrote: 2. Either A or B but not both
Ex) if either A or B but not both are present, then C is.
(A or B) and ~(A and B) ---> C
or more compact using xor (exclusive or) -- NOTE: Haven't seen this mentioned in PS material, not sure if other books use this or not, but I do:
A xor B ---> C
If you prefer function syntax:
XOR(A,B) ---> C
~A and ~B ---> Ckky215 wrote: 3. If it is not the case that both A and B are present, then C is.
or
~(A and B) ---> C
function syntax (for completeness):
~AND(A,B) ---> C
-
- Posts: 170
- Joined: Fri Jun 27, 2008 10:49 am
Re: Formal Logic help!!
1.
Contrapositive of the "Ex"
~C --> ~(A or B)
2.
Contrapositive of the "Ex"
~C --> (A & B) and ~(A or B)
3. Contrapositive
~C --> (A & B)
Contrapositive of the "Ex"
~C --> ~(A or B)
2.
Contrapositive of the "Ex"
~C --> (A & B) and ~(A or B)
3. Contrapositive
~C --> (A & B)
-
- Posts: 193
- Joined: Fri Dec 26, 2008 8:05 pm
Re: Formal Logic help!!
This is the easy stuff. Wait till you have to diagram stuff like "Neither Ross nor Ann is a vegan or vegetarian"
-
- Posts: 35
- Joined: Sat May 12, 2012 2:51 pm
Re: Formal Logic help!!
~ross and ~ann --> vegan or vegetarian
~vegan and ~vegetarian --> ross or ann
No?
~vegan and ~vegetarian --> ross or ann
No?
Joeshan520 wrote:This is the easy stuff. Wait till you have to diagram stuff like "Neither Ross nor Ann is a vegan or vegetarian"
Want to continue reading?
Register now to search topics and post comments!
Absolutely FREE!
Already a member? Login
- gaud
- Posts: 5765
- Joined: Sat Feb 05, 2011 2:58 am
-
- Posts: 35
- Joined: Sat May 12, 2012 2:51 pm
Re: Formal Logic help!!
Thanks for clearing this up.
Cerebro wrote:A or B --> Ckky215 wrote: 1. Either A or B or both
Ex) if either A or B or both are present, then so is C.
If you prefer function syntax:
OR(A,B) --> C
you can do:kky215 wrote: 2. Either A or B but not both
Ex) if either A or B but not both are present, then C is.
(A or B) and ~(A and B) ---> C
or more compact using xor (exclusive or) -- NOTE: Haven't seen this mentioned in PS material, not sure if other books use this or not, but I do:
A xor B ---> C
If you prefer function syntax:
XOR(A,B) ---> C
~A and ~B ---> Ckky215 wrote: 3. If it is not the case that both A and B are present, then C is.
or
~(A and B) ---> C
function syntax (for completeness):
~AND(A,B) ---> C
- Cerebro
- Posts: 235
- Joined: Thu Aug 09, 2012 9:22 pm
Re: Formal Logic help!!
I don't know if it helps you or not, but I've sometimes found it helpful to construct truth tables using Excel (or you can draw them out manually using a pencil and piece of paper). The one below is a very simple example based on the two variables, A and B, that were discussed in the OP. You should be able to understand what these notations mean automatically when working with these expressions, but if you are confused about what ~(A xor B) means, for example, the visualization in a table like this might be useful to help your understanding.


-
- Posts: 74
- Joined: Wed Jun 20, 2012 11:20 pm
Re: Formal Logic help!!
1. Either A or B or both
Ex) if either A or B or both are present, then so is C.
The LSAT only uses Inclusive Or, which can also be expressed as And/Or. When you see A or B on the LSAT, you can assume it means And/Or.
So, either A or B or both = A or B
1. Ex: (A or B) > C
Sometimes it’s useful to separate them:
(A > C) and (B > C)
The contrapositive is ~C > ~(A or B) which can be simplified to:
~C > ~ A & ~ B
By DeMorgan’s Laws.
By the way, either A or B (using inclusive Or = And/Or) is logially equivalent to ~A > B and also logically equivalent to Unless.
2. Either A or B but not both.
[(A or B) & ~(A & B)] this could also be expressed as:
[(~A > B) & (A > ~B)].
In English this would be expressed as:
“Not Neither A Nor B, AND Not Both A and B”.
2. Ex:
[(~A > B) & (A > ~B)] > C
Contrapositve is~C > ~[(~A > B) & (A > ~B)] which can be simplified to:
~C > [~(~A > B) or ~(A > ~B)] which can be simplified to:
~C >[(~A & ~B) or (A & B)] Again, by DeMorgan’s Laws
In English, the contrapositive would be expressed as “Neither Or Both”.
3. If it is not the case that both A and B are present, then C is.
~(A & B) > C which can be simplified to:
~A or ~B > C
Contrapositive: ~C > (A & B)
Ex) if either A or B or both are present, then so is C.
The LSAT only uses Inclusive Or, which can also be expressed as And/Or. When you see A or B on the LSAT, you can assume it means And/Or.
So, either A or B or both = A or B
1. Ex: (A or B) > C
Sometimes it’s useful to separate them:
(A > C) and (B > C)
The contrapositive is ~C > ~(A or B) which can be simplified to:
~C > ~ A & ~ B
By DeMorgan’s Laws.
By the way, either A or B (using inclusive Or = And/Or) is logially equivalent to ~A > B and also logically equivalent to Unless.
2. Either A or B but not both.
[(A or B) & ~(A & B)] this could also be expressed as:
[(~A > B) & (A > ~B)].
In English this would be expressed as:
“Not Neither A Nor B, AND Not Both A and B”.
2. Ex:
[(~A > B) & (A > ~B)] > C
Contrapositve is~C > ~[(~A > B) & (A > ~B)] which can be simplified to:
~C > [~(~A > B) or ~(A > ~B)] which can be simplified to:
~C >[(~A & ~B) or (A & B)] Again, by DeMorgan’s Laws
In English, the contrapositive would be expressed as “Neither Or Both”.
3. If it is not the case that both A and B are present, then C is.
~(A & B) > C which can be simplified to:
~A or ~B > C
Contrapositive: ~C > (A & B)
Last edited by TylerJonesMPLS on Tue Aug 28, 2012 7:06 pm, edited 1 time in total.
-
- Posts: 74
- Joined: Wed Jun 20, 2012 11:20 pm
Re: Formal Logic help!!
Maybe more like:kky215 wrote:~ross and ~ann --> vegan or vegetarian
~vegan and ~vegetarian --> ross or ann
No?
Joeshan520 wrote:This is the easy stuff. Wait till you have to diagram stuff like "Neither Ross nor Ann is a vegan or vegetarian"
~r(Vegan) & ~r(Vegetarian)
~a(Vegan) & ~a(Vegetarian)
-
- Posts: 74
- Joined: Wed Jun 20, 2012 11:20 pm
Re: Formal Logic help!!
I don't think that ~A & ~B is the logical equivalent of ~(A & B). You distribute a negation across a parenthesis by negating the terms and changing the "&" to "or" (or vice versa). (DeMorgan's Laws)Cerebro wrote:A or B --> Ckky215 wrote: 1. Either A or B or both
Ex) if either A or B or both are present, then so is C.
If you prefer function syntax:
OR(A,B) --> C
you can do:kky215 wrote: 2. Either A or B but not both
Ex) if either A or B but not both are present, then C is.
(A or B) and ~(A and B) ---> C
or more compact using xor (exclusive or) -- NOTE: Haven't seen this mentioned in PS material, not sure if other books use this or not, but I do:
A xor B ---> C
If you prefer function syntax:
XOR(A,B) ---> C
~A and ~B ---> Ckky215 wrote: 3. If it is not the case that both A and B are present, then C is.
or
~(A and B) ---> C
function syntax (for completeness):
~AND(A,B) ---> C
So, ~(A & B) is equivalent to ~A or ~B .
As an example using Apples and Bagels,
~(A & B) could mean any of three things: Apples but no Bagels, Bagels but no Apples, no Apples and no Bagels.
All we know is that there can't be both Apples and Bagels.
~A & ~B can only mean one thing: no Apples and no Bagels.
- VUSisterRayVU
- Posts: 162
- Joined: Fri Jul 27, 2012 2:57 pm
Re: Formal Logic help!!
Yeah, I don't know that I would really diagram that? Ross isn't vegan or vegetarian. Ann isn't vegan or vegetarian. Pretty cut and dry?TylerJonesMPLS wrote:Maybe more like:kky215 wrote:~ross and ~ann --> vegan or vegetarian
~vegan and ~vegetarian --> ross or ann
No?
Joeshan520 wrote:This is the easy stuff. Wait till you have to diagram stuff like "Neither Ross nor Ann is a vegan or vegetarian"
~r(Vegan) & ~r(Vegetarian)
~a(Vegan) & ~a(Vegetarian)
- Cerebro
- Posts: 235
- Joined: Thu Aug 09, 2012 9:22 pm
Re: Formal Logic help!!
Thank you, Tyler Jones. I stand corrected!TylerJonesMPLS wrote: I don't think that ~A & ~B is the logical equivalent of ~(A & B). You distribute a negation across a parenthesis by negating the terms and changing the "&" to "or" (or vice versa). (DeMorgan's Laws)
So, ~(A & B) is equivalent to ~A or ~B .
As an example using Apples and Bagels,
~(A & B) could mean any of three things: Apples but no Bagels, Bagels but no Apples, no Apples and no Bagels.
All we know is that there can't be both Apples and Bagels.
~A & ~B can only mean one thing: no Apples and no Bagels.
-
- Posts: 74
- Joined: Wed Jun 20, 2012 11:20 pm
Re: Formal Logic help!!
Thanks, Celebro, for being so nice about it. I was really tired and in a hurry when I wrote that, and later I was afraid I had been impolite. Cheers!
Register now!
Resources to assist law school applicants, students & graduates.
It's still FREE!
Already a member? Login