close Warning: Can't synchronize with repository "(default)" (/var/svn/mms does not appear to be a Subversion repository.). Look in the Trac log for more information.

Changes between Version 9 and Version 10 of Combinations


Ignore:
Timestamp:
Aug 25, 2010, 12:17:48 PM (14 years ago)
Author:
Pedro Gea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Combinations

    v9 v10  
    249249
    250250
    251 
     251== Nota matemática ==
     252
     253En las ecuaciones y cálculos anteriores se han utilizado las siguientes relaciones:
     254{{{
     255fNormal(mu, sigma, x+b) == fNormal(mu-b, sigma, x)
     256fNormal(mu, sigma, -x) == fNormal(-mu, sigma, x)
     257fNormal(mu, sigma, a*x) == fNormal(mu/a, sigma/a, x)/a ; con a>0
     258}}}
     259donde:
     260{{{
     261fNormal(mu, sigma, x) := 1/(Sqrt(2*Pi)*Sigma) * Exp(-(1/2)*((x-mu)/sigma)**2)
     262}}}
     263y también el siguiente resultado que nos permite multiplicar dos funciones de densidad normales:
     264{{{
     265fNormal(muA, sigmaA, x) * fNormal(muB, sigmaB, x) ==
     266fNormal((muA*sigmaB**2 + muB*sigmaA**2)/sigmaAB**2, sigmaA*sigmaB/sigmaAB, x) * fNormal(muA-muB, sigmaAB, 0)
     267}}}
     268donde:
     269{{{
     270sigmaAB = Sqrt(sigmaA**2 + sigmaB**2)
     271}}}