You are asking for the probability of y < mu+sigma
for your random normal variable this is the value 52.
In[14]:= NProbability[y < 1, y \[Distributed] NormalDistribution[]] ==
NProbability[y < 52, y \[Distributed] NormalDistribution[43, 9]]
Out[14]= True
or you should compare it to the probability of y<1/3
In[16]:= NProbability[y < 1/3,
y \[Distributed] NormalDistribution[]] ==
NProbability[y < 46, y \[Distributed] NormalDistribution[43, 9]]
Out[16]= True