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 3 and Version 4 of Combinations/OneLinearEquation


Ignore:
Timestamp:
Sep 14, 2010, 11:05:17 AM (14 years ago)
Author:
Pedro Gea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Combinations/OneLinearEquation

    v3 v4  
    109109}}}
    110110sustituyendo 'x' y 'X' por 'a', 'b' o 'c' y 'A', 'B' o 'C' respectivamente.
     111
     112=== Nota matemática ===
     113
     114En las ecuaciones y cálculos anteriores se han utilizado las siguientes relaciones:
     115{{{
     116fNormal(mu, sigma, x+b) == fNormal(mu-b, sigma, x)
     117fNormal(mu, sigma, -x) == fNormal(-mu, sigma, x)
     118fNormal(mu, sigma, a*x) == fNormal(mu/a, sigma/a, x)/a ; con a>0
     119}}}
     120donde:
     121{{{
     122fNormal(mu, sigma, x) := 1/(Sqrt(2*Pi)*Sigma) * Exp(-(1/2)*((x-mu)/sigma)**2)
     123}}}
     124y también el siguiente resultado que nos permite multiplicar dos funciones de densidad normales:
     125{{{
     126fNormal(muA, sigmaA, x) * fNormal(muB, sigmaB, x) ==
     127fNormal((muA*sigmaB**2 + muB*sigmaA**2)/sigmaAB**2, sigmaA*sigmaB/sigmaAB, x) * fNormal(muA-muB, sigmaAB, 0)
     128}}}
     129donde:
     130{{{
     131sigmaAB = Sqrt(sigmaA**2 + sigmaB**2)
     132}}}