Two numbers $m,n$ are chosen from a normal distribution, i.e. the chance that either number lies between $a$ and $b$ is $$\frac{1}{\sqrt{2\pi}}\int_a^be^{-x^2}dx$$ Edit: you could also say $e^{-x^2}/\sqrt{2\pi}$ is the probability density function.
What's the probability that $n\ge 2m$?
Let $X_{1}$ and $X_{2}$ be iid random variables from $N(\mu,\sigma^{2})$ So you want to find $$P(X_{1}\geq 2X_{2})=P(X_{1}-2X_{2}\geq0)$$ where $-2X_{2}\sim N(-2\mu,4\sigma^{2})$ thus $X_{1}-2X_{2}\sim N(-\mu,5\sigma^{2})$ so converting to a standard normal with $Z=\dfrac{(X_{1}-2X_{2})+\mu}{\sigma\sqrt{5}}\sim N(0,1)$ we have $$=P\left(Z\geq \frac{\mu}{\sigma\sqrt{5}}\right)$$ And you can find that with standard normal table
Also note the reason why I use $X_{1}$ and $X_{2}$ is because when you say "two numbers are chosen from a normal distribution" this just means your sampling from distribution where $X_{1}$ represents first sample and $X_{2}$ represents second sample.