I am trying to solve an exercise using the probability density function for a sum of n random variables with the same mean and variance. I need to find the probability for the specific value of the sums of r.v.s:
Player B uses a fair coin to earn points, if it lands on heads he collects 1 point, if tails he collects 8 points. When he flips the coin 50 times, these points will add up cumulatively.
What is the probability that player B will have exactly 225 points?
I was thinking I could take the $PDF$ probability for $\sum^n_{i=1}(X_i)=225$ with a mean of $n*µ=225$ and standard deviation of $\sqrt{\sigma^2*n}=24.75$, which gives the value 0.016, as can be seen on the PDF plot:
However, my teacher solved this by looking at it logically, and counting any situation where Player B gets exactly 25 heads and 25 tails:
$P=($$50\atop25$$)*\frac{1}{2^{50}}=0.112$
I see that his answer makes sense and is correct, but I doubt I would be able to think logically in an exam situation.
Why is my answer not correct, is it because the r.v. is only approximately normally distributed?
Is there another general way of solving such an exercise if the amount of flips and the total sum of points had been different?


Your method works fine, but you have to remember the continuity correction. You are approximating a discrete distribution with a continuous one. Thus, for instance, your method gives a non-zero chance of getting $224$ points (say) though that is in fact impossible.
As you are working with the scores, then for $(24,25,26)$ tails you get $(218,225,232)$ as scores...so for your continuous variant you need to look between $225-3.5$ and $225+3.5$. If you do that you get $0.112462916$ as opposed to the exact value of $0.112275173$ ... not bad at all!