Fact: There are two balls, one white and one black, in one bottle.
Define:
p : someone takes one ball from the bottle.
q : the ball is white
r: the ball is black
Now, (p →(q ∨ r)) → ((p →q)∨(p →r)) is a tautology; proof:
p → p
p → q = ¬ p V q
p →(q ∨ r) = ¬ p V q V r
(p →q)∨(p →r) = (¬ p V q) ∨(p →r) = (¬ p V q) ∨ (¬ p v r) = ¬ p V q V r
And this is a well-known inference rule:
A
A → B
-----------
B
Consider my argument with the same form:
p →(q ∨ r) true
(p →(q ∨ r)) → ((p →q)∨(p →r)) tautologically true
----------------------------------------------
(p →q)∨(p →r) false, because (p →q) and (p →r) are both false
Why does my valid argument have a false conclusion even though its premises are all true?
EDIT
“someone takes one ball from the bottle” is not a proposition as it doesn’t have a truth value.
Aren't these propositions?
True: someone takes one ball from the bottle.
False: someone does not take one ball from the bottle.
Otherwise, what are propositions?