There is a bag with $n$ marbles. Of these $n$ marbles, $k$ of them are black, and the remaining are red.
You draw 3 marbles from the bag. What is the probability that 2 of the marbles are red?
I understand how this would work if it were an event such as flipping a coin, that is independent each time, but I am confused by this since the events of drawing in succession appear to be dependent. Can anyone help me understand this?
Indeed this is the difference between sampling with replacement (independent) and without replacement (dependent). These correspond to the binomial distribution and the hypergeometric distribution respectively, so if you know the hypergeometric distribution you can answer your problem.
Here is a direct way to answer your question (which contains a derivation of the pmf of the hypergeometric distribution).
\begin{align} \frac{\#\{\text{ways to choose 2 reds and one black}\}}{\#\{\text{ways to choose 3 marbles}\}} &= \frac{\binom{n-k}{2} \binom{k}{1}}{\binom{n}{3}}. \end{align} (There are $\binom{n-k}{2}$ ways to choose 2 marbles from the $n-k$ red marbles, and $\binom{k}{1}$ ways to choose one marble from the $k$ black ones.)