试图找到标准正态变量之和大于 R 中设定值的概率

Trying to find the probability of a sum of standard normal variables being greater than a set value in R

我是 R 的新手,我相信这对某些人来说应该是一个简单的问题,但我想不通。

如何使用 R 找到独立标准正态变量方程大于特定值的概率?

Pr((x_1^2 + x_2^2 + x_3^2) > 5)

随机变量x_1^2 + x_2^2 + x_3^2服从3度的卡方分布的自由。所以你的概率在 R 中由

给出
pchisq(5, df = 3, lower.tail = FALSE)