Let's try to avoid confusion about parameterizations, centigrams vs. grams, and normal approximation.
When using a gamma distribution, you need to start by being
clear about the parameterization. You seem to be using $\alpha$
for the shape parameter and $\beta$ for the scale parameter.
The rate parameter $\lambda$ is the reciprocal of the scale parameter:
$\lambda = 1/\beta.$
If $X_i$ are iid $\text{Gamma}(\text{shape} = \alpha = 25, \text{scale} = \beta = 2),$
then $T = \sum_{i=1}^{100} X_i \sim \text{Gamma}(\text{shape} = 2500, \text{scale} = 2),$
which can be seen by looking at moment generating functions.
Let's use centigrams throughout.
In R statistical software, it is possible to get exact probabilities
associated with a gamma distribution. You seek
$$P(T > 5200) = 1 - P(T \le 5200) = 0.023819.$$
This exact probability (not using a normal approximation) is found in R as follows:
alpha = 25; beta = 2
1 - pgamma(5200, 100*alpha, 1/beta)
## 0.023819
Notice that the second gamma parameter in R is the rate.
So what I take to be the 'answerbook answer' 0.02275 is
accurate to about three places. (I suppose it is found from a normal
approximation.) In the graph below, the area you seek is under
the gamma density curve to the right of the vertical line.
