When checking if a propositional logic is true or not, do you need to consider all possible models of it?
For example in this question:
if p v r is satisfiable then p is satisfiable
If you only consider the model p = false and r = true then p isn't satifisable. But if you consider all possible models of p v r, p is satisfiable, as there the exists a model p = true and r = false.
Which is the correct method to think about this?
What if p v r is valid?
Thank you in advance
The former way is the correct way: just because $p \lor r$ is satisfiable does not mean that $p$ is satisfiable, unless $r$ implies $p$.