embedded conditionals Forum
-
- Posts: 7
- Joined: Wed Jul 03, 2013 10:01 pm
embedded conditionals
Hi guys
I just have a quick question
So (a->b) ->c turns to a+/b->c. What about a->(b->c)?
I just have a quick question
So (a->b) ->c turns to a+/b->c. What about a->(b->c)?
-
- Posts: 196
- Joined: Mon Jun 30, 2014 2:50 am
Re: embedded conditionals
Hmm I'm a little unclear on your notation.
Both of those look like they equate to A --> C, so tentatively I'd say yes both work
Both of those look like they equate to A --> C, so tentatively I'd say yes both work
-
- Posts: 7
- Joined: Wed Jul 03, 2013 10:01 pm
Re: embedded conditionals
Thank you for your reply. So my question is how you would diagram conditional within conditional. For instance, a unless b but only if c. Thank you.
- gatesome
- Posts: 412
- Joined: Wed May 02, 2012 7:43 pm
Re: embedded conditionals
trying my hand at this...glee66 wrote:Thank you for your reply. So my question is how you would diagram conditional within conditional. For instance, a unless b but only if c. Thank you.
"a unless b but only if c" == "If C, then (A unless B)" == "If C, then (If not-B then A)"
a IF NOT b == (/B -> A)
ONLY IF c == C ->
Which I believe yields (/B -> A) -> C
Use parenthesis for clarity when using diagramming a conditional within a conditional.
Last edited by gatesome on Mon Sep 29, 2014 11:14 pm, edited 2 times in total.
-
- Posts: 7
- Joined: Wed Jul 03, 2013 10:01 pm
Re: embedded conditionals
Doesnt only if signal necessary? (-a -> b) -> c?
Want to continue reading?
Register now to search topics and post comments!
Absolutely FREE!
Already a member? Login
- gatesome
- Posts: 412
- Joined: Wed May 02, 2012 7:43 pm
Re: embedded conditionals
yeah you're right, it should be (/B -> A) -> Cglee66 wrote:Doesnt only if signal necessary? (-a -> b) -> c?
or (/A -> B) -> C
-
- Posts: 7
- Joined: Wed Jul 03, 2013 10:01 pm
Re: embedded conditionals
Is there a simplify from there? Like by changing to and / or form?