mathematic怎样求正态分布98.5 392.5 288.5 582.5 978.5 1272.5 1068.5 762.5 558.5 2 这组数据大致符合正态分布,请问我应该怎样用mathematic求出μ和σ?

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/06 17:39:56
mathematic怎样求正态分布98.5    392.5    288.5    582.5    978.5   1272.5    1068.5    762.5    558.5     2 这组数据大致符合正态分布,请问我应该怎样用mathematic求出μ和σ?

mathematic怎样求正态分布98.5 392.5 288.5 582.5 978.5 1272.5 1068.5 762.5 558.5 2 这组数据大致符合正态分布,请问我应该怎样用mathematic求出μ和σ?
mathematic怎样求正态分布
98.5 3
92.5 2
88.5 5
82.5 9
78.5 12
72.5 10
68.5 7
62.5 5
58.5 2

这组数据大致符合正态分布,请问我应该怎样用mathematic求出μ和σ?

mathematic怎样求正态分布98.5 392.5 288.5 582.5 978.5 1272.5 1068.5 762.5 558.5 2 这组数据大致符合正态分布,请问我应该怎样用mathematic求出μ和σ?
可以看看函数 FindDistributionParameters 的用法吧
data = {{98.5, 3}, {92.5, 2}, {88.5, 5}, {82.5, 9}, {78.5, 12}, {72.5,
       10}, {68.5, 7}, {62.5, 5}, {58.5, 2}} /. {a_, b_} :> 
     Table[a, {b}] // Flatten;
FindDistributionParameters[data, NormalDistribution[\[Mu], \[Sigma]]]
输出结果:

{\[Mu] -> 77.1182, \[Sigma] -> 9.78959}