I'm trying to understand propositional logics and the concepts of entailment, but I'm struggling. The concepts don't seem to be difficult in theory, but are very strange-looking when examined. For example, I understand that the formal definition of entailment is that a ⊨ b iff M(a) ⊆ M(b)
.
However, the first example that my textbook provides is that false ⊨ true
but true ⊭ false
. I'm struggling to understand how false can entail true.
false ⊨ true
buttrue ⊭ false
example) -- the absence of evidence doesn't preclude the possibility of occurrence, but evidence of occurrence precludes the impossibility of occurrence? – wadda_wadda Oct 28 '15 at 19:57false
premise may lead to atrue
conclusion ($\bot\vDash\top$, or $\bot\vDash\bot$), but a valid argument beginning fromtrue
premises can not lead to afalse
conclusion ($\top\nvDash\bot$). – Graham Kemp Oct 29 '15 at 00:49