I have seen this in some examples of proofs where implication $ p \rightarrow (a \lor c)$ is separated, example:
- $ p \rightarrow (a \lor c)$
- $ p $
- $ (a \lor c) $
What is the rule (law of inference?) that allows for this separation?
I have seen this in some examples of proofs where implication $ p \rightarrow (a \lor c)$ is separated, example:
What is the rule (law of inference?) that allows for this separation?
As @drhab mentioned, the answer is Modus ponens, in general, which has the form
\begin{align*} p\to &q\\ &p \\ \therefore \; &q. \end{align*} In your case, $p=p,$ and $q=a\lor c$. Here, you need to be able to recognize that Modus ponens is really a schema: you can encapsulate any sort of complicated expression in the $p$ or $q$. If the overall structure has this form, then you can deduce $q,$ whatever that is.
It is also good to note that the name of this deductive rule varies depending on which deductive system you're in. It's certainly most widely known as Modus ponens (Latin for "way of putting"), but in the Natural Deduction system, for example, it's known as "$\to$ Elimination".
Some logicians think of "Modus ponens" as essentially the rule of deduction, and have gone to great lengths to show that it is sufficient for all deductive purposes. That it may be, but it is also true that if you allow a few more rules, then your proofs can be shorter. That's one of the balancing acts when you're designing a deductive system: fewer axioms seems "prettier" by mathematical standards; on the other hand, with deduction systems being as practical as they are, it's often considered better practice to allow more rules.