A common expectation question is to ask "What is the expected number of tosses to get heads with an unfair coin?" This problem can be solved using the recursive equation E = p*1+(1-p)*(E+1), resulting in the solution of E=1/p, where p is the probability of getting heads.
If the question is changed to "What is the expected number of parallel tosses, where each coin gets heads at least once, with N unfair coins assuming each coin has equal probability?," does the solution stay as E=1/p, because each coin is independent or is the solution more complicated? If the solution is more complicated, how is it solved?

A recurrence can be written as:
\begin{align*} E_n& = \dfrac{1+\sum\limits_{k=1}^{n-1}\binom{n}{k}p^{n-k}q^{k}E_k}{1 - q^n} \\ E_1 &= \frac{1}{p} \\ \end{align*} where $p$ is the probability of getting head.
Hence, when $p=1/2$, we find that $E_5 = 2470/651 \approx 3.79416282642$