I have a statement that says:
With the letters of the word LIBRO, how many words can I form (with or without meaning), that start with a vowel?
My development was:
I have two cases, start with $o$, and start with $i$.
When start with $o$ have $P_4$ differentes words, and same when start with $i$, so applying multiplicative principle, i have $P_4 * P_4 = 576$, but the correct result should be $48$, what is wrong in my development ?
It should be $P_4+P_4= 2P_4=2(24)=48$.
Or more explicitly, there are $2$ options for the first letter, $4$ options for the second after the second letter, $3$ options for the third, $2$ options for the fourth, and $1$ option for the last. $2\cdot (4!)=48$.