Difficult Predicate Logic Symbolization

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 4K views
number0
Messages
102
Reaction score
0

Homework Statement



I do not know if this is the right forum or subforum for this kind of topic. So if it is not, I apologize in advance.Symbolize the following sentence:

Given that some mean elf will bite and some friendly one will too, the mean ones will bite whether or not provoked but the friendly ones will bite only if provoked.

Homework Equations



Fx: x is friendly
Gx: x is mean
Hx: x is an elf
Ix: x will bite
Jx: x is provoked

The Attempt at a Solution

This is my attempt and to me it seems right, but I could be missing one tiny simple thing.

∃x∃y(((Hx∧Gx∧Ix)∧(Fy∧Hy∧Iy))→((Jx∨∼Jx)→Ix)∧(Iy→Jy))
 
Last edited:
Physics news on Phys.org
Ok, given I'm actually not that good at these...

First for clarity and to simplify reading, I would probably use the folliwng nonmenclature (some good notation can simplify/clarify your problem immensly)
E-Elf, M-Mean, F-Friendly, P-Provoked, B-Bites

if I look at yours
∃x∃y(((Ex∧Mx∧Bx)∧(Fy∧Ey∧By))→((Px∨∼Px)→Bx)∧(By→Py) )

first I note (Px∨∼Px) is always true, as the elf is either provoked or not, so I'm not sure you need that? so it becomes
∃x∃y(((Ex∧Mx∧Bx)∧(Fy∧Ey∧By))→(Bx)∧(By→Py)

then I'd say both Bx and By are assumed true in the LHS, so are always true when the RHS is evaluated? so it becomes
∃x∃y(((Ex∧Mx∧Bx)∧(Fy∧Ey∧By))→Py

Which doesn't tell us a heap... and then I would ask if you really need the x and the y to cover the two cases when the elf is mean or friendly, and whether friendly and mean were mutually exclusive so you could you assume friendly = (not mean), and the "for exists" only shows its true for some x and y, not all of them...

So I was thinking you could simplify your approach by dropping the x and ys, and looking at it as follows...

Given that some mean elf will bite and some friendly one will too,
(is an elve and bites)
the mean ones will bite whether or not provoked but the friendly ones will bite only if provoked.
(implies either mean or friendly and provoked)
 
Last edited:
Thanks for your time lanedance, but I am still stuck!