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 1 and Version 2 of Combinations/MathNotes


Ignore:
Timestamp:
Sep 17, 2010, 5:01:34 PM (14 years ago)
Author:
Pedro Gea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Combinations/MathNotes

    v1 v2  
    2727}}}
    2828y la matriz a derivar.
     29
     30=== Operaciones con varibles aleatorias normalmente distribuidas ===
     31
     32En algunas ecuaciones y cálculos se han utilizado las siguientes relaciones:
     33{{{
     34fNormal(mu, sigma, x+b) == fNormal(mu-b, sigma, x)
     35fNormal(mu, sigma, -x) == fNormal(-mu, sigma, x)
     36fNormal(mu, sigma, a*x) == fNormal(mu/a, sigma/a, x)/a ; con a>0
     37}}}
     38donde:
     39{{{
     40fNormal(mu, sigma, x) := 1/(Sqrt(2*Pi)*Sigma) * Exp(-(1/2)*((x-mu)/sigma)**2)
     41}}}
     42y también el siguiente resultado que nos permite multiplicar dos funciones de densidad normales:
     43{{{
     44fNormal(muA, sigmaA, x) * fNormal(muB, sigmaB, x) ==
     45fNormal((muA*sigmaB**2 + muB*sigmaA**2)/sigmaAB**2, sigmaA*sigmaB/sigmaAB, x) * fNormal(muA-muB, sigmaAB, 0)
     46}}}
     47donde:
     48{{{
     49sigmaAB = Sqrt(sigmaA**2 + sigmaB**2)
     50}}}