概率论与随机过程--作业2

一、选择题
、计算题

1. 食品店有三种蛋糕出售,价格为1元、1.2元、1.5 元,售出概率分别为0.3、0.2、0.5.某天该食品店出售了300 只蛋糕.试用中心极限定理计算,这天的收入至少为395元的概率。

  1. 以下数据是某一周50个销售人员获得订单金额(单位:1000元)

6.0 5.9 3.5 2.9 8.7 7.9 7.1 5.0 5.2 3.9

3.7 6.1 5.8 4.1 5.8 6.4 3.8 4.9 5.7 5.5

6.9 4.0 4.8 5.1 4.3 5.4 6.8 5.9 6.9 5.4

2.4 4.9 7.2 4.2 6.2 5.8 3.8 6.2 5.7 6.8

3.4 5.0 5.2 5.3 3.0 3.6 3.8 5.8 4.9 3.7

(1)整理数据制作一个相对频率直方图(分布表,分为7组)

(2)画出箱须图

(3)画出正态概率密度图

python 复制代码
import math
import numpy as np
import matplotlib.mlab as mlab
import matplotlib.pyplot as plt

plt.rcParams['font.sans-serif']=['SimHei']
plt.rcParams['axes.unicode_minus'] = False
z = [6.0, 5.9, 3.5 , 2.9 , 8.7 , 7.9 , 7.1 , 5.0 , 5.2 , 3.9,
    3.7,  6.1,  5.8,  4.1,  5.8,  6.4,  3.8,  4.9,  5.7,  5.5,
    6.9,  4.0 , 4.8,  5.1,  4.3,  5.4,  6.8 , 5.9,  6.9,  5.4,
    2.4,  4.9,  7.2,  4.2 , 6.2 , 5.8 , 3.8 , 6.2 , 5.7 , 6.8,
    3.4 , 5.0 , 5.2,  5.3 , 3.0,  3.6,  3.8,  5.8,  4.9,  3.7]
low = min(z)
high = max(z)
bins = [ i for i in range(math.floor(low),math.ceil(high)+1)]
plt.hist(z,bins,weights=np.zeros_like(z)+1./len(z))
plt.legend()
plt.title(u'频率直方图')
plt.show()

plt.boxplot(z)
plt.title(u'销售金额箱须图')
plt.show()

z = np.array(z)
u = z.mean()
var = z.var()
sigma = math.sqrt(var)
xx = np.linspace(u-3*sigma,u+3*sigma,num=100)
yy = [np.exp(-(x-u)**2/(2*sigma**2))/(sigma*math.sqrt(2*math.pi)) for x in xx]
plt.plot(xx,yy)
plt.title(u'正态概率分布图')
plt.show()

程序输出如下:

相关推荐
red_redemption2 天前
概率论与数理统计
概率论
牛顿没有错2 天前
概率论与随机过程--作业6
概率论·概率论与随机过程
IT古董4 天前
【漫话机器学习系列】029.累积分布函数(Cumulative Distribution Function)
人工智能·机器学习·概率论
秋落风声5 天前
【概率论第二章:一维随机变量及其分布】
概率论
orion-orion8 天前
概率论沉思录:概率论的怪异应用
人工智能·概率论·科学哲学
赛丽曼8 天前
随机变量是一个函数-如何理解
概率论
渣渣威的仿真秀9 天前
Jensen-Shannon Divergence:定义、性质与应用
人工智能·算法·概率论
杨善锦9 天前
Posison Distribution
概率论
Jamence10 天前
【深度学习数学知识】-贝叶斯公式
人工智能·深度学习·概率论