看其他篇章到目录 选择。

概率分布是概率论的一个基础。

Commons Math包中也专门有一个子包对概率分布进行了封装实现。在 distribution包中,定义了一个基本接口 Distribution。该接口只有两个方法,一个是 double cumulativeProbability (double x),一个是 double cumulativeProbability (double x0, double x1) 。前者对于服从某种分布的随机变量X,返回P(X<=x);后者则返回P(x0<=X<=x1)。正如其名所示,这样也就得到了概率。

具体 distribution包中实现了基本所有的概率分布,分为连续型分布和离散型分布,连续型包括了像熟悉的指数分布、柯西分布等,离散型包括了泊松分布和二项分布等等。具体的类图结构见下图:

Commons Math学习笔记——分布

 

在连续型的 ContinuousDistribution接口中,添加了一个 double inverseCumulativeProbability (double p)的方法,这个方法返回 P(X<x)=p中的 x。也就是说通过已知概率,可以求得随机变量 X x范围。当然看 api文档还应注意一句,在 3.0的版本中会加入 public double density(double x)这个求概率密度函数的方法,敬请期待吧。离散型的接口 DiscreteDistribution中则添加了 double probability (double x)方法,用来计算 P(X=x)的概率。

具体的代码我们以离散型的泊松分布和连续型的正态分布来讲解。泊松分布的接口继承了 IntegerDistribution接口,在此基础上加了 getMean()方法和 normalApproximateProbability()方法。正态分布 NormalDistribution继承了 ContinuousDistribution,又添加了 getMean()方法和 double density(double x)方法以及 getStandardDeviation()方法。

 

 1 Commons Math学习笔记——分布/**
 2 Commons Math学习笔记——分布   *  
 3 Commons Math学习笔记——分布   */
 4 Commons Math学习笔记——分布 package  algorithm . math;
 5 Commons Math学习笔记——分布
 6 Commons Math学习笔记——分布 import  org . apache . commons . math . MathException;
 7 Commons Math学习笔记——分布 import  org . apache . commons . math . distribution . NormalDistribution;
 8 Commons Math学习笔记——分布 import  org . apache . commons . math . distribution . NormalDistributionImpl;
 9 Commons Math学习笔记——分布 import  org . apache . commons . math . distribution . PoissonDistribution;
10 Commons Math学习笔记——分布 import  org . apache . commons . math . distribution . PoissonDistributionImpl;
11 Commons Math学习笔记——分布
12 Commons Math学习笔记——分布 /**
13 Commons Math学习笔记——分布   *   @author  Jia Yu
14 Commons Math学习笔记——分布   *   @date     2010 - 11 - 28
15 Commons Math学习笔记——分布   */
16 Commons Math学习笔记——分布 public class DistributionTest {
17 Commons Math学习笔记——分布
18 Commons Math学习笔记——分布      /**
19 Commons Math学习笔记——分布       *   @param  args
20 Commons Math学习笔记——分布       */
21 Commons Math学习笔记——分布     public static void main(String[] args) {
22 Commons Math学习笔记——分布          //  TODO Auto - generated method stub
23 Commons Math学习笔记——分布         poisson();
24 Commons Math学习笔记——分布          System . out . println( " ------------------------------------------ " );
25 Commons Math学习笔记——分布         normal();
26 Commons Math学习笔记——分布         test();
27 Commons Math学习笔记——分布     }
28 Commons Math学习笔记——分布
29 Commons Math学习笔记——分布      /**
30 Commons Math学习笔记——分布       *  test  for  example
31 Commons Math学习笔记——分布       *  《饮料装填量不足与超量的概率》
32 Commons Math学习笔记——分布       *  某饮料公司装瓶流程严谨,每罐饮料装填量符合平均600毫升,标准差3毫升的常态分配法则。随机选取一罐,容量超过605毫升的概率?容量小于590毫升的概率
33 Commons Math学习笔记——分布       *  容量超过605毫升的概率  =  p ( X  >   605 ) =  p ( ((X - μ)  / σ)  >  ( ( 605  –  600 /   3 ) ) =  p ( Z  >   5 / 3 =  p( Z  >   1.67 =   0.0475
34 Commons Math学习笔记——分布       *  容量小于590毫升的概率  =  p (X  <   590 =  p ( ((X - μ)  / σ)  <  ( ( 590  –  600 /   3 ) ) =  p ( Z  <   - 10 / 3 =  p( Z  <   - 3.33 =   0.0004
35 Commons Math学习笔记——分布       */
36 Commons Math学习笔记——分布     private static void test() {
37 Commons Math学习笔记——分布          //  TODO Auto - generated method stub
38 Commons Math学习笔记——分布         NormalDistribution normal  =  new NormalDistributionImpl( 600 , 3 );
39 Commons Math学习笔记——分布         try {
40 Commons Math学习笔记——分布              System . out . println( " P(X<590) =  " + normal . cumulativeProbability( 590 ));
41 Commons Math学习笔记——分布              System . out . println( " P(X>605) =  " + ( 1 - normal . cumulativeProbability( 605 )));
42 Commons Math学习笔记——分布         } catch (MathException e) {
43 Commons Math学习笔记——分布              //  TODO Auto - generated catch block
44 Commons Math学习笔记——分布             e . printStackTrace();
45 Commons Math学习笔记——分布         }
46 Commons Math学习笔记——分布     }
47 Commons Math学习笔记——分布
48 Commons Math学习笔记——分布     private static void poisson() {
49 Commons Math学习笔记——分布          //  TODO Auto - generated method stub
50 Commons Math学习笔记——分布         PoissonDistribution dist  =  new PoissonDistributionImpl( 4.0 );
51 Commons Math学习笔记——分布         try {
52 Commons Math学习笔记——分布              System . out . println( " P(X<=2.0) =  " + dist . cumulativeProbability( 2.0 ));
53 Commons Math学习笔记——分布              System . out . println( " mean value is  " + dist . getMean());
54 Commons Math学习笔记——分布              System . out . println( " P(X=1.0) =  " + dist . probability( 1.0 ));
55 Commons Math学习笔记——分布              System . out . println( " P(X=x)=0.8 where x =  " + dist . inverseCumulativeProbability( 0.8 ));
56 Commons Math学习笔记——分布         } catch (MathException e) {
57 Commons Math学习笔记——分布              //  TODO Auto - generated catch block
58 Commons Math学习笔记——分布             e . printStackTrace();
59 Commons Math学习笔记——分布         }
60 Commons Math学习笔记——分布     }
61 Commons Math学习笔记——分布
62 Commons Math学习笔记——分布     private static void normal() {
63 Commons Math学习笔记——分布          //  TODO Auto - generated method stub
64 Commons Math学习笔记——分布         NormalDistribution normal  =  new NormalDistributionImpl( 0 , 1 );
65 Commons Math学习笔记——分布         try {
66 Commons Math学习笔记——分布              System . out . println( " P(X<2.0) =  " + normal . cumulativeProbability( 2.0 ));
67 Commons Math学习笔记——分布              System . out . println( " mean value is  " + normal . getMean());
68 Commons Math学习笔记——分布              System . out . println( " standard deviation is  " + normal . getStandardDeviation());
69 Commons Math学习笔记——分布              System . out . println( " P(X=1) =  " + normal . density( 1.0 ));
70 Commons Math学习笔记——分布              System . out . println( " P(X<x)=0.8 where x =  " + normal . inverseCumulativeProbability( 0.8 ));
71 Commons Math学习笔记——分布         } catch (MathException e) {
72 Commons Math学习笔记——分布              //  TODO Auto - generated catch block
73 Commons Math学习笔记——分布             e . printStackTrace();
74 Commons Math学习笔记——分布         }
75 Commons Math学习笔记——分布     }
76 Commons Math学习笔记——分布
77 Commons Math学习笔记——分布 }
78 Commons Math学习笔记——分布

 

 

输出:
P(X<=2.0) = 0.23810330555354414
mean value is 4.0
P(X=1.0) = 0.07326255555493674
P(X=x)=0.8 where x = 5
------------------------------------------
P(X<2.0) = 0.9772498680518208
mean value is 0.0
standard deviation is 1.0
P(X=1) = 0.24197072451914337
P(X<x)=0.8 where x = 0.8416212335731417
P(X<590) = 4.290603331968401E-4
P(X>605) = 0.047790352272814696


泊松分布只需要给定参数
λ 即可,而其期望就是 λ。所以构造方法一般就是new PoissonDistributionImpl(double mean)这样的形式了。

正态分布需要知道均值和方差,因此要在构造函数时传入,另外程序中以一个维基百科上的示例来验证正态分布的正确性。

相关资料:

概率分布: http://zh.wikipedia.org/zh-cn/%E6%A6%82%E7%8E%87%E5%88%86%E5%B8%83

泊松分布: http://zh.wikipedia.org/zh-cn/%E6%B3%8A%E6%9D%BE%E5%88%86%E5%B8%83

正态分布: http://zh.wikipedia.org/zh-cn/%E6%AD%A3%E6%80%81%E5%88%86%E5%B8%83

Commons math包: http://commons.apache.org/math/index.html

相关文章: